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: Thu, 26 Aug 2021 07:09:22
Message-Id: 1629961754.f4440f1c27cad05ef5cc30e67a38e0999193b152.mgorny@gentoo
1 commit: f4440f1c27cad05ef5cc30e67a38e0999193b152
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 26 07:01:41 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 26 07:09:14 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4440f1c
7
8 dev-python/pluggy: Bump to 1.0.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pluggy/Manifest | 1 +
13 dev-python/pluggy/pluggy-1.0.0.ebuild | 22 ++++++++++++++++++++++
14 2 files changed, 23 insertions(+)
15
16 diff --git a/dev-python/pluggy/Manifest b/dev-python/pluggy/Manifest
17 index a3ce44c13b1..37992c1d2be 100644
18 --- a/dev-python/pluggy/Manifest
19 +++ b/dev-python/pluggy/Manifest
20 @@ -1 +1,2 @@
21 DIST pluggy-0.13.1.tar.gz 57962 BLAKE2B aa0a3eec06c988a727bc15511313f12a08bde65da55bcc5e7547a654e3ca8a34c12dfa72166b6a37b524972730f08454b6a0446e071d2710396e868ae3a77151 SHA512 eb747ff341cedacbd90eb20e22ad3d1ddf5588056f14d069f56331f4141a15b7eccaee23ea196d2f4906964ddb77a79b156bbf3ef8c8083e9952c55d13d55f3e
22 +DIST pluggy-1.0.0.tar.gz 51510 BLAKE2B 8107df9a91a843166a602e7518dd1d4167304464a8cc80180b60b03a2ac803be9b1ba190df9189907addd34a92b93a6b271d3d6b7485aa563203ce733c6a656c SHA512 cf0bcbb4330c24ce473614befa19548f33fb39fa0ad094e1eae786202d7adadc28e16499f80ab96b630091765404ca5c5b6f9a55bc605e03514d8ab50cf9ae00
23
24 diff --git a/dev-python/pluggy/pluggy-1.0.0.ebuild b/dev-python/pluggy/pluggy-1.0.0.ebuild
25 new file mode 100644
26 index 00000000000..f6228c328ef
27 --- /dev/null
28 +++ b/dev-python/pluggy/pluggy-1.0.0.ebuild
29 @@ -0,0 +1,22 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="plugin and hook calling mechanisms for python"
39 +HOMEPAGE="https://pluggy.readthedocs.io/ https://github.com/pytest-dev/pluggy https://pypi.org/project/pluggy/"
40 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="MIT"
43 +SLOT="0"
44 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
45 +
46 +RDEPEND="$(python_gen_cond_dep \
47 + 'dev-python/importlib_metadata[${PYTHON_USEDEP}]' pypy3)"
48 +BDEPEND="
49 + dev-python/setuptools_scm[${PYTHON_USEDEP}]"
50 +
51 +distutils_enable_tests pytest