diff options
author | Dror Levin <spatz@gentoo.org> | 2010-03-05 00:40:47 +0000 |
---|---|---|
committer | Dror Levin <spatz@gentoo.org> | 2010-03-05 00:40:47 +0000 |
commit | c9df0d3fcc96d1adc07e045260007d4dcbf03294 (patch) | |
tree | 459d53d0d1d08d7a0087270a333ba130862a700b /app-arch/pigz | |
parent | Version bump. (diff) | |
download | gentoo-2-c9df0d3fcc96d1adc07e045260007d4dcbf03294.tar.gz gentoo-2-c9df0d3fcc96d1adc07e045260007d4dcbf03294.tar.bz2 gentoo-2-c9df0d3fcc96d1adc07e045260007d4dcbf03294.zip |
Remove old.
(Portage version: 2.2_rc65/cvs/Linux x86_64)
Diffstat (limited to 'app-arch/pigz')
-rw-r--r-- | app-arch/pigz/ChangeLog | 8 | ||||
-rw-r--r-- | app-arch/pigz/files/pigz-2.1.5-decode-symlinks-to-stdout.patch | 12 | ||||
-rw-r--r-- | app-arch/pigz/files/pigz-2.1.5-gunzip-compat.patch | 22 | ||||
-rw-r--r-- | app-arch/pigz/files/pigz-2.1.5-respect-flags.patch | 14 | ||||
-rw-r--r-- | app-arch/pigz/pigz-2.1.5-r1.ebuild | 42 | ||||
-rw-r--r-- | app-arch/pigz/pigz-2.1.5.ebuild | 33 |
6 files changed, 7 insertions, 124 deletions
diff --git a/app-arch/pigz/ChangeLog b/app-arch/pigz/ChangeLog index 3d1211625319..f757313a8b3f 100644 --- a/app-arch/pigz/ChangeLog +++ b/app-arch/pigz/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-arch/pigz # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/ChangeLog,v 1.9 2010/01/17 23:24:19 spatz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/ChangeLog,v 1.10 2010/03/05 00:40:46 spatz Exp $ + + 05 Mar 2010; Dror Levin <spatz@gentoo.org> -pigz-2.1.5.ebuild, + -pigz-2.1.5-r1.ebuild, -files/pigz-2.1.5-decode-symlinks-to-stdout.patch, + -files/pigz-2.1.5-gunzip-compat.patch, + -files/pigz-2.1.5-respect-flags.patch: + Remove old. *pigz-2.1.6 (17 Jan 2010) diff --git a/app-arch/pigz/files/pigz-2.1.5-decode-symlinks-to-stdout.patch b/app-arch/pigz/files/pigz-2.1.5-decode-symlinks-to-stdout.patch deleted file mode 100644 index d39b7e01f569..000000000000 --- a/app-arch/pigz/files/pigz-2.1.5-decode-symlinks-to-stdout.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -u pigz-2.1.5/pigz.c pigz-2.1.5-fix/pigz.c ---- pigz-2.1.5/pigz.c 2009-07-20 04:42:00.000000000 +0200 -+++ pigz-2.1.5-fix/pigz.c 2009-10-25 15:52:22.000000000 +0100 -@@ -2498,7 +2498,7 @@ - in); - return; - } -- if ((st.st_mode & S_IFMT) == S_IFLNK && !force) { -+ if ((st.st_mode & S_IFMT) == S_IFLNK && !force && !pipeout) { - if (verbosity > 0) - fprintf(stderr, "%s is a symbolic link -- skipping\n", in); - return; diff --git a/app-arch/pigz/files/pigz-2.1.5-gunzip-compat.patch b/app-arch/pigz/files/pigz-2.1.5-gunzip-compat.patch deleted file mode 100644 index 884854fe1d30..000000000000 --- a/app-arch/pigz/files/pigz-2.1.5-gunzip-compat.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- ../pigz-2.1.5/pigz.c 2009-07-20 04:42:00.000000000 +0200 -+++ pigz.c 2009-11-24 10:50:13.000000000 +0100 -@@ -3075,9 +3075,17 @@ - if (argc < 2 && isatty(1)) - help(); - -- /* decompress if named "unpigz" */ -+ /* find program name */ - p = strrchr(argv[0], '/'); -- if (strcmp(p == NULL ? argv[0] : p + 1, "unpigz") == 0) -+ if (p == NULL) { -+ p = argv[0]; -+ } -+ else { -+ ++p; -+ } -+ -+ /* decompress if named "unpigz" or "gunzip" */ -+ if ((strcmp(p, "unpigz") == 0) || (strcmp(p, "gunzip") == 0)) - decode = 1, headis = 0; - - /* process command-line arguments */ diff --git a/app-arch/pigz/files/pigz-2.1.5-respect-flags.patch b/app-arch/pigz/files/pigz-2.1.5-respect-flags.patch deleted file mode 100644 index 3b81bc5cdfed..000000000000 --- a/app-arch/pigz/files/pigz-2.1.5-respect-flags.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff -U5 pigz-2.1.5.original/Makefile pigz-2.1.5/Makefile ---- pigz-2.1.5.original/Makefile 2009-10-27 22:41:31.000000000 -0600 -+++ pigz-2.1.5/Makefile 2009-10-27 22:42:45.000000000 -0600 -@@ -1,9 +1,7 @@ --CFLAGS=-O2 -- - pigz: pigz.o yarn.o -- cc -o pigz pigz.o yarn.o -lpthread -lz -+ $(CC) $(LDFLAGS) -o pigz pigz.o yarn.o -lpthread -lz - ln -f pigz unpigz - - pigz.o: pigz.c yarn.h - - yarn.o: yarn.c yarn.h diff --git a/app-arch/pigz/pigz-2.1.5-r1.ebuild b/app-arch/pigz/pigz-2.1.5-r1.ebuild deleted file mode 100644 index 5920dad11fb4..000000000000 --- a/app-arch/pigz/pigz-2.1.5-r1.ebuild +++ /dev/null @@ -1,42 +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.5-r1.ebuild,v 1.2 2010/01/01 19:38:05 fauli Exp $ - -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="PIGZ" -SLOT="0" -KEYWORDS="~amd64 ~sparc ~x86 ~amd64-linux ~sparc64-solaris" -IUSE="symlink test" - -RDEPEND="sys-libs/zlib" -DEPEND="${RDEPEND} - test? ( app-arch/ncompress )" - -src_unpack() { - unpack ${A} - epatch "${FILESDIR}"/${P}-respect-flags.patch - epatch "${FILESDIR}"/${P}-decode-symlinks-to-stdout.patch - epatch "${FILESDIR}"/${P}-gunzip-compat.patch -} - -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.5.ebuild b/app-arch/pigz/pigz-2.1.5.ebuild deleted file mode 100644 index 3dae89137302..000000000000 --- a/app-arch/pigz/pigz-2.1.5.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/pigz-2.1.5.ebuild,v 1.2 2009/11/02 17:58:48 vostorga Exp $ - -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="PIGZ" -SLOT="0" -KEYWORDS="~amd64 ~sparc ~x86" -IUSE="test" - -RDEPEND="sys-libs/zlib" -DEPEND="${RDEPEND} - test? ( app-arch/ncompress )" - -src_unpack() { - unpack ${A} - epatch "${FILESDIR}"/${P}-respect-flags.patch -} - -src_compile() { - tc-export CC - emake || die "make failed" -} - -src_install() { - dobin ${PN} || die "Failed to install" - dodoc README -} |