From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A120F139694 for ; Wed, 26 Apr 2017 05:49:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF557E0C1A; Wed, 26 Apr 2017 05:49:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 89DE0E0C1A for ; Wed, 26 Apr 2017 05:49:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6393D341659 for ; Wed, 26 Apr 2017 05:49:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F3B5E7442 for ; Wed, 26 Apr 2017 05:49:05 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1493185707.58a96f559bd32b1535210cdd204fa4aee33ae50d.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/task/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/task/task-2.5.1.ebuild X-VCS-Directories: app-misc/task/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 58a96f559bd32b1535210cdd204fa4aee33ae50d X-VCS-Branch: master Date: Wed, 26 Apr 2017 05:49:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1c470d65-8d26-47de-b72d-8a4ec2a45259 X-Archives-Hash: 25c068d47c2b566423e3b7aa5497588b commit: 58a96f559bd32b1535210cdd204fa4aee33ae50d Author: Tim Harder gentoo org> AuthorDate: Wed Apr 26 05:48:27 2017 +0000 Commit: Tim Harder gentoo org> CommitDate: Wed Apr 26 05:48:27 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58a96f55 app-misc/task: remove old app-misc/task/task-2.5.1.ebuild | 54 ----------------------------------------- 1 file changed, 54 deletions(-) diff --git a/app-misc/task/task-2.5.1.ebuild b/app-misc/task/task-2.5.1.ebuild deleted file mode 100644 index 866097983d0..00000000000 --- a/app-misc/task/task-2.5.1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils cmake-utils bash-completion-r1 - -DESCRIPTION="Taskwarrior is a command-line todo list manager" -HOMEPAGE="http://taskwarrior.org/" -SRC_URI="http://taskwarrior.org/download/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~arm x86 ~x64-macos" -IUSE="gnutls vim-syntax zsh-completion" - -DEPEND="sys-libs/readline:0 - gnutls? ( net-libs/gnutls ) - elibc_glibc? ( sys-apps/util-linux )" -RDEPEND="${DEPEND}" - -src_prepare() { - # don't automatically install scripts - sed -i '/scripts/d' CMakeLists.txt || die -} - -src_configure() { - mycmakeargs=( - $(cmake-utils_use_use gnutls GNUTLS) - -DTASK_DOCDIR=share/doc/${PF} - -DTASK_RCDIR=share/${PN}/rc - ) - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - - newbashcomp scripts/bash/task.sh task - - if use vim-syntax ; then - rm scripts/vim/README - insinto /usr/share/vim/vimfiles - doins -r scripts/vim/* - fi - - if use zsh-completion ; then - insinto /usr/share/zsh/site-functions - doins scripts/zsh/* - fi - - exeinto /usr/share/${PN}/scripts - doexe scripts/add-ons/* -}