diff options
-rw-r--r-- | dev-python/simplejson/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/simplejson/simplejson-3.0.4-r1.ebuild | 29 |
2 files changed, 35 insertions, 1 deletions
diff --git a/dev-python/simplejson/ChangeLog b/dev-python/simplejson/ChangeLog index 551e2d0891b4..e470e7febebf 100644 --- a/dev-python/simplejson/ChangeLog +++ b/dev-python/simplejson/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/simplejson # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/ChangeLog,v 1.83 2013/01/03 07:46:22 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/ChangeLog,v 1.84 2013/01/03 19:24:53 floppym Exp $ + +*simplejson-3.0.4-r1 (03 Jan 2013) + + 03 Jan 2013; Mike Gilbert <floppym@gentoo.org> +simplejson-3.0.4-r1.ebuild: + Convert to distutils-r1, which should resolve bug 449978. *simplejson-3.0.4 (03 Jan 2013) diff --git a/dev-python/simplejson/simplejson-3.0.4-r1.ebuild b/dev-python/simplejson/simplejson-3.0.4-r1.ebuild new file mode 100644 index 000000000000..728d54317d42 --- /dev/null +++ b/dev-python/simplejson/simplejson-3.0.4-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/simplejson-3.0.4-r1.ebuild,v 1.1 2013/01/03 19:24:53 floppym Exp $ + +EAPI="5" +PYTHON_COMPAT=( python{2_5,2_6,2_7,3_3} pypy{1_9,2_0} ) + +inherit distutils-r1 flag-o-matic + +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="" + +python_compile() { + if [[ ${EPYTHON} == python2* ]]; then + local CFLAGS=${CFLAGS} + append-cflags -fno-strict-aliasing + fi + distutils-r1_python_compile +} + +python_test() { + esetup.py test +} |