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 9C96D139083 for ; Sun, 17 Dec 2017 13:19:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 04EE4E090A; Sun, 17 Dec 2017 13:19:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 CDE52E090A for ; Sun, 17 Dec 2017 13:19:16 +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 04C3C33BEAC for ; Sun, 17 Dec 2017 13:19:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6EEB1AE7C for ; Sun, 17 Dec 2017 13:19:14 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1513516748.5df95fb8e113fd37c527d0c73fbdd03f22e8fce6.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/color/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/color/color-1.2-r1.ebuild X-VCS-Directories: app-misc/color/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 5df95fb8e113fd37c527d0c73fbdd03f22e8fce6 X-VCS-Branch: master Date: Sun, 17 Dec 2017 13:19:14 +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: c55ad369-ef21-41e8-bcc9-c96ac7e6bc6f X-Archives-Hash: fa081c92a18ca8f7e3122ae0bf87bf94 commit: 5df95fb8e113fd37c527d0c73fbdd03f22e8fce6 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Dec 17 13:18:41 2017 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sun Dec 17 13:19:08 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5df95fb8 app-misc/color: Drop old Package-Manager: Portage-2.3.13, Repoman-2.3.3 app-misc/color/color-1.2-r1.ebuild | 38 -------------------------------------- 1 file changed, 38 deletions(-) diff --git a/app-misc/color/color-1.2-r1.ebuild b/app-misc/color/color-1.2-r1.ebuild deleted file mode 100644 index 5a0666ada12..00000000000 --- a/app-misc/color/color-1.2-r1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="3" - -inherit eutils toolchain-funcs - -DESCRIPTION="Easily add ANSI colouring to shell scripts" -HOMEPAGE="http://www.runslinux.net/?page_id=10" -SRC_URI="http://runslinux.net/projects/color/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 hppa ~ia64 ~mips ppc ppc64 sparc x86" -IUSE="" - -src_prepare() { - epatch "${FILESDIR}"/${PV}-ldflags.patch - tc-export CC -} - -src_install() { - dobin color || die "dobin failed" - dodoc CHANGELOG README || die - - # symlink for british users. - dosym color /usr/bin/colour || die -} - -pkg_postinst() { - elog "For information on using colour in your shell scripts," - elog "run \`color\` without any arguments." - elog - elog "To see all the colours available, use this command" - elog " $ color --list" - elog - elog "More examples are available in ${EPREFIX}/usr/share/doc/${PF}." -}