diff options
author | Dirkjan Ochtman <djc@gentoo.org> | 2010-08-15 10:47:40 +0000 |
---|---|---|
committer | Dirkjan Ochtman <djc@gentoo.org> | 2010-08-15 10:47:40 +0000 |
commit | 8c90afed650af82402c5ceb4384b6dc5a78f206c (patch) | |
tree | b6208307a107715ba0dec084dd11c65fd4919fb7 /dev-python/couchdb-python | |
parent | Further tweak acceleration settings, bug #332755. (diff) | |
download | gentoo-2-8c90afed650af82402c5ceb4384b6dc5a78f206c.tar.gz gentoo-2-8c90afed650af82402c5ceb4384b6dc5a78f206c.tar.bz2 gentoo-2-8c90afed650af82402c5ceb4384b6dc5a78f206c.zip |
Resurrect old version of couchdb-python for desktopcouch (bug 332545).
(Portage version: 2.1.8.3/cvs/Linux x86_64, RepoMan options: --force)
Diffstat (limited to 'dev-python/couchdb-python')
-rw-r--r-- | dev-python/couchdb-python/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/couchdb-python/couchdb-python-0.6.1.ebuild | 41 |
2 files changed, 46 insertions, 1 deletions
diff --git a/dev-python/couchdb-python/ChangeLog b/dev-python/couchdb-python/ChangeLog index 50f4269a4a53..34233016c8f1 100644 --- a/dev-python/couchdb-python/ChangeLog +++ b/dev-python/couchdb-python/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/couchdb-python # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/couchdb-python/ChangeLog,v 1.12 2010/08/13 13:04:34 djc Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/couchdb-python/ChangeLog,v 1.13 2010/08/15 10:47:40 djc Exp $ + + 15 Aug 2010; Dirkjan Ochtman <djc@gentoo.org> + +couchdb-python-0.6.1.ebuild: + Resurrect 0.6.1 for desktopcouch (bug 332645). *couchdb-python-0.8 (13 Aug 2010) 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..a3f8e0d1be59 --- /dev/null +++ b/dev-python/couchdb-python/couchdb-python-0.6.1.ebuild @@ -0,0 +1,41 @@ +# 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.9 2010/08/15 10:47:40 djc Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" +DISTUTILS_SRC_TEST="setup.py" + +inherit distutils + +MY_PN="CouchDB" +MY_P="${MY_PN}-${PV}" + +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/${MY_PN:0:1}/${MY_PN}/${MY_P}.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 ) )" +DEPEND="dev-python/setuptools" + +S="${WORKDIR}/CouchDB-${PV}" + +PYTHON_MODNAME="couchdb" + +src_install() { + distutils_src_install + + if use doc; then + dohtml -r doc/api/* || die "Installation of documentation failed" + fi +} |