Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/trove-classifiers/
Date: Wed, 29 Jun 2022 06:19:34
Message-Id: 1656483565.ba6e0717ac8457b3b5b78a24abbea6b96d6083a4.mgorny@gentoo
1 commit: ba6e0717ac8457b3b5b78a24abbea6b96d6083a4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 05:51:22 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 06:19:25 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba6e0717
7
8 dev-python/trove-classifiers: Bump to 2022.6.26
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/trove-classifiers/Manifest | 1 +
13 .../trove-classifiers-2022.6.26.ebuild | 34 ++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/dev-python/trove-classifiers/Manifest b/dev-python/trove-classifiers/Manifest
17 index ff70d51e74ac..4132c262b12f 100644
18 --- a/dev-python/trove-classifiers/Manifest
19 +++ b/dev-python/trove-classifiers/Manifest
20 @@ -1 +1,2 @@
21 DIST trove-classifiers-2022.6.23.gh.tar.gz 14950 BLAKE2B 7203b8edb6f8a8886371a60f3c273b02b7fe045230a3a0c89a7282a896e513535a47fe06834fd6e33b98c480695b69be524dea1402f463f3c82fc80ddf8ac320 SHA512 c2c186b5d13f626a43f29a1eff6ebf2f17f8240af554f27ffdf05b506d428dd59582e7357a85b62f94714e024ae98ea216487726526639371c24c6b46b96df4e
22 +DIST trove-classifiers-2022.6.26.gh.tar.gz 14966 BLAKE2B 360a8a01d710456a7edf2f56ce5ca4645e0f5e79db09087a888556e6555a15fd6f6b0aa3112bf0f6c2652759fce93e76357775ca57e53615dd99c4f1b929303d SHA512 1857d53e7731ada3ca811222bab2d0734da0e18fdf36dcada166bd15b1f397cf8575963d8432eb2d0de571646da6b0b18299af3bb7e44fb225586aa76f6de35f
23
24 diff --git a/dev-python/trove-classifiers/trove-classifiers-2022.6.26.ebuild b/dev-python/trove-classifiers/trove-classifiers-2022.6.26.ebuild
25 new file mode 100644
26 index 000000000000..964617661415
27 --- /dev/null
28 +++ b/dev-python/trove-classifiers/trove-classifiers-2022.6.26.ebuild
29 @@ -0,0 +1,34 @@
30 +# Copyright 2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( pypy3 python3_{8..11} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Canonical source for classifiers on PyPI (pypi.org)"
41 +HOMEPAGE="
42 + https://github.com/pypa/trove-classifiers/
43 + https://pypi.org/project/trove-classifiers/
44 +"
45 +SRC_URI="
46 + https://github.com/pypa/trove-classifiers/archive/${PV}.tar.gz
47 + -> ${P}.gh.tar.gz
48 +"
49 +
50 +LICENSE="Apache-2.0"
51 +SLOT="0"
52 +KEYWORDS="~amd64"
53 +
54 +BDEPEND="
55 + dev-python/calver[${PYTHON_USEDEP}]
56 +"
57 +
58 +distutils_enable_tests pytest
59 +
60 +python_test() {
61 + epytest
62 + "${EPYTHON}" -m tests.lib || die
63 +}