Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/frozendict/
Date: Tue, 27 Sep 2022 21:44:51
Message-Id: 1664314922.9f7c65bf6af9681532661010e5f12dac90e76899.sam@gentoo
1 commit: 9f7c65bf6af9681532661010e5f12dac90e76899
2 Author: Petr Vaněk <arkamar <AT> atlas <DOT> cz>
3 AuthorDate: Tue Sep 27 13:25:40 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 27 21:42:02 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f7c65bf
7
8 dev-python/frozendict: drop 2.3.2
9
10 Signed-off-by: Petr Vaněk <arkamar <AT> atlas.cz>
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-python/frozendict/Manifest | 1 -
14 dev-python/frozendict/frozendict-2.3.2.ebuild | 29 ---------------------------
15 2 files changed, 30 deletions(-)
16
17 diff --git a/dev-python/frozendict/Manifest b/dev-python/frozendict/Manifest
18 index 646b181321d3..25b091d61a39 100644
19 --- a/dev-python/frozendict/Manifest
20 +++ b/dev-python/frozendict/Manifest
21 @@ -1,2 +1 @@
22 -DIST frozendict-2.3.2.gh.tar.gz 306318 BLAKE2B 3bc10f34784a8b76b7c6ca0eeccc8331e9a558f0e24d2328550eb5a985ed2ad6c94d027c51ee44f2d25af67fc453356e01b5cfee773880b87d73c55113ca10b2 SHA512 8dc88a3e7898be8fbced16fbdbdee469d07ecbb06a059512f98f71e50a8c5f2c3a4f3d4e6aa06bab121e4ae2e9cea76f6d89c73212047069f2ef88c616c7278a
23 DIST frozendict-2.3.4.gh.tar.gz 307399 BLAKE2B ac6311182ed2ba4925a14a145b4d30a0241978f55ae7a81cebc534ede812ca77097f0f8c7eeb08e8cbd6240e036d3b5035bd3e9b284a55b638c93717e3a20258 SHA512 15acc4fceb5e2228ee3423d4a5b86c529e9bdcb7264f59139cbde6194983901a17da8036bebf53d7d8057ce52666031e90eb1ca358bfd374c651fd60743988dc
24
25 diff --git a/dev-python/frozendict/frozendict-2.3.2.ebuild b/dev-python/frozendict/frozendict-2.3.2.ebuild
26 deleted file mode 100644
27 index 0424323d8183..000000000000
28 --- a/dev-python/frozendict/frozendict-2.3.2.ebuild
29 +++ /dev/null
30 @@ -1,29 +0,0 @@
31 -# Copyright 2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -DISTUTILS_USE_PEP517=setuptools
37 -PYTHON_COMPAT=( python3_{9..10} )
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="A simple immutable mapping for python"
42 -HOMEPAGE="
43 - https://github.com/Marco-Sulla/python-frozendict
44 - https://pypi.python.org/pypi/frozendict
45 -"
46 -SRC_URI="https://github.com/Marco-Sulla/python-frozendict/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
47 -
48 -S="${WORKDIR}/python-${P}"
49 -
50 -LICENSE="MIT"
51 -SLOT="0"
52 -KEYWORDS="~amd64 ~ppc64"
53 -
54 -distutils_enable_tests pytest
55 -
56 -python_test() {
57 - cd "${T}" || die
58 - epytest "${S}/test"
59 -}