diff options
Diffstat (limited to 'dev-python/simplejson/simplejson-2.0.4.ebuild')
-rw-r--r-- | dev-python/simplejson/simplejson-2.0.4.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/simplejson/simplejson-2.0.4.ebuild b/dev-python/simplejson/simplejson-2.0.4.ebuild new file mode 100644 index 000000000000..4f0a7099ac70 --- /dev/null +++ b/dev-python/simplejson/simplejson-2.0.4.ebuild @@ -0,0 +1,30 @@ +# 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-2.0.4.ebuild,v 1.1 2008/11/22 17:17:08 neurogeek Exp $ + +inherit distutils + +KEYWORDS="~amd64 ~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" +} |