diff options
author | Petr Vaněk <arkamar@atlas.cz> | 2023-11-25 14:55:19 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-11-25 15:52:34 +0100 |
commit | 841f8f5fd9e6e5e561a02c436bb0888921733216 (patch) | |
tree | d6990008054da7703848306eed70ccbd266fe1d4 /dev-python/immutabledict | |
parent | dev-python/pyclipper: Remove old (diff) | |
download | gentoo-841f8f5fd9e6e5e561a02c436bb0888921733216.tar.gz gentoo-841f8f5fd9e6e5e561a02c436bb0888921733216.tar.bz2 gentoo-841f8f5fd9e6e5e561a02c436bb0888921733216.zip |
dev-python/immutabledict: add 4.0.0
Signed-off-by: Petr Vaněk <arkamar@atlas.cz>
Closes: https://github.com/gentoo/gentoo/pull/33979
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/immutabledict')
-rw-r--r-- | dev-python/immutabledict/Manifest | 1 | ||||
-rw-r--r-- | dev-python/immutabledict/immutabledict-4.0.0.ebuild | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/dev-python/immutabledict/Manifest b/dev-python/immutabledict/Manifest index d6c828824449..b0a013aca266 100644 --- a/dev-python/immutabledict/Manifest +++ b/dev-python/immutabledict/Manifest @@ -1 +1,2 @@ DIST immutabledict-3.0.0.tar.gz 4478 BLAKE2B 7b5344f5153d28914da7124c3ca95e9b5c6422788259170de9f301de0a145324157635ca3543be824e9a0ebf93efe99a30dc1c8882bf926927023f2d06e318ad SHA512 90170703c1226e06d6726285005689cf66804ed2b3fda08c0350d9eeca6ec7427bd4004d42168e2f5ae7302acf1d16274a16d0e132bd81fbc8d470d75ec064a5 +DIST immutabledict-4.0.0.tar.gz 5696 BLAKE2B 409b0d130c70fbc03bb261e9a6352bc155f26f9f2ad77d1bc171fb16e1e8f54671b8421b685804d9e6da1b7bb37ec0bc2c5625e3d5aa2e926e65e69436f3843f SHA512 36378a4b5de7c2dd79ccc478972c66769822044948863444380360c22f45031d5de247050fc4f6dac1b8cdb481827e70fbbb74ea410d1481334ab72387d8afd4 diff --git a/dev-python/immutabledict/immutabledict-4.0.0.ebuild b/dev-python/immutabledict/immutabledict-4.0.0.ebuild new file mode 100644 index 000000000000..3884d17d62bb --- /dev/null +++ b/dev-python/immutabledict/immutabledict-4.0.0.ebuild @@ -0,0 +1,21 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=poetry +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 pypi + +DESCRIPTION="An immutable wrapper around dictionaries" +HOMEPAGE=" + https://github.com/corenting/immutabledict/ + https://pypi.org/project/immutabledict/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc64" + +distutils_enable_tests pytest |