diff options
author | Mike Frysinger <vapier@gentoo.org> | 2014-03-25 20:50:36 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2014-03-25 20:50:36 +0000 |
commit | add161b65765756f04617c43ba01c14ff12db666 (patch) | |
tree | 4fffb36066c04f87995706bbc4efc4d85cea191f /app-arch/sharutils | |
parent | Remove old. (diff) | |
download | gentoo-2-add161b65765756f04617c43ba01c14ff12db666.tar.gz gentoo-2-add161b65765756f04617c43ba01c14ff12db666.tar.bz2 gentoo-2-add161b65765756f04617c43ba01c14ff12db666.zip |
Fix inverted logic in popen binary patch #504504 by Jeroen Roovers.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key D2E96200)
Diffstat (limited to 'app-arch/sharutils')
-rw-r--r-- | app-arch/sharutils/ChangeLog | 8 | ||||
-rw-r--r-- | app-arch/sharutils/files/sharutils-4.14-popen-rb.patch | 2 | ||||
-rw-r--r-- | app-arch/sharutils/sharutils-4.14-r1.ebuild (renamed from app-arch/sharutils/sharutils-4.14.ebuild) | 2 |
3 files changed, 9 insertions, 3 deletions
diff --git a/app-arch/sharutils/ChangeLog b/app-arch/sharutils/ChangeLog index baab556727a6..5d0504604f72 100644 --- a/app-arch/sharutils/ChangeLog +++ b/app-arch/sharutils/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-arch/sharutils # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/sharutils/ChangeLog,v 1.119 2014/03/16 17:14:55 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/sharutils/ChangeLog,v 1.120 2014/03/25 20:50:36 vapier Exp $ + +*sharutils-4.14-r1 (25 Mar 2014) + + 25 Mar 2014; Mike Frysinger <vapier@gentoo.org> +sharutils-4.14-r1.ebuild, + -sharutils-4.14.ebuild, files/sharutils-4.14-popen-rb.patch: + Fix inverted logic in popen binary patch #504504 by Jeroen Roovers. 16 Mar 2014; Markus Meier <maekke@gentoo.org> sharutils-4.14.ebuild: arm stable, bug #502608 diff --git a/app-arch/sharutils/files/sharutils-4.14-popen-rb.patch b/app-arch/sharutils/files/sharutils-4.14-popen-rb.patch index 7c3c909c7a2a..c502a623c1f6 100644 --- a/app-arch/sharutils/files/sharutils-4.14-popen-rb.patch +++ b/app-arch/sharutils/files/sharutils-4.14-popen-rb.patch @@ -26,7 +26,7 @@ we know the answer already, so hardcode it to true. -} -_ACEOF -if ac_fn_c_try_run "$LINENO"; then : -+if true; then ++if false; then +if true; then $as_echo "#define BINARY_MODE_POPEN 1" >>confdefs.h diff --git a/app-arch/sharutils/sharutils-4.14.ebuild b/app-arch/sharutils/sharutils-4.14-r1.ebuild index cbad78ee8b3b..cf7edb37d654 100644 --- a/app-arch/sharutils/sharutils-4.14.ebuild +++ b/app-arch/sharutils/sharutils-4.14-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/sharutils/sharutils-4.14.ebuild,v 1.4 2014/03/16 17:14:55 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/sharutils/sharutils-4.14-r1.ebuild,v 1.1 2014/03/25 20:50:36 vapier Exp $ EAPI="5" |