diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-06-19 16:50:17 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-06-19 16:50:17 +0000 |
commit | 49e895701068d9a4642012b7dc300c415bc4b9ba (patch) | |
tree | b8c492edb84e915e6349830bc3f188ec7fa82374 /dev-python/couchdb-python | |
parent | Revision bump to stop building hid2hci (bug #315749) (diff) | |
download | gentoo-2-49e895701068d9a4642012b7dc300c415bc4b9ba.tar.gz gentoo-2-49e895701068d9a4642012b7dc300c415bc4b9ba.tar.bz2 gentoo-2-49e895701068d9a4642012b7dc300c415bc4b9ba.zip |
Restore couchdb-python-0.6.1.
(Portage version: HEAD/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/couchdb-python')
-rw-r--r-- | dev-python/couchdb-python/couchdb-python-0.6.1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dev-python/couchdb-python/couchdb-python-0.6.1.ebuild b/dev-python/couchdb-python/couchdb-python-0.6.1.ebuild new file mode 100644 index 000000000000..f2038ccbb170 --- /dev/null +++ b/dev-python/couchdb-python/couchdb-python-0.6.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/couchdb-python/couchdb-python-0.6.1.ebuild,v 1.6 2010/06/19 16:50:17 arfrever Exp $ + +EAPI="2" + +inherit distutils + +DESCRIPTION="Python library for working with CouchDB" +HOMEPAGE="http://code.google.com/p/couchdb-python/ http://pypi.python.org/pypi/CouchDB" +SRC_URI="http://pypi.python.org/packages/source/C/CouchDB/CouchDB-${PV}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="doc" + +RDEPEND="dev-python/httplib2 + || ( >=dev-lang/python-2.6 + ( dev-lang/python:2.5 dev-python/simplejson ) + ( dev-lang/python:2.4 dev-python/simplejson ) ) + doc? ( dev-python/epydoc )" +DEPEND="dev-python/setuptools" + +PYTHON_MODNAME="couchdb" +S="${WORKDIR}/CouchDB-${PV}" + +src_install() { + distutils_src_install + + if use doc; then + epydoc --config=doc/conf/epydoc.ini + fi + + dohtml -r doc/* || die "dohtml failed" +} + +src_test() { + python setup.py test +} |