Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/rdflib: ChangeLog rdflib-3.2.2.ebuild
Date: Sat, 29 Sep 2012 23:49:01
Message-Id: 20120929234850.F1D8121600@flycatcher.gentoo.org
1 radhermit 12/09/29 23:48:50
2
3 Modified: ChangeLog
4 Added: rdflib-3.2.2.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha133/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.14 dev-python/rdflib/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rdflib/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rdflib/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rdflib/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/rdflib/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 4 May 2012 15:52:46 -0000 1.13
24 +++ ChangeLog 29 Sep 2012 23:48:50 -0000 1.14
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/rdflib
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/ChangeLog,v 1.13 2012/05/04 15:52:46 xarthisius Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/ChangeLog,v 1.14 2012/09/29 23:48:50 radhermit Exp $
30 +
31 +*rdflib-3.2.2 (29 Sep 2012)
32 +
33 + 29 Sep 2012; Tim Harder <radhermit@g.o> +rdflib-3.2.2.ebuild:
34 + Version bump.
35
36 *rdflib-3.2.1 (04 May 2012)
37
38
39
40
41 1.1 dev-python/rdflib/rdflib-3.2.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rdflib/rdflib-3.2.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rdflib/rdflib-3.2.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: rdflib-3.2.2.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/rdflib-3.2.2.ebuild,v 1.1 2012/09/29 23:48:50 radhermit Exp $
51
52 EAPI="4"
53 SUPPORT_PYTHON_ABIS="1"
54 RESTRICT_PYTHON_ABIS="*-pypy-*"
55 DISTUTILS_SRC_TEST="nosetests"
56
57 inherit distutils
58
59 DESCRIPTION="RDF library containing a triple store and parser/serializer"
60 HOMEPAGE="http://www.rdflib.net/ http://pypi.python.org/pypi/rdflib"
61 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
62
63 LICENSE="BSD"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
66 IUSE="berkdb examples mysql redland sqlite"
67
68 RDEPEND="dev-python/isodate
69 berkdb? ( dev-python/bsddb3 )
70 mysql? ( dev-python/mysql-python )
71 redland? ( dev-libs/redland-bindings[python] )
72 sqlite? ( || ( dev-lang/python:2.7[sqlite] dev-lang/python:2.6[sqlite]
73 dev-lang/python:2.5[sqlite] dev-python/pysqlite ) )"
74 DEPEND="${RDEPEND}
75 dev-python/setuptools"
76
77 src_test() {
78 distutils_src_test --py3where='build/src'
79 }
80
81 src_install() {
82 distutils_src_install
83
84 if use examples; then
85 insinto /usr/share/doc/${PF}/examples
86 doins -r examples/*
87 fi
88 }