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/files/, dev-python/pluggy/
Date: Mon, 09 May 2022 15:01:33
Message-Id: 1652108472.63c728ac80404bc78aca8be2b8e6190519d8c099.mgorny@gentoo
1 commit: 63c728ac80404bc78aca8be2b8e6190519d8c099
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 9 13:36:49 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=63c728ac
7
8 dev-python/pluggy: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pluggy/Manifest | 1 -
13 .../files/pluggy-0.12.0-strip-setuptools_scm.patch | 41 ----------------------
14 dev-python/pluggy/pluggy-0.13.1-r2.ebuild | 20 -----------
15 3 files changed, 62 deletions(-)
16
17 diff --git a/dev-python/pluggy/Manifest b/dev-python/pluggy/Manifest
18 index 37992c1d2beb..8bceab03d73b 100644
19 --- a/dev-python/pluggy/Manifest
20 +++ b/dev-python/pluggy/Manifest
21 @@ -1,2 +1 @@
22 -DIST pluggy-0.13.1.tar.gz 57962 BLAKE2B aa0a3eec06c988a727bc15511313f12a08bde65da55bcc5e7547a654e3ca8a34c12dfa72166b6a37b524972730f08454b6a0446e071d2710396e868ae3a77151 SHA512 eb747ff341cedacbd90eb20e22ad3d1ddf5588056f14d069f56331f4141a15b7eccaee23ea196d2f4906964ddb77a79b156bbf3ef8c8083e9952c55d13d55f3e
23 DIST pluggy-1.0.0.tar.gz 51510 BLAKE2B 8107df9a91a843166a602e7518dd1d4167304464a8cc80180b60b03a2ac803be9b1ba190df9189907addd34a92b93a6b271d3d6b7485aa563203ce733c6a656c SHA512 cf0bcbb4330c24ce473614befa19548f33fb39fa0ad094e1eae786202d7adadc28e16499f80ab96b630091765404ca5c5b6f9a55bc605e03514d8ab50cf9ae00
24
25 diff --git a/dev-python/pluggy/files/pluggy-0.12.0-strip-setuptools_scm.patch b/dev-python/pluggy/files/pluggy-0.12.0-strip-setuptools_scm.patch
26 deleted file mode 100644
27 index 6de5905f1103..000000000000
28 --- a/dev-python/pluggy/files/pluggy-0.12.0-strip-setuptools_scm.patch
29 +++ /dev/null
30 @@ -1,41 +0,0 @@
31 -From dc8f1f4371f20ce0f635b46ab0976d6d76ca0c26 Mon Sep 17 00:00:00 2001
32 -From: Georgy Yakovlev <gyakovlev@g.o>
33 -Date: Thu, 25 Jul 2019 18:18:59 -0700
34 -Subject: [PATCH] strip setuptools_scm
35 -
36 ----
37 - setup.py | 7 +++++--
38 - 1 file changed, 5 insertions(+), 2 deletions(-)
39 -
40 -diff --git a/setup.py b/setup.py
41 -index 0f26fa0..9194143 100644
42 ---- a/setup.py
43 -+++ b/setup.py
44 -@@ -1,4 +1,5 @@
45 - from setuptools import setup
46 -+import os
47 -
48 - classifiers = [
49 - "Development Status :: 4 - Beta",
50 -@@ -23,14 +24,16 @@ with open("README.rst", "rb") as fd:
51 - with open("CHANGELOG.rst", "rb") as fd:
52 - long_description += "\n\n" + fd.read().decode("utf-8")
53 -
54 -+with open("src/pluggy/_version.py", 'wt') as fp:
55 -+ fp.write('version = "{}"'.format(os.environ['PV']))
56 -+
57 -
58 - def main():
59 - setup(
60 - name="pluggy",
61 - description="plugin and hook calling mechanisms for python",
62 - long_description=long_description,
63 -- use_scm_version={"write_to": "src/pluggy/_version.py"},
64 -- setup_requires=["setuptools-scm"],
65 -+ version=os.environ['PV'],
66 - license="MIT license",
67 - platforms=["unix", "linux", "osx", "win32"],
68 - author="Holger Krekel",
69 ---
70 -2.22.0
71 -
72
73 diff --git a/dev-python/pluggy/pluggy-0.13.1-r2.ebuild b/dev-python/pluggy/pluggy-0.13.1-r2.ebuild
74 deleted file mode 100644
75 index 0c15916eaec1..000000000000
76 --- a/dev-python/pluggy/pluggy-0.13.1-r2.ebuild
77 +++ /dev/null
78 @@ -1,20 +0,0 @@
79 -# Copyright 1999-2021 Gentoo Authors
80 -# Distributed under the terms of the GNU General Public License v2
81 -
82 -EAPI=7
83 -
84 -PYTHON_COMPAT=( python3_{7..10} pypy3 )
85 -
86 -inherit distutils-r1
87 -
88 -DESCRIPTION="plugin and hook calling mechanisms for python"
89 -HOMEPAGE="https://pluggy.readthedocs.io/ https://github.com/pytest-dev/pluggy https://pypi.org/project/pluggy/"
90 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
91 -
92 -LICENSE="MIT"
93 -SLOT="0"
94 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
95 -
96 -PATCHES=( "${FILESDIR}/${PN}"-0.12.0-strip-setuptools_scm.patch )
97 -
98 -distutils_enable_tests pytest