diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-04-03 09:43:10 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-04-03 09:43:10 +0000 |
commit | de9d0e792f995bc1f48face1f1575b60a8e6e5c5 (patch) | |
tree | 43e6577b8c72495271b9fad6af1dff4d94aad915 /dev-python/simplejson | |
parent | Version bump, bug #264270, thank Vieri for maintaining this package. (diff) | |
download | gentoo-2-de9d0e792f995bc1f48face1f1575b60a8e6e5c5.tar.gz gentoo-2-de9d0e792f995bc1f48face1f1575b60a8e6e5c5.tar.bz2 gentoo-2-de9d0e792f995bc1f48face1f1575b60a8e6e5c5.zip |
Bump to 2.0.9, fixes #264556
(Portage version: 2.2_rc28/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.0.9.ebuild | 30 |
2 files changed, 36 insertions, 1 deletions
diff --git a/dev-python/simplejson/ChangeLog b/dev-python/simplejson/ChangeLog index 2d2973170d6c..566dc5147c58 100644 --- a/dev-python/simplejson/ChangeLog +++ b/dev-python/simplejson/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/simplejson # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/ChangeLog,v 1.9 2009/03/06 15:53:51 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/ChangeLog,v 1.10 2009/04/03 09:43:10 patrick Exp $ + +*simplejson-2.0.9 (03 Apr 2009) + + 03 Apr 2009; Patrick Lauer <patrick@gentoo.org> +simplejson-2.0.9.ebuild: + Bump to 2.0.9, fixes #264556 06 Mar 2009; Brent Baude <ranger@gentoo.org> simplejson-2.0.4.ebuild: marking simplejson-2.0.4 ~ppc for 253853 diff --git a/dev-python/simplejson/simplejson-2.0.9.ebuild b/dev-python/simplejson/simplejson-2.0.9.ebuild new file mode 100644 index 000000000000..505c973ee86a --- /dev/null +++ b/dev-python/simplejson/simplejson-2.0.9.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/simplejson-2.0.9.ebuild,v 1.1 2009/04/03 09:43:10 patrick Exp $ + +inherit distutils + +KEYWORDS="~amd64 ~ppc ~x86" + +DESCRIPTION="A simple, fast, complete, correct and extensible JSON encoder and decoder." +HOMEPAGE="http://undefined.org/python/#simplejson" +SRC_URI="http://cheeseshop.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz" +LICENSE="MIT" +SLOT="0" +IUSE="doc test" + +RDEPEND="<dev-lang/python-2.6" +DEPEND="dev-python/setuptools + ${RDEPEND}" + +src_install() { + distutils_src_install + + if use doc; then + dohtml -r docs/* + fi +} + +src_test() { + PYTHONPATH=. "${python}" simplejson/tests/__init__.py || die "test failed" +} |