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: Sun, 01 May 2022 17:16:48
Message-Id: 1651425140.fdb300536e1d52ad75c5a74951605df1fd171f4a.arthurzam@gentoo
1 commit: fdb300536e1d52ad75c5a74951605df1fd171f4a
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 1 17:12:20 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sun May 1 17:12:20 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdb30053
7
8 dev-python/rdflib: drop 5.0.0
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/rdflib/Manifest | 1 -
13 dev-python/rdflib/rdflib-5.0.0.ebuild | 48 -----------------------------------
14 2 files changed, 49 deletions(-)
15
16 diff --git a/dev-python/rdflib/Manifest b/dev-python/rdflib/Manifest
17 index 027bb9cea303..06181c7d2436 100644
18 --- a/dev-python/rdflib/Manifest
19 +++ b/dev-python/rdflib/Manifest
20 @@ -1,2 +1 @@
21 -DIST rdflib-5.0.0.tar.gz 818586 BLAKE2B d0046590b00211ccb4f0f586dc829c061a5f426b1cefed44a63d21d46396354b9012dbe0a63c8f9de138b25ca7d73ba624c49da6fb305ececd983c62c917fd8a SHA512 ba98ab6a7bb9d993d11c559a739761f297282eb9307f3e333db8dd1c6b365b408a59b701d823bef9be774a59b3f44f64c9444e3bb0115c0c549cb00945385dab
22 DIST rdflib-6.1.1.tar.gz 1587670 BLAKE2B f13831124a8f292f0481f5ee9995b6b7ba82992cbe51abb0067703b2acee9f13ce5a62379636ac9f36823afa5b841799c1f26358efb6c12eca2df333611d5488 SHA512 049608dc37dba929eac1e40431885d319311f27be9fddc292d768e3703927e61a646a73137e4a1eaa16836cfba4606ea2cfd8fe3a86cfbf10e3271cee2ee251f
23
24 diff --git a/dev-python/rdflib/rdflib-5.0.0.ebuild b/dev-python/rdflib/rdflib-5.0.0.ebuild
25 deleted file mode 100644
26 index 56db7cdd4f7a..000000000000
27 --- a/dev-python/rdflib/rdflib-5.0.0.ebuild
28 +++ /dev/null
29 @@ -1,48 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -DISTUTILS_USE_SETUPTOOLS=rdepend
36 -PYTHON_COMPAT=( python3_{8..9} )
37 -PYTHON_REQ_USE="sqlite?,threads(+)"
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="RDF library containing a triple store and parser/serializer"
42 -HOMEPAGE="https://github.com/RDFLib/rdflib https://pypi.org/project/rdflib/"
43 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 -
45 -LICENSE="BSD"
46 -SLOT="0"
47 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux"
48 -IUSE="berkdb examples sqlite"
49 -
50 -RDEPEND="
51 - dev-python/isodate[${PYTHON_USEDEP}]
52 - dev-python/html5lib[${PYTHON_USEDEP}]
53 - dev-python/pyparsing[${PYTHON_USEDEP}]
54 - berkdb? ( dev-python/bsddb3[${PYTHON_USEDEP}] )"
55 -DEPEND="${RDEPEND}
56 - test? (
57 - dev-python/requests[${PYTHON_USEDEP}]
58 - )"
59 -
60 -distutils_enable_tests nose
61 -
62 -python_prepare_all() {
63 - # these tests require internet access
64 - sed -i -e '/doctest/d' setup.cfg || die
65 - rm test/test_sparql_service.py || die
66 -
67 - distutils-r1_python_prepare_all
68 -}
69 -
70 -python_install_all() {
71 - distutils-r1_python_install_all
72 -
73 - if use examples; then
74 - dodoc -r examples
75 - docompress -x /usr/share/doc/${PF}/examples
76 - fi
77 -}