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, 30 Aug 2022 16:59:10
Message-Id: 1661878734.b0e84cab8d77bd0494bdf6847897ab69872874cd.arthurzam@gentoo
1 commit: b0e84cab8d77bd0494bdf6847897ab69872874cd
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 30 16:54:38 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 30 16:58:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0e84cab
7
8 dev-python/rdflib: drop 6.1.1
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/rdflib/Manifest | 1 -
13 dev-python/rdflib/rdflib-6.1.1.ebuild | 58 -----------------------------------
14 2 files changed, 59 deletions(-)
15
16 diff --git a/dev-python/rdflib/Manifest b/dev-python/rdflib/Manifest
17 index a42b874888dc..2e463c1f67d3 100644
18 --- a/dev-python/rdflib/Manifest
19 +++ b/dev-python/rdflib/Manifest
20 @@ -1,2 +1 @@
21 -DIST rdflib-6.1.1.tar.gz 1587670 BLAKE2B f13831124a8f292f0481f5ee9995b6b7ba82992cbe51abb0067703b2acee9f13ce5a62379636ac9f36823afa5b841799c1f26358efb6c12eca2df333611d5488 SHA512 049608dc37dba929eac1e40431885d319311f27be9fddc292d768e3703927e61a646a73137e4a1eaa16836cfba4606ea2cfd8fe3a86cfbf10e3271cee2ee251f
22 DIST rdflib-6.2.0.gh.tar.gz 4886953 BLAKE2B 74044b0cbaf6c1ba6f2a43347112118dcf92b5237afdd49782ca6d637df092379ff2d81eaec254ad0bf25057f8c0cd44c82a35a89d4ce7b21c8e222de9aef16a SHA512 8177c50e9c2d48859a061dfee24c3560b8f979bc306b3d940a9251ec130e3a324bbad474f4fa7ced5e11522d3bd4e13931461bf106f31177fd972806968d8245
23
24 diff --git a/dev-python/rdflib/rdflib-6.1.1.ebuild b/dev-python/rdflib/rdflib-6.1.1.ebuild
25 deleted file mode 100644
26 index ce98ab1a025b..000000000000
27 --- a/dev-python/rdflib/rdflib-6.1.1.ebuild
28 +++ /dev/null
29 @@ -1,58 +0,0 @@
30 -# Copyright 1999-2022 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="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc 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 pytest
62 -
63 -EPYTEST_IGNORE=(
64 - # Uses network
65 - test/test_so_69984830.py
66 -)
67 -
68 -python_prepare_all() {
69 - # these tests require internet access
70 - sed -e '/doctest/d' -i setup.cfg || die
71 - rm test/{test_sparql_service.py,test_graph.py,jsonld/test_onedotone.py} || die
72 -
73 - distutils-r1_python_prepare_all
74 -}
75 -
76 -python_install_all() {
77 - distutils-r1_python_install_all
78 -
79 - if use examples; then
80 - dodoc -r examples
81 - docompress -x /usr/share/doc/${PF}/examples
82 - fi
83 -}
84 -
85 -pkg_postinst() {
86 - optfeature "support for sys-libs/db (Berkeley DB for MySQL)" dev-python/berkeleydb
87 -}