diff options
author | 2012-09-23 22:00:02 +0000 | |
---|---|---|
committer | 2012-09-23 22:00:02 +0000 | |
commit | b30e21fca161d86e395d0673db146672c7fad695 (patch) | |
tree | 6923dfec5ba938133e3c73ac5031efc3dda6d65f /dev-python | |
parent | Initial ebuild by me #416505 by Martin Mokrejš (diff) | |
download | gentoo-2-b30e21fca161d86e395d0673db146672c7fad695.tar.gz gentoo-2-b30e21fca161d86e395d0673db146672c7fad695.tar.bz2 gentoo-2-b30e21fca161d86e395d0673db146672c7fad695.zip |
Revert return value on failure.
(Portage version: 2.2.0_alpha131/cvs/Linux x86_64)
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/simplejson/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/simplejson/simplejson-2.6.2.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/dev-python/simplejson/ChangeLog b/dev-python/simplejson/ChangeLog index 178042f2e822..073ddef661da 100644 --- a/dev-python/simplejson/ChangeLog +++ b/dev-python/simplejson/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/simplejson # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/ChangeLog,v 1.75 2012/09/23 03:47:40 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/ChangeLog,v 1.76 2012/09/23 22:00:02 radhermit Exp $ + + 23 Sep 2012; Tim Harder <radhermit@gentoo.org> simplejson-2.6.2.ebuild: + Revert return value on failure. 23 Sep 2012; Tim Harder <radhermit@gentoo.org> -simplejson-2.3.0.ebuild, -simplejson-2.5.0.ebuild, -simplejson-2.5.2.ebuild: diff --git a/dev-python/simplejson/simplejson-2.6.2.ebuild b/dev-python/simplejson/simplejson-2.6.2.ebuild index 8faf973001e6..3c9d74232ed3 100644 --- a/dev-python/simplejson/simplejson-2.6.2.ebuild +++ b/dev-python/simplejson/simplejson-2.6.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/simplejson-2.6.2.ebuild,v 1.1 2012/09/23 03:45:31 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/simplejson-2.6.2.ebuild,v 1.2 2012/09/23 22:00:02 radhermit Exp $ EAPI="4" PYTHON_DEPEND="2" @@ -23,7 +23,7 @@ PYTHON_CFLAGS=("2.* + -fno-strict-aliasing") src_test() { testing() { if [[ "$(python_get_implementation)" != "Jython" ]]; then - ln -fs ../$(ls -d build-${PYTHON_ABI}/lib*)/simplejson/_speedups.so simplejson/_speedups.so || die + ln -fs ../$(ls -d build-${PYTHON_ABI}/lib*)/simplejson/_speedups.so simplejson/_speedups.so || return 1 fi PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" simplejson/tests/__init__.py } |