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/rdflib: rdflib-4.0.ebuild ChangeLog
Date: Wed, 22 May 2013 10:07:17
Message-Id: 20130522100714.112F12171D@flycatcher.gentoo.org
1 patrick 13/05/22 10:07:13
2
3 Modified: ChangeLog
4 Added: rdflib-4.0.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha176/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.26 dev-python/rdflib/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rdflib/ChangeLog?rev=1.26&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rdflib/ChangeLog?rev=1.26&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rdflib/ChangeLog?r1=1.25&r2=1.26
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/rdflib/ChangeLog,v
20 retrieving revision 1.25
21 retrieving revision 1.26
22 diff -u -r1.25 -r1.26
23 --- ChangeLog 12 May 2013 17:57:51 -0000 1.25
24 +++ ChangeLog 22 May 2013 10:07:13 -0000 1.26
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.25 2013/05/12 17:57:51 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/rdflib/ChangeLog,v 1.26 2013/05/22 10:07:13 patrick Exp $
30 +
31 +*rdflib-4.0 (22 May 2013)
32 +
33 + 22 May 2013; Patrick Lauer <patrick@g.o> +rdflib-4.0.ebuild:
34 + Bump
35
36 *rdflib-3.2.3-r1 (12 May 2013)
37
38
39
40
41 1.1 dev-python/rdflib/rdflib-4.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rdflib/rdflib-4.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/rdflib/rdflib-4.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: rdflib-4.0.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.ebuild,v 1.1 2013/05/22 10:07:13 patrick 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="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
67 IUSE="berkdb examples mysql redland sqlite test"
68
69 RDEPEND="
70 dev-python/isodate[${PYTHON_USEDEP}]
71 berkdb? ( dev-python/bsddb3 )
72 mysql? ( dev-python/mysql-python[$(python_gen_usedep 'python2*')] )
73 redland? ( dev-libs/redland-bindings[python] )"
74 DEPEND="${RDEPEND}
75 dev-python/setuptools
76 test? ( dev-python/sparql-wrapper[${PYTHON_USEDEP}] )"
77
78 REQUIERED_USE="mysql? (-python_single_target_python3_3 -python_single_target_python3_2 -python_single_target_python3_1)"
79
80 python_prepare_all() {
81 # Upstream manufactured .pyc files which promptly break distutils' src_test
82 find -name "*.py[oc~]" -delete || die
83 distutils-r1_python_prepare_all
84 }
85
86 python_test() {
87 nosetests --verbosity=3 --py3where='build/src' || die
88 }
89
90 python_install_all() {
91 distutils-r1_python_install_all
92
93 if use examples; then
94 insinto /usr/share/doc/${PF}/examples
95 doins -r examples/*
96 fi
97 }