Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pluginbase/
Date: Mon, 27 Feb 2023 00:41:13
Message-Id: 1677457868.2f7bd19df1692cf627a1dc2806110d7749c4ea21.sam@gentoo
1 commit: 2f7bd19df1692cf627a1dc2806110d7749c4ea21
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 27 00:29:28 2023 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 27 00:31:08 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f7bd19d
7
8 dev-python/pluginbase: EAPI 8, PEP517, pypi.eclass
9
10 Bug: https://bugs.gentoo.org/896812
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-python/pluginbase/pluginbase-1.0.1-r1.ebuild | 24 ++++++++++++++++++++++++
14 1 file changed, 24 insertions(+)
15
16 diff --git a/dev-python/pluginbase/pluginbase-1.0.1-r1.ebuild b/dev-python/pluginbase/pluginbase-1.0.1-r1.ebuild
17 new file mode 100644
18 index 000000000000..7b3d8dd18f94
19 --- /dev/null
20 +++ b/dev-python/pluginbase/pluginbase-1.0.1-r1.ebuild
21 @@ -0,0 +1,24 @@
22 +# Copyright 1999-2023 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=8
26 +
27 +DISTUTILS_USE_PEP517=setuptools
28 +PYTHON_COMPAT=( python3_{9..11} )
29 +
30 +inherit distutils-r1 pypi
31 +
32 +DESCRIPTION="Support library for building plugins sytems in Python"
33 +HOMEPAGE="https://github.com/mitsuhiko/pluginbase"
34 +
35 +LICENSE="BSD"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +
39 +distutils_enable_sphinx docs
40 +distutils_enable_tests pytest
41 +
42 +src_test() {
43 + cd tests || die
44 + distutils-r1_src_test
45 +}