Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/rdflib: ChangeLog rdflib-4.0.1.ebuild
Date: Wed, 22 May 2013 18:36:53
Message-Id: 20130522183646.0488D2171D@flycatcher.gentoo.org
1 jlec 13/05/22 18:36:45
2
3 Modified: ChangeLog
4 Added: rdflib-4.0.1.ebuild
5 Log:
6 dev-python/rdflib: Version Bump
7
8 (Portage version: 2.2.0_alpha176/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
9
10 Revision Changes Path
11 1.27 dev-python/rdflib/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rdflib/ChangeLog?rev=1.27&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rdflib/ChangeLog?rev=1.27&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rdflib/ChangeLog?r1=1.26&r2=1.27
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/rdflib/ChangeLog,v
20 retrieving revision 1.26
21 retrieving revision 1.27
22 diff -u -r1.26 -r1.27
23 --- ChangeLog 22 May 2013 10:07:13 -0000 1.26
24 +++ ChangeLog 22 May 2013 18:36:45 -0000 1.27
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/rdflib
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/ChangeLog,v 1.26 2013/05/22 10:07:13 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/ChangeLog,v 1.27 2013/05/22 18:36:45 jlec Exp $
30 +
31 +*rdflib-4.0.1 (22 May 2013)
32 +
33 + 22 May 2013; Justin Lecher <jlec@g.o> +rdflib-4.0.1.ebuild:
34 + Version Bump
35
36 *rdflib-4.0 (22 May 2013)
37
38
39
40
41 1.1 dev-python/rdflib/rdflib-4.0.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rdflib/rdflib-4.0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rdflib/rdflib-4.0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: rdflib-4.0.1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/rdflib-4.0.1.ebuild,v 1.1 2013/05/22 18:36:45 jlec Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} )
55 PYTHON_USE_WITH="sqlite?"
56 DISTUTILS_NO_PARALLEL_BUILD=true
57
58 inherit distutils-r1
59
60 DESCRIPTION="RDF library containing a triple store and parser/serializer"
61 HOMEPAGE="https://github.com/RDFLib/rdflib http://pypi.python.org/pypi/rdflib"
62 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
63
64 LICENSE="BSD"
65 SLOT="0"
66 KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux"
67 IUSE="berkdb examples mysql redland sqlite test"
68
69 RDEPEND="
70 dev-python/isodate[${PYTHON_USEDEP}]
71 dev-python/html5lib[$(python_gen_usedep 'python2*')]
72 virtual/pyparsing[${PYTHON_USEDEP}]
73 berkdb? ( dev-python/bsddb3 )
74 mysql? ( dev-python/mysql-python[$(python_gen_usedep 'python2*')] )
75 redland? ( dev-libs/redland-bindings[python] )"
76 DEPEND="${RDEPEND}
77 dev-python/setuptools
78 test? ( dev-python/sparql-wrapper[${PYTHON_USEDEP}] )"
79
80 REQUIERED_USE="mysql? (-python_single_target_python3_3 -python_single_target_python3_2 -python_single_target_python3_1)"
81
82 python_prepare_all() {
83 # Upstream manufactured .pyc files which promptly break distutils' src_test
84 find -name "*.py[oc~]" -delete || die
85 distutils-r1_python_prepare_all
86 }
87
88 python_test() {
89 nosetests --verbosity=3 --py3where='build/src' || die
90 }
91
92 python_install_all() {
93 distutils-r1_python_install_all
94
95 if use examples; then
96 insinto /usr/share/doc/${PF}/examples
97 doins -r examples/*
98 fi
99 }