diff options
author | Rob Cakebread <pythonhead@gentoo.org> | 2008-07-04 15:46:19 +0000 |
---|---|---|
committer | Rob Cakebread <pythonhead@gentoo.org> | 2008-07-04 15:46:19 +0000 |
commit | 8cf027fd3cfc82a435fdf247ca273b4953291019 (patch) | |
tree | 8ac346727e61feeb8ab7960a9760c66c47c4c08e /dev-python/simplejson | |
parent | x86 stable wrt #230513 (diff) | |
download | gentoo-2-8cf027fd3cfc82a435fdf247ca273b4953291019.tar.gz gentoo-2-8cf027fd3cfc82a435fdf247ca273b4953291019.tar.bz2 gentoo-2-8cf027fd3cfc82a435fdf247ca273b4953291019.zip |
Version bump, removed nose as dependency, fixed tests. Closes #230708. Removed older.
(Portage version: 2.2_rc1/cvs/Linux 2.6.25-gentoo-r4 i686)
Diffstat (limited to 'dev-python/simplejson')
-rw-r--r-- | dev-python/simplejson/simplejson-1.9.1.ebuild (renamed from dev-python/simplejson/simplejson-1.7.3.ebuild) | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/dev-python/simplejson/simplejson-1.7.3.ebuild b/dev-python/simplejson/simplejson-1.9.1.ebuild index 0bfde3a3d9fb..a77578ec6123 100644 --- a/dev-python/simplejson/simplejson-1.7.3.ebuild +++ b/dev-python/simplejson/simplejson-1.9.1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/simplejson-1.7.3.ebuild,v 1.1 2008/01/04 17:23:34 hawking Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/simplejson/simplejson-1.9.1.ebuild,v 1.1 2008/07/04 15:46:19 pythonhead Exp $ -NEED_PYTHON=2.3 +NEED_PYTHON=2.4 inherit distutils @@ -13,10 +13,9 @@ 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="test" +IUSE="" -DEPEND="test? ( dev-python/nose ) - dev-python/setuptools" +DEPEND="dev-python/setuptools" RDEPEND="" src_install() { @@ -25,5 +24,5 @@ src_install() { } src_test() { - PYTHONPATH=. "${python}" setup.py test || die "test failed" + PYTHONPATH=. "${python}" simplejson/tests/__init__.py || die "test failed" } |