diff options
author | 2012-08-03 08:32:08 +0000 | |
---|---|---|
committer | 2012-08-03 08:32:08 +0000 | |
commit | 05fe2858f34b083b292dd1b9ecdde6ca8532f1a1 (patch) | |
tree | 56d508f081bfe0d5d866ddf183e6a2828d32ed7b /app-arch | |
parent | marked x86 per bug 419249 (diff) | |
download | gentoo-2-05fe2858f34b083b292dd1b9ecdde6ca8532f1a1.tar.gz gentoo-2-05fe2858f34b083b292dd1b9ecdde6ca8532f1a1.tar.bz2 gentoo-2-05fe2858f34b083b292dd1b9ecdde6ca8532f1a1.zip |
Remove old.
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/pigz/ChangeLog | 7 | ||||
-rw-r--r-- | app-arch/pigz/files/pigz-2.1.6-doubledash.patch | 45 | ||||
-rw-r--r-- | app-arch/pigz/pigz-2.1.6-r1.ebuild | 38 | ||||
-rw-r--r-- | app-arch/pigz/pigz-2.1.6.ebuild | 41 | ||||
-rw-r--r-- | app-arch/pigz/pigz-2.1.7.ebuild | 39 |
5 files changed, 6 insertions, 164 deletions
diff --git a/app-arch/pigz/ChangeLog b/app-arch/pigz/ChangeLog index b24cae978d08..829a04436a1f 100644 --- a/app-arch/pigz/ChangeLog +++ b/app-arch/pigz/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-arch/pigz # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/ChangeLog,v 1.21 2012/08/03 08:30:06 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/ChangeLog,v 1.22 2012/08/03 08:32:07 radhermit Exp $ + + 03 Aug 2012; Tim Harder <radhermit@gentoo.org> -pigz-2.1.6.ebuild, + -pigz-2.1.6-r1.ebuild, -files/pigz-2.1.6-doubledash.patch, + -pigz-2.1.7.ebuild: + Remove old. *pigz-2.2.5 (03 Aug 2012) diff --git a/app-arch/pigz/files/pigz-2.1.6-doubledash.patch b/app-arch/pigz/files/pigz-2.1.6-doubledash.patch deleted file mode 100644 index d528a7956b76..000000000000 --- a/app-arch/pigz/files/pigz-2.1.6-doubledash.patch +++ /dev/null @@ -1,45 +0,0 @@ -diff --git a/pigz.c b/pigz.c -index 97e6faa..29d88c3 100644 ---- a/pigz.c -+++ b/pigz.c -@@ -2940,6 +2940,9 @@ local int option(char *arg) - arg = longopts[j][1]; - break; - } -+ /* double dash to terminate option processing */ -+ if (*(arg-1) == '-') -+ return 2; - if (j < 0) - bail("invalid option: ", arg - 2); - } -@@ -3061,6 +3064,7 @@ int main(int argc, char **argv) - int n; /* general index */ - unsigned long done; /* number of named files processed */ - char *opts, *p; /* environment default options, marker */ -+ int doubledash; /* -- to terminate option checking */ - - /* prepare for interrupts and logging */ - signal(SIGINT, cut_short); -@@ -3106,15 +3110,20 @@ int main(int argc, char **argv) - - /* process command-line arguments */ - done = 0; -- for (n = 1; n < argc; n++) -- if (option(argv[n])) { /* true if file name, process it */ -+ doubledash = 0; -+ for (n = 1; n < argc; n++) { -+ int optionreturn = doubledash ? 1 : option(argv[n]); -+ if (optionreturn == 1) { /* true if file name, process it */ - if (done == 1 && pipeout && !decode && !list && form > 1) { - fprintf(stderr, "warning: output is concatenated zip files "); - fprintf(stderr, "-- pigz will not be able to extract\n"); - } - process(strcmp(argv[n], "-") ? argv[n] : NULL); - done++; -+ } else if (optionreturn == 2) { -+ doubledash++; - } -+ } - option(NULL); - - /* list stdin or compress stdin to stdout if no file names provided */ diff --git a/app-arch/pigz/pigz-2.1.6-r1.ebuild b/app-arch/pigz/pigz-2.1.6-r1.ebuild deleted file mode 100644 index 1381748545fc..000000000000 --- a/app-arch/pigz/pigz-2.1.6-r1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/pigz-2.1.6-r1.ebuild,v 1.4 2011/06/09 03:27:02 mattst88 Exp $ - -EAPI="2" - -inherit eutils toolchain-funcs - -DESCRIPTION="A parallel implementation of gzip" -HOMEPAGE="http://www.zlib.net/pigz/" -SRC_URI="http://www.zlib.net/pigz/${P}.tar.gz" - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~mips ~sparc ~x86 ~amd64-linux ~sparc64-solaris" -IUSE="symlink test" - -RDEPEND="sys-libs/zlib" -DEPEND="${RDEPEND} - test? ( app-arch/ncompress )" - -src_prepare() { - sed -i -e '/^CFLAGS=/ d' -e '4s/cc/$(CC) $(LDFLAGS)/' "${S}/Makefile" || die - epatch "${FILESDIR}/${P}-doubledash.patch" - tc-export CC -} - -src_install() { - dobin ${PN} || die "Failed to install" - dosym /usr/bin/${PN} /usr/bin/un${PN} || die - dodoc README || die - doman ${PN}.1 || die - - if use symlink; then - dosym /usr/bin/${PN} /usr/bin/gzip || die - dosym /usr/bin/un${PN} /usr/bin/gunzip || die - fi -} diff --git a/app-arch/pigz/pigz-2.1.6.ebuild b/app-arch/pigz/pigz-2.1.6.ebuild deleted file mode 100644 index 3052bbc0e2cd..000000000000 --- a/app-arch/pigz/pigz-2.1.6.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/pigz-2.1.6.ebuild,v 1.4 2010/09/11 10:39:54 ulm Exp $ - -EAPI="2" - -inherit eutils toolchain-funcs - -DESCRIPTION="A parallel implementation of gzip" -HOMEPAGE="http://www.zlib.net/pigz/" -SRC_URI="http://www.zlib.net/pigz/${P}.tar.gz" - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="amd64 ~sparc x86 ~amd64-linux ~sparc64-solaris" -IUSE="symlink test" - -RDEPEND="sys-libs/zlib" -DEPEND="${RDEPEND} - test? ( app-arch/ncompress )" - -src_prepare() { - sed -i -e '/^CFLAGS=/ d' -e '4s/cc/$(CC) $(LDFLAGS)/' "${S}/Makefile" || die -} - -src_compile() { - tc-export CC - emake || die "make failed" -} - -src_install() { - dobin ${PN} || die "Failed to install" - dosym /usr/bin/${PN} /usr/bin/un${PN} || die - dodoc README || die - doman ${PN}.1 || die - - if use symlink; then - dosym /usr/bin/${PN} /usr/bin/gzip || die - dosym /usr/bin/un${PN} /usr/bin/gunzip || die - fi -} diff --git a/app-arch/pigz/pigz-2.1.7.ebuild b/app-arch/pigz/pigz-2.1.7.ebuild deleted file mode 100644 index 939202bb3f05..000000000000 --- a/app-arch/pigz/pigz-2.1.7.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/pigz-2.1.7.ebuild,v 1.1 2011/12/18 20:56:54 spatz Exp $ - -EAPI="4" - -inherit eutils toolchain-funcs - -DESCRIPTION="A parallel implementation of gzip" -HOMEPAGE="http://www.zlib.net/pigz/" -SRC_URI="http://www.zlib.net/pigz/${P}.tar.gz" - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~mips ~sparc ~x86 ~amd64-linux ~sparc64-solaris" -IUSE="symlink test" - -RDEPEND="sys-libs/zlib" -DEPEND="${RDEPEND} - test? ( app-arch/ncompress )" - -S="${WORKDIR}/${PN}" - -src_prepare() { - sed -i -e '1,3d' -e '5s/$(CC)/$(CC) $(LDFLAGS)/' "${S}/Makefile" || die - tc-export CC -} - -src_install() { - dobin ${PN} - dosym /usr/bin/${PN} /usr/bin/un${PN} - dodoc README - doman ${PN}.1 - - if use symlink; then - dosym /usr/bin/${PN} /usr/bin/gzip - dosym /usr/bin/un${PN} /usr/bin/gunzip - fi -} |