diff options
| author | Michał Górny <mgorny@gentoo.org> | 2025-05-10 07:06:39 +0200 |
|---|---|---|
| committer | Michał Górny <mgorny@gentoo.org> | 2025-05-10 09:41:45 +0200 |
| commit | d75fd82f628fe7cdee31b7961d7adf351131468c (patch) | |
| tree | e5143c549330a1450c37c1b29e330c1b2da12884 /dev-python/trove-classifiers | |
| parent | 0f889069457bb7ab161f54252175713fb09ebec7 (diff) | |
dev-python/trove-classifiers: Bump to 2025.5.9.12
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/trove-classifiers')
| -rw-r--r-- | dev-python/trove-classifiers/Manifest | 1 | ||||
| -rw-r--r-- | dev-python/trove-classifiers/trove-classifiers-2025.5.9.12.ebuild | 45 |
2 files changed, 46 insertions, 0 deletions
diff --git a/dev-python/trove-classifiers/Manifest b/dev-python/trove-classifiers/Manifest index 757e93701a30..b6a2647ec101 100644 --- a/dev-python/trove-classifiers/Manifest +++ b/dev-python/trove-classifiers/Manifest @@ -3,3 +3,4 @@ DIST trove_classifiers-2025.4.28.22.tar.gz 16883 BLAKE2B 9598b19874f7deaeb15333a DIST trove_classifiers-2025.5.1.12.tar.gz 16876 BLAKE2B 27ae91479d2a811978b3f1447568f5849341a7fda5c825ebf0dd0502d85f206d63f4687463708031637da4313d0182abc05b6b710a6f32fd714167ac766a587d SHA512 af3c0ee51e7ce3e7ec0eb1fd901ac3d0c02f6c0ba1c77d3ba66e0770bf5300144f636dcbf608f046a21789cfc780f651be222b7d23f359a672fde0210af966b5 DIST trove_classifiers-2025.5.7.19.tar.gz 16891 BLAKE2B 42c1d72cb1f70137e4d2af4b2a4f85811b0aab0a325793865afb51511bf00d7d5f7f5cfeeb1c887a630fdbe8e437987396cb9a9eeefc4d2cd56e5ecbfab0aab3 SHA512 ab35ab9f627244ce68d9db45684018392bd91d9b3f001be7e41ec8bf061fb86aee904347813db90afd2b94325d74665fea85994f29b144753c409642e8d9fdda DIST trove_classifiers-2025.5.8.15.tar.gz 16870 BLAKE2B d52e632a6a9e563c2ab7d9d5bf46baa8168d86677c98b3447e1b7c8c9f92c8a33707b4c2603dcbf546ffd87819a1362f23a60b2e299c5356480ce0f5660a3157 SHA512 81e96cd33997cb2574d05a553a0402f02d320d5fe2234a7c92d23d5bf460a5603bbdaa19ea37ecbbe81d6e2c8ef86bb936d74817514482ef551d85d103761858 +DIST trove_classifiers-2025.5.9.12.tar.gz 16940 BLAKE2B f6143f341d280eca611269c1a04b7f795d8f8733e97518d81d5872b8e1e13f745f7428737993a5c50285de24f56f899737d05fe073c683ddd69765b6081a6ebe SHA512 ee858f52c08b867fe4845ebb19f9b431308d216b5313e2bc030d63340860205d40125ef6cee218f734ccd49e5ae36011c8e3415f03d0ace182cb518ed5f2318d diff --git a/dev-python/trove-classifiers/trove-classifiers-2025.5.9.12.ebuild b/dev-python/trove-classifiers/trove-classifiers-2025.5.9.12.ebuild new file mode 100644 index 000000000000..7a4e3c028024 --- /dev/null +++ b/dev-python/trove-classifiers/trove-classifiers-2025.5.9.12.ebuild @@ -0,0 +1,45 @@ +# Copyright 2022-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=flit +PYTHON_COMPAT=( pypy3_11 python3_{11..14} python3_1{3t,4t} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Canonical source for classifiers on PyPI (pypi.org)" +HOMEPAGE=" + https://github.com/pypa/trove-classifiers/ + https://pypi.org/project/trove-classifiers/ +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" + +distutils_enable_tests pytest + +src_configure() { + grep -q 'build-backend = "setuptools' pyproject.toml || + die "Upstream changed build-backend, recheck" + # write a custom pyproject.toml to ease hatchling bootstrap + cat > pyproject.toml <<-EOF || die + [build-system] + requires = ["flit_core >=3.2,<4"] + build-backend = "flit_core.buildapi" + + [project] + name = "trove-classifiers" + version = "${PV}" + description = "Canonical source for classifiers on PyPI (pypi.org)." + + [project.scripts] + trove-classifiers = "trove_classifiers.__main__:cli" + EOF +} + +python_test() { + epytest + "${EPYTHON}" -m tests.lib || die +} |
