From 2f30a9416283e9717b435442a5624b7855969270 Mon Sep 17 00:00:00 2001 From: James Broadhead Date: Sun, 2 Nov 2014 16:59:10 +0000 Subject: rm app-portage/autounmask It's day has passed -- this functionality is in `emerge` now --- app-portage/autounmask/Manifest | 3 -- app-portage/autounmask/autounmask-0.27-r1.ebuild | 32 ------------ .../autounmask/files/autounmask-noarch.patch | 59 ---------------------- 3 files changed, 94 deletions(-) delete mode 100644 app-portage/autounmask/Manifest delete mode 100644 app-portage/autounmask/autounmask-0.27-r1.ebuild delete mode 100644 app-portage/autounmask/files/autounmask-noarch.patch diff --git a/app-portage/autounmask/Manifest b/app-portage/autounmask/Manifest deleted file mode 100644 index 34b360a..0000000 --- a/app-portage/autounmask/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -AUX autounmask-noarch.patch 1284 RMD160 527844e15b8d0d9568d319d96e26eaf304d121b7 SHA1 ec37d797a7d8634dc3b3df0fa780b9ed83f07f01 SHA256 41d0dbee42aae080b04c200f2416c22b40893403c855ce728b4da6f54e6415f9 -DIST autounmask-0.27.tar.gz 4062 RMD160 910ab0a692ad88d192050c7445ee8446135ab8c8 SHA1 a144b759a3015a7e19134c2e23dce91f8d9cf4e7 SHA256 44cac25ac4546099901e58289eb73e2a9990c1f454a8dec14c972c2df13bb277 -EBUILD autounmask-0.27-r1.ebuild 813 RMD160 08d4ed57025d7b6d60b0531268ff0eb88597b34d SHA1 74dbc5f44faf127335d1709a402cae68969daa9b SHA256 5bb3c916482c6319b15a636931fa6d05e640d0bd966ddff8abace60474e1c783 diff --git a/app-portage/autounmask/autounmask-0.27-r1.ebuild b/app-portage/autounmask/autounmask-0.27-r1.ebuild deleted file mode 100644 index 114a111..0000000 --- a/app-portage/autounmask/autounmask-0.27-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/autounmask/autounmask-0.27.ebuild,v 1.9 2010/06/05 18:50:45 armin76 Exp $ - -EAPI="2" - -inherit eutils - -DESCRIPTION="autounmask - Unmasking packages the easy way" -HOMEPAGE="http://download.mpsna.de/opensource/autounmask/" -SRC_URI="http://download.mpsna.de/opensource/autounmask/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc sparc x86 ~x86-fbsd" -IUSE="" - -DEPEND="dev-lang/perl - >=dev-perl/PortageXS-0.02.09 - virtual/perl-Term-ANSIColor - dev-perl/Shell-EnvImporter" -RDEPEND="${DEPEND} - sys-apps/portage" - -src_prepare() { - epatch "${FILESDIR}"/"${PN}"-noarch.patch -} - -src_install() { - dobin autounmask || die - dodoc Changelog -} diff --git a/app-portage/autounmask/files/autounmask-noarch.patch b/app-portage/autounmask/files/autounmask-noarch.patch deleted file mode 100644 index 05570b7..0000000 --- a/app-portage/autounmask/files/autounmask-noarch.patch +++ /dev/null @@ -1,59 +0,0 @@ ---- autounmask 2010-08-15 19:25:59.000000000 +0100 -+++ autounmask-noarch 2010-08-15 19:22:13.000000000 +0100 -@@ -40,7 +40,6 @@ - my ($p,$x,$r); - my @l = (); - my $packageToUnmask = ''; --my $arch = $pxs->getArch(); - my @repos = (); - my $isOk = 0; - my %cmdOptions = (); -@@ -217,7 +216,7 @@ - $p=$1; - - if ($p) { -- addToKeywords($p,'~'.$arch); -+ addToKeywords($p); - addToUnmask($p); - last if ($cmdOptions{'noversions'}); - } -@@ -227,7 +226,7 @@ - $p=$1; - - if ($p) { -- addToKeywords($p,'~'.$arch); -+ addToKeywords($p); - addToUnmask($p); - last if ($cmdOptions{'noversions'}); - } -@@ -237,7 +236,7 @@ - $p=$1; - - if ($p) { -- addToKeywords($p,'~'.$arch); -+ addToKeywords($p); - last if ($cmdOptions{'noversions'}); - } - } -@@ -294,7 +293,7 @@ - # - Subs > - sub addToKeywords { - my $p = shift; -- my $k = shift; -+# my $k = shift; - if ($cmdOptions{'noversions'}) { - $p=$pxs->getEbuildName($p); - } -@@ -302,8 +301,10 @@ - $p='='.$p; - } - open(FH,'>>'.$keywordsFile) or die('Cannot write to file: '.$keywordsFile); -- print FH $p." ".$k."\n"; -- $pxs->print_ok("Added '".$p." ".$k."' to ".$keywordsFile."\n"); -+ -+ print FH $p."\n"; -+ -+ $pxs->print_ok("Added '".$p."' to ".$keywordsFile."\n"); - close(FH); - return 1; - } -- cgit v1.2.3-65-gdbad