Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rdflib/
Date: Tue, 21 Sep 2021 13:23:03
Message-Id: 1632230467.3a2d7b77cfcb2cbf20018eabab2ac553e71349d9.arthurzam@gentoo
1 commit: 3a2d7b77cfcb2cbf20018eabab2ac553e71349d9
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 21 13:02:32 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 21 13:21:07 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a2d7b77
7
8 dev-python/rdflib: add 6.0.1, enable py3.10
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/rdflib/Manifest | 1 +
13 dev-python/rdflib/rdflib-6.0.1.ebuild | 53 +++++++++++++++++++++++++++++++++++
14 2 files changed, 54 insertions(+)
15
16 diff --git a/dev-python/rdflib/Manifest b/dev-python/rdflib/Manifest
17 index 3f0092e6d69..edf5a67e38b 100644
18 --- a/dev-python/rdflib/Manifest
19 +++ b/dev-python/rdflib/Manifest
20 @@ -1 +1,2 @@
21 DIST rdflib-5.0.0.tar.gz 818586 BLAKE2B d0046590b00211ccb4f0f586dc829c061a5f426b1cefed44a63d21d46396354b9012dbe0a63c8f9de138b25ca7d73ba624c49da6fb305ececd983c62c917fd8a SHA512 ba98ab6a7bb9d993d11c559a739761f297282eb9307f3e333db8dd1c6b365b408a59b701d823bef9be774a59b3f44f64c9444e3bb0115c0c549cb00945385dab
22 +DIST rdflib-6.0.1.tar.gz 1245483 BLAKE2B fd1c9837c25c8110bb44bd280803ec987ba865f8fea8187a1fca6173786deea65f462cf9f55f3c3c69d4fc18b01d37fc77b7b425e618c7b2e80324d7f5531f3e SHA512 d78c61a949a9c88297368820de386d289ef1722f5b2c4dad25a453c6bc9919fb98be23e682f739de6485f81746a1c338e4045c24ca058ed0b2848b81c0d34f52
23
24 diff --git a/dev-python/rdflib/rdflib-6.0.1.ebuild b/dev-python/rdflib/rdflib-6.0.1.ebuild
25 new file mode 100644
26 index 00000000000..35e96add88b
27 --- /dev/null
28 +++ b/dev-python/rdflib/rdflib-6.0.1.ebuild
29 @@ -0,0 +1,53 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +PYTHON_REQ_USE="sqlite?,threads(+)"
37 +DISTUTILS_USE_SETUPTOOLS=rdepend
38 +inherit distutils-r1 optfeature
39 +
40 +DESCRIPTION="RDF library containing a triple store and parser/serializer"
41 +HOMEPAGE="https://github.com/RDFLib/rdflib https://pypi.org/project/rdflib/"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="examples sqlite"
48 +
49 +RDEPEND="
50 + dev-python/isodate[${PYTHON_USEDEP}]
51 + dev-python/html5lib[${PYTHON_USEDEP}]
52 + dev-python/pyparsing[${PYTHON_USEDEP}]
53 +"
54 +BDEPEND="
55 + test? (
56 + dev-python/berkeleydb[${PYTHON_USEDEP}]
57 + dev-python/requests[${PYTHON_USEDEP}]
58 + )
59 +"
60 +
61 +distutils_enable_tests --install nose
62 +
63 +python_prepare_all() {
64 + # these tests require internet access
65 + sed -e '/doctest/d' -i setup.cfg || die
66 + rm test/{test_sparql_service.py,test_graph.py,jsonld/test_onedotone.py} || die
67 +
68 + distutils-r1_python_prepare_all
69 +}
70 +
71 +python_install_all() {
72 + distutils-r1_python_install_all
73 +
74 + if use examples; then
75 + dodoc -r examples
76 + docompress -x /usr/share/doc/${PF}/examples
77 + fi
78 +}
79 +
80 +pkg_postinst() {
81 + optfeature "support for sys-libs/db (Berkeley DB for MySQL)" dev-python/berkeleydb
82 +}