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/apipkg/
Date: Wed, 08 Jun 2022 05:35:37
Message-Id: 1654666494.ee056ac00e8383f1c3ac6d3134c71a6282e6fc5b.mgorny@gentoo
1 commit: ee056ac00e8383f1c3ac6d3134c71a6282e6fc5b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 8 04:56:28 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 8 05:34:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee056ac0
7
8 dev-python/apipkg: Bump to 3.0.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/apipkg/Manifest | 1 +
13 dev-python/apipkg/apipkg-3.0.0.ebuild | 32 ++++++++++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/dev-python/apipkg/Manifest b/dev-python/apipkg/Manifest
17 index 05744dab1b03..54128581fefe 100644
18 --- a/dev-python/apipkg/Manifest
19 +++ b/dev-python/apipkg/Manifest
20 @@ -1,2 +1,3 @@
21 DIST apipkg-2.1.0.gh.tar.gz 13489 BLAKE2B 2ad670c6971b3fd6f56e35d3dceed25cd3950efbd9fb562595ea4313d50e9711a6099458eba3720dd5405335bef0ad1932bb2ad1e6db65c93df9f3b57b5caf56 SHA512 af74217f283be6dd1a674e12a2fc95739f90d9783caa095eccdea814a1da70b3cc1f756c2e150e5e5e75d1207857071aff97aa10bb2eadc83e04c42954c47df5
22 DIST apipkg-2.1.1.gh.tar.gz 13541 BLAKE2B bba34b21d967512e2b08a1726dd97dfb432c3f4083661fd9f237948e5c962ebacf7ddf73ef7a34b24ee0a8481d203496504146b5b7627b195f1654fad338061e SHA512 be403398361bd88e04a676346e92df51fb410340858ca446a6a50af565183f15a88efd3d3bdcaa4d042680db35633c780466f4e8b4c9523cd0956fd04f84947a
23 +DIST apipkg-3.0.0.gh.tar.gz 13798 BLAKE2B 1061004d8efcd0b76c20eb72a2e36f784c4ba586bc32c99a904ceb9cf545460123fc763f40cb664cf48769e9e777dbf276d523a0ebf44a354f05f9214b97054b SHA512 389ab58df6ecf28c37c485affb8fa94e76e91205d1249913ab1ce2b602739b1635904827a9ab6a215c4e80aecf6a1e7a0e8dc1fe0c32cc65a09dcca23b69b0a7
24
25 diff --git a/dev-python/apipkg/apipkg-3.0.0.ebuild b/dev-python/apipkg/apipkg-3.0.0.ebuild
26 new file mode 100644
27 index 000000000000..991e766a64d0
28 --- /dev/null
29 +++ b/dev-python/apipkg/apipkg-3.0.0.ebuild
30 @@ -0,0 +1,32 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=hatchling
37 +PYTHON_COMPAT=( python3_{8..11} pypy3 )
38 +
39 +inherit distutils-r1
40 +
41 +MY_P=${P/_/}
42 +DESCRIPTION="Namespace control and lazy-import mechanism"
43 +HOMEPAGE="
44 + https://github.com/pytest-dev/apipkg/
45 + https://pypi.org/project/apipkg/
46 +"
47 +SRC_URI="
48 + https://github.com/pytest-dev/apipkg/archive/v${PV}.tar.gz
49 + -> ${P}.gh.tar.gz
50 +"
51 +
52 +LICENSE="MIT"
53 +SLOT="0"
54 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
55 +
56 +BDEPEND="
57 + dev-python/hatch-vcs[${PYTHON_USEDEP}]
58 +"
59 +
60 +distutils_enable_tests pytest
61 +
62 +export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}