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/atpublic/
Date: Sat, 02 Jan 2021 09:16:52
Message-Id: 1609578586.5364835e5158f644c9beba71945dba7af7aecae5.mgorny@gentoo
1 commit: 5364835e5158f644c9beba71945dba7af7aecae5
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 2 08:52:53 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 2 09:09:46 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5364835e
7
8 dev-python/atpublic: Bump to 2.1.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/atpublic/Manifest | 1 +
13 dev-python/atpublic/atpublic-2.1.2.ebuild | 29 +++++++++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/dev-python/atpublic/Manifest b/dev-python/atpublic/Manifest
17 index a613070f15a..33894b1b4cb 100644
18 --- a/dev-python/atpublic/Manifest
19 +++ b/dev-python/atpublic/Manifest
20 @@ -1 +1,2 @@
21 DIST atpublic-1.0.tar.gz 13611 BLAKE2B b5ce4cbbe950943c001e25c3f0c1fe6c25a99a96e4c630844a409cb0ae9a2e7d8fae8d010864364bb2bc948ce78ed17bef5c1f1ca1435faca439f62521bcc719 SHA512 f9e6f7bbbe12d86df5bc849c432e789fb55c6d19b9d6b3fb2462ea38aa8ad6602504a30a95ec14e001f62709ae5e11ae29258b9cb7a71eaa48879f9cb0cb19d8
22 +DIST atpublic-2.1.2.tar.gz 16298 BLAKE2B c388743e2348b9143926f4c3a5e7908382799b6728d1768fcc5779eae93d45b5741ec080b5255de39be14a2a3a9e2fecc657802f91df1df8e626910582785a9b SHA512 cfde028756f56c7ca83b91e7d8653cee4575fb581669ee02c56a08c92ae2a6c1e51db76b6def1959354d3e931418a4dd09b78236268170d8c79620477836fe08
23
24 diff --git a/dev-python/atpublic/atpublic-2.1.2.ebuild b/dev-python/atpublic/atpublic-2.1.2.ebuild
25 new file mode 100644
26 index 00000000000..81e2361f4d0
27 --- /dev/null
28 +++ b/dev-python/atpublic/atpublic-2.1.2.ebuild
29 @@ -0,0 +1,29 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{7..9} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="A decorator to populate __all__ and the module globals"
39 +HOMEPAGE="https://gitlab.com/warsaw/public"
40 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="Apache-2.0"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +
46 +RDEPEND="
47 + $(python_gen_cond_dep '
48 + dev-python/typing-extensions[${PYTHON_USEDEP}]
49 + ' python3_7)"
50 +BDEPEND="
51 + test? ( dev-python/sybil[${PYTHON_USEDEP}] )"
52 +
53 +distutils_enable_tests pytest
54 +
55 +src_prepare() {
56 + sed -i -e 's:--cov=public::' setup.cfg || die
57 + distutils-r1_src_prepare
58 +}