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/pluggy/
Date: Mon, 09 May 2022 15:01:35
Message-Id: 1652108472.48bd6691289e04140bb14e272dbb95b64c77012d.mgorny@gentoo
1 commit: 48bd6691289e04140bb14e272dbb95b64c77012d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 9 13:37:39 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 9 15:01:12 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48bd6691
7
8 dev-python/pluggy: Use PEP517 build
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pluggy/pluggy-1.0.0-r2.ebuild | 27 +++++++++++++++++++++++++++
13 1 file changed, 27 insertions(+)
14
15 diff --git a/dev-python/pluggy/pluggy-1.0.0-r2.ebuild b/dev-python/pluggy/pluggy-1.0.0-r2.ebuild
16 new file mode 100644
17 index 000000000000..8655fc6560ad
18 --- /dev/null
19 +++ b/dev-python/pluggy/pluggy-1.0.0-r2.ebuild
20 @@ -0,0 +1,27 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +DISTUTILS_USE_PEP517=setuptools
27 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Plugin and hook calling mechanisms for Python"
32 +HOMEPAGE="
33 + https://pluggy.readthedocs.io/
34 + https://github.com/pytest-dev/pluggy/
35 + https://pypi.org/project/pluggy/
36 +"
37 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
38 +
39 +LICENSE="MIT"
40 +SLOT="0"
41 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
42 +
43 +BDEPEND="
44 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
45 +"
46 +
47 +distutils_enable_tests pytest