diff options
author | 2012-04-19 09:44:29 +0000 | |
---|---|---|
committer | 2012-04-19 09:44:29 +0000 | |
commit | 7628d6684d110e14e93e337d89748476f979fb2f (patch) | |
tree | 1d4bfc50f36cc7d6d6c701021b2122c6729401a3 /dev-python/simplejson | |
parent | Fix glib-2.32 building, bug #412091 by Balint SZENTE. (diff) | |
download | historical-7628d6684d110e14e93e337d89748476f979fb2f.tar.gz historical-7628d6684d110e14e93e337d89748476f979fb2f.tar.bz2 historical-7628d6684d110e14e93e337d89748476f979fb2f.zip |
Bump
Package-Manager: portage-2.2.0_alpha100/cvs/Linux x86_64
Diffstat (limited to 'dev-python/simplejson')
-rw-r--r-- | dev-python/simplejson/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/simplejson/simplejson-2.5.0.ebuild | 43 |
2 files changed, 49 insertions, 1 deletions
diff --git a/dev-python/simplejson/ChangeLog b/dev-python/simplejson/ChangeLog index cad53a83f798..5350ff30fd53 100644 --- a/dev-python/simplejson/ChangeLog +++ b/dev-python/simplejson/ChangeLog @@ -1,6 +1,11 @@ # 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.60 2012/03/29 08:38:35 djc Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/ChangeLog,v 1.61 2012/04/19 09:44:29 patrick Exp $ + +*simplejson-2.5.0 (19 Apr 2012) + + 19 Apr 2012; Patrick Lauer <patrick@gentoo.org> +simplejson-2.5.0.ebuild: + Bump *simplejson-2.4.0 (29 Mar 2012) diff --git a/dev-python/simplejson/simplejson-2.5.0.ebuild b/dev-python/simplejson/simplejson-2.5.0.ebuild new file mode 100644 index 000000000000..47af4baec785 --- /dev/null +++ b/dev-python/simplejson/simplejson-2.5.0.ebuild @@ -0,0 +1,43 @@ +# 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.5.0.ebuild,v 1.1 2012/04/19 09:44:29 patrick Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" + +inherit distutils + +DESCRIPTION="Simple, fast, extensible JSON encoder/decoder for Python" +HOMEPAGE="http://undefined.org/python/#simplejson http://pypi.python.org/pypi/simplejson" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="" + +DEPEND="" +RDEPEND="" + +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 || return 1 + fi + PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" simplejson/tests/__init__.py + } + python_execute_function testing +} + +src_install() { + distutils_src_install + + delete_tests() { + rm -fr "${ED}$(python_get_sitedir)/simplejson/tests" + } + python_execute_function -q delete_tests +} |