Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/atpublic/
Date: Sun, 28 Aug 2022 20:15:58
Message-Id: 1661717744.bbcdb3b723d626191d216eec28812181ba002636.arthurzam@gentoo
1 commit: bbcdb3b723d626191d216eec28812181ba002636
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 28 20:04:59 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 28 20:15:44 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbcdb3b7
7
8 dev-python/atpublic: add 3.1
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/atpublic/Manifest | 1 +
13 dev-python/atpublic/atpublic-3.1.ebuild | 33 +++++++++++++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/dev-python/atpublic/Manifest b/dev-python/atpublic/Manifest
17 index 0b40a3da9911..1557c5fda80b 100644
18 --- a/dev-python/atpublic/Manifest
19 +++ b/dev-python/atpublic/Manifest
20 @@ -1 +1,2 @@
21 DIST atpublic-3.0.1.tar.gz 14131 BLAKE2B 3912c23c5ee575d7bdec1b598f1f360c54296211600115a413d97c73751b5301b2f3d22152aa62d4d7ac6da9a6cf4202a2deba1de374407ede4358620ee97391 SHA512 02c4af8aa02040bba2f09b852e17a0a90c0a6dce8fdabc8362a67c2f326b68369bf5f12f91291f9ff3395685530592561b132f09f9869867516592bd092e0e38
22 +DIST atpublic-3.1.tar.gz 14328 BLAKE2B f163eff6e955412586517617fb28cd090fb37fdce013973ccbc539b1ae4c4a3c8511f08b026678a9e0310c8d245cb52c932422de65c2a70293d070387a413cac SHA512 93778e4ab7e109b2692a385bab180bfb709a01f0bbab5c24308635408d4bc6ea37144375b31f81a36288ec7993971e40b67cfd0f545f72b011b86ceb6d108ffe
23
24 diff --git a/dev-python/atpublic/atpublic-3.1.ebuild b/dev-python/atpublic/atpublic-3.1.ebuild
25 new file mode 100644
26 index 000000000000..3985ada854dc
27 --- /dev/null
28 +++ b/dev-python/atpublic/atpublic-3.1.ebuild
29 @@ -0,0 +1,33 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=pdm
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="A decorator to populate __all__ and the module globals"
41 +HOMEPAGE="
42 + https://gitlab.com/warsaw/public/
43 + https://pypi.org/project/atpublic/
44 +"
45 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 +
47 +LICENSE="Apache-2.0"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +
51 +BDEPEND="
52 + test? (
53 + dev-python/sybil[${PYTHON_USEDEP}]
54 + )
55 +"
56 +
57 +distutils_enable_tests pytest
58 +
59 +src_prepare() {
60 + sed -i -e '/addopts/d' pyproject.toml || die
61 + distutils-r1_src_prepare
62 +}