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 13FD31396D9 for ; Thu, 19 Oct 2017 08:22:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C8D12BC017; Thu, 19 Oct 2017 08:22:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2E9F52BC017 for ; Thu, 19 Oct 2017 08:22:58 +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 5A9DD33BF0B for ; Thu, 19 Oct 2017 08:22:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F1D1C826 for ; Thu, 19 Oct 2017 08:22:54 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1508401368.4285b2bbd672b1f11d9dd107dc5a5ab298bb3dd5.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/todo/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/todo/todo-2.10-r1.ebuild app-misc/todo/todo-2.10.ebuild X-VCS-Directories: app-misc/todo/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 4285b2bbd672b1f11d9dd107dc5a5ab298bb3dd5 X-VCS-Branch: master Date: Thu, 19 Oct 2017 08:22:54 +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: 4a84f766-beca-4f94-9e65-fd73c42af891 X-Archives-Hash: 14b015444ed40635d91187a277958a71 commit: 4285b2bbd672b1f11d9dd107dc5a5ab298bb3dd5 Author: Patrice Clement gentoo org> AuthorDate: Thu Oct 19 08:22:10 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu Oct 19 08:22:48 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4285b2bb app-misc/todo: clean up old. Package-Manager: Portage-2.3.8, Repoman-2.3.3 app-misc/todo/todo-2.10-r1.ebuild | 35 ----------------------------------- app-misc/todo/todo-2.10.ebuild | 33 --------------------------------- 2 files changed, 68 deletions(-) diff --git a/app-misc/todo/todo-2.10-r1.ebuild b/app-misc/todo/todo-2.10-r1.ebuild deleted file mode 100644 index 5fa2cd242a9..00000000000 --- a/app-misc/todo/todo-2.10-r1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit bash-completion-r1 - -DESCRIPTION="A CLI-based TODO list manager" -HOMEPAGE="http://todotxt.com/" -SRC_URI="https://github.com/ginatrapani/${PN}.txt-cli/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" - -RDEPEND="app-shells/bash" - -PATCHES=( "${FILESDIR}/${P}-fix-bash-completion.patch" ) - -S="${WORKDIR}/${PN}.txt-cli-${PV}" - -DOCS=( README.textile CONTRIBUTING.md LICENSE todo.cfg ) - -src_test() { - make test || die "tests failed" -} - -src_install() { - dobin "${PN}.sh" - dosym "/usr/bin/${PN}.sh" "/usr/bin/${PN}txt" - newbashcomp "${PN}_completion" "${PN}.sh" - bashcomp_alias "${PN}.sh" "${PN}txt" - einstalldocs -} diff --git a/app-misc/todo/todo-2.10.ebuild b/app-misc/todo/todo-2.10.ebuild deleted file mode 100644 index 4c640236c3e..00000000000 --- a/app-misc/todo/todo-2.10.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit bash-completion-r1 - -DESCRIPTION="A CLI-based TODO list manager" -HOMEPAGE="http://todotxt.com/" -SRC_URI="https://github.com/ginatrapani/${PN}.txt-cli/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" - -RDEPEND="app-shells/bash" - -S="${WORKDIR}/${PN}.txt-cli-${PV}" - -DOCS=( README.textile CONTRIBUTING.md LICENSE todo.cfg ) - -src_test() { - make test || die "tests failed" -} - -src_install() { - # Renaming occur due to a clash with another package. - # See bug 610862. - newbin "${PN}.sh" "${PN}txt" - newbashcomp "${PN}_completion" "${PN}txt" - einstalldocs -}