diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2014-02-19 14:49:03 +0000 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2014-02-19 14:49:03 +0000 |
commit | da4ec2b8602ec628973b62ce77554ef05e126008 (patch) | |
tree | afa2c895073fdc25b2834407e95a7419e3fa61b9 /app-arch/tar | |
parent | Fix bug #501734 (diff) | |
download | gentoo-2-da4ec2b8602ec628973b62ce77554ef05e126008.tar.gz gentoo-2-da4ec2b8602ec628973b62ce77554ef05e126008.tar.bz2 gentoo-2-da4ec2b8602ec628973b62ce77554ef05e126008.zip |
Revbump to EAPI-4. Committed straight to stable where -r1 was stable
(Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'app-arch/tar')
-rw-r--r-- | app-arch/tar/ChangeLog | 8 | ||||
-rw-r--r-- | app-arch/tar/tar-1.27.1-r2.ebuild (renamed from app-arch/tar/tar-1.27.1-r1.ebuild) | 10 |
2 files changed, 12 insertions, 6 deletions
diff --git a/app-arch/tar/ChangeLog b/app-arch/tar/ChangeLog index 12dead073a1a..481fd56d157e 100644 --- a/app-arch/tar/ChangeLog +++ b/app-arch/tar/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-arch/tar # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/tar/ChangeLog,v 1.200 2014/02/19 12:50:01 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/tar/ChangeLog,v 1.201 2014/02/19 14:49:03 polynomial-c Exp $ + +*tar-1.27.1-r2 (19 Feb 2014) + + 19 Feb 2014; Lars Wendler <polynomial-c@gentoo.org> -tar-1.27.1-r1.ebuild, + +tar-1.27.1-r2.ebuild: + Revbump to EAPI-4. Committed straight to stable where -r1 was stable. 19 Feb 2014; Lars Wendler <polynomial-c@gentoo.org> tar-1.27.1-r1.ebuild: Added missing die calls. diff --git a/app-arch/tar/tar-1.27.1-r1.ebuild b/app-arch/tar/tar-1.27.1-r2.ebuild index aaf7d5f5b5af..74382cdd12d4 100644 --- a/app-arch/tar/tar-1.27.1-r1.ebuild +++ b/app-arch/tar/tar-1.27.1-r2.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/tar/tar-1.27.1-r1.ebuild,v 1.6 2014/02/19 12:50:01 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/tar/tar-1.27.1-r2.ebuild,v 1.1 2014/02/19 14:49:03 polynomial-c Exp $ -EAPI="3" +EAPI=4 inherit flag-o-matic eutils @@ -49,13 +49,13 @@ src_configure() { } src_install() { - emake DESTDIR="${D}" install || die + emake DESTDIR="${D}" install local p=$(usex userland_GNU "" "g") if [[ -z ${p} ]] ; then # a nasty yet required piece of baggage exeinto /etc - doexe "${FILESDIR}"/rmt || die + doexe "${FILESDIR}"/rmt fi # autoconf looks for gtar before tar (in configure scripts), hence @@ -74,6 +74,6 @@ src_install() { if use minimal ; then find "${ED}"/etc "${ED}"/*bin/ "${ED}"/usr/*bin/ \ -type f -a '!' '(' -name tar -o -name ${p}tar ')' \ - -delete + -delete || die fi } |