Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/couchdb-python: couchdb-python-0.6.ebuild ChangeLog
Date: Thu, 16 Jul 2009 21:55:08
Message-Id: E1MRYux-0006g4-54@stork.gentoo.org
1 patrick 09/07/16 21:55:07
2
3 Modified: ChangeLog
4 Added: couchdb-python-0.6.ebuild
5 Log:
6 Bump to 0.6, fixes #276242
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 dev-python/couchdb-python/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/couchdb-python/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/couchdb-python/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/couchdb-python/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/couchdb-python/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 21 Jun 2009 20:48:53 -0000 1.1
23 +++ ChangeLog 16 Jul 2009 21:55:07 -0000 1.2
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-python/couchdb-python
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/couchdb-python/ChangeLog,v 1.1 2009/06/21 20:48:53 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/couchdb-python/ChangeLog,v 1.2 2009/07/16 21:55:07 patrick Exp $
29 +
30 +*couchdb-python-0.6 (16 Jul 2009)
31 +
32 + 16 Jul 2009; Patrick Lauer <patrick@g.o>
33 + +couchdb-python-0.6.ebuild:
34 + Bump to 0.6, fixes #276242
35
36 *couchdb-python-0.5 (21 Jun 2009)
37
38
39
40
41 1.1 dev-python/couchdb-python/couchdb-python-0.6.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/couchdb-python/couchdb-python-0.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/couchdb-python/couchdb-python-0.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: couchdb-python-0.6.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/couchdb-python/couchdb-python-0.6.ebuild,v 1.1 2009/07/16 21:55:07 patrick Exp $
51
52 EAPI=1
53
54 inherit distutils
55
56 DESCRIPTION="Python library for working with CouchDB"
57 HOMEPAGE="http://code.google.com/p/couchdb-python/"
58 SRC_URI="http://pypi.python.org/packages/source/C/CouchDB/CouchDB-${PV}.tar.gz"
59
60 LICENSE="BSD"
61 SLOT="0"
62 KEYWORDS="~x86 ~amd64"
63 IUSE="doc"
64
65 RDEPEND="dev-python/httplib2
66 || ( >=dev-lang/python-2.6
67 ( dev-lang/python:2.5 dev-python/simplejson )
68 ( dev-lang/python:2.4 dev-python/simplejson ) )
69 doc? ( dev-python/epydoc )"
70 DEPEND=""
71
72 PYTHON_MODNAME="couchdb"
73 S=${WORKDIR}/CouchDB-${PV}
74
75 src_install() {
76 distutils_src_install
77
78 if use doc; then
79 epydoc --config=doc/conf/epydoc.ini
80 fi
81
82 dohtml -r doc/* || die
83 }