summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/pluggy/Manifest1
-rw-r--r--dev-python/pluggy/files/pluggy-0.12.0-strip-setuptools_scm.patch41
-rw-r--r--dev-python/pluggy/pluggy-0.13.1-r2.ebuild20
3 files changed, 0 insertions, 62 deletions
diff --git a/dev-python/pluggy/Manifest b/dev-python/pluggy/Manifest
index 37992c1d2beb..8bceab03d73b 100644
--- a/dev-python/pluggy/Manifest
+++ b/dev-python/pluggy/Manifest
@@ -1,2 +1 @@
-DIST pluggy-0.13.1.tar.gz 57962 BLAKE2B aa0a3eec06c988a727bc15511313f12a08bde65da55bcc5e7547a654e3ca8a34c12dfa72166b6a37b524972730f08454b6a0446e071d2710396e868ae3a77151 SHA512 eb747ff341cedacbd90eb20e22ad3d1ddf5588056f14d069f56331f4141a15b7eccaee23ea196d2f4906964ddb77a79b156bbf3ef8c8083e9952c55d13d55f3e
DIST pluggy-1.0.0.tar.gz 51510 BLAKE2B 8107df9a91a843166a602e7518dd1d4167304464a8cc80180b60b03a2ac803be9b1ba190df9189907addd34a92b93a6b271d3d6b7485aa563203ce733c6a656c SHA512 cf0bcbb4330c24ce473614befa19548f33fb39fa0ad094e1eae786202d7adadc28e16499f80ab96b630091765404ca5c5b6f9a55bc605e03514d8ab50cf9ae00
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
deleted file mode 100644
index 6de5905f1103..000000000000
--- a/dev-python/pluggy/files/pluggy-0.12.0-strip-setuptools_scm.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From dc8f1f4371f20ce0f635b46ab0976d6d76ca0c26 Mon Sep 17 00:00:00 2001
-From: Georgy Yakovlev <gyakovlev@gentoo.org>
-Date: Thu, 25 Jul 2019 18:18:59 -0700
-Subject: [PATCH] strip setuptools_scm
-
----
- setup.py | 7 +++++--
- 1 file changed, 5 insertions(+), 2 deletions(-)
-
-diff --git a/setup.py b/setup.py
-index 0f26fa0..9194143 100644
---- a/setup.py
-+++ b/setup.py
-@@ -1,4 +1,5 @@
- from setuptools import setup
-+import os
-
- classifiers = [
- "Development Status :: 4 - Beta",
-@@ -23,14 +24,16 @@ with open("README.rst", "rb") as fd:
- with open("CHANGELOG.rst", "rb") as fd:
- long_description += "\n\n" + fd.read().decode("utf-8")
-
-+with open("src/pluggy/_version.py", 'wt') as fp:
-+ fp.write('version = "{}"'.format(os.environ['PV']))
-+
-
- def main():
- setup(
- name="pluggy",
- description="plugin and hook calling mechanisms for python",
- long_description=long_description,
-- use_scm_version={"write_to": "src/pluggy/_version.py"},
-- setup_requires=["setuptools-scm"],
-+ version=os.environ['PV'],
- license="MIT license",
- platforms=["unix", "linux", "osx", "win32"],
- author="Holger Krekel",
---
-2.22.0
-
diff --git a/dev-python/pluggy/pluggy-0.13.1-r2.ebuild b/dev-python/pluggy/pluggy-0.13.1-r2.ebuild
deleted file mode 100644
index 0c15916eaec1..000000000000
--- a/dev-python/pluggy/pluggy-0.13.1-r2.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="plugin and hook calling mechanisms for python"
-HOMEPAGE="https://pluggy.readthedocs.io/ https://github.com/pytest-dev/pluggy https://pypi.org/project/pluggy/"
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
-
-PATCHES=( "${FILESDIR}/${PN}"-0.12.0-strip-setuptools_scm.patch )
-
-distutils_enable_tests pytest