diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2014-01-03 13:47:47 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2014-01-03 13:47:47 +0000 |
commit | b28c1ae4e05ec0fc1368e65b04f20cc67d935f24 (patch) | |
tree | 0a7c63f3ca9c0ced951addad40a8d9bfc17d88c4 /app-arch | |
parent | Add ~arm and ~mips keywords (diff) | |
download | gentoo-2-b28c1ae4e05ec0fc1368e65b04f20cc67d935f24.tar.gz gentoo-2-b28c1ae4e05ec0fc1368e65b04f20cc67d935f24.tar.bz2 gentoo-2-b28c1ae4e05ec0fc1368e65b04f20cc67d935f24.zip |
Security cleanup, wrt bug #457794
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x1F357D42)
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/pigz/ChangeLog | 7 | ||||
-rw-r--r-- | app-arch/pigz/pigz-2.2.4.ebuild | 37 |
2 files changed, 5 insertions, 39 deletions
diff --git a/app-arch/pigz/ChangeLog b/app-arch/pigz/ChangeLog index d677cf3c5a04..7cb660bda377 100644 --- a/app-arch/pigz/ChangeLog +++ b/app-arch/pigz/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-arch/pigz -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/ChangeLog,v 1.34 2013/12/24 12:53:18 ago Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/ChangeLog,v 1.35 2014/01/03 13:47:47 pinkbyte Exp $ + + 03 Jan 2014; Sergey Popov <pinkbyte@gentoo.org> -pigz-2.2.4.ebuild: + Security cleanup, wrt bug #457794 24 Dec 2013; Agostino Sarubbo <ago@gentoo.org> pigz-2.3.1.ebuild: Stable for x86, wrt bug #494416 diff --git a/app-arch/pigz/pigz-2.2.4.ebuild b/app-arch/pigz/pigz-2.2.4.ebuild deleted file mode 100644 index 124aeb82740d..000000000000 --- a/app-arch/pigz/pigz-2.2.4.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/pigz-2.2.4.ebuild,v 1.3 2012/04/30 19:51:34 jdhore Exp $ - -EAPI="4" - -inherit 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 '1,3d' -e '5s/$(CC)/$(CC) $(LDFLAGS)/' 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 -} |