diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-04-09 10:22:50 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2023-04-18 15:40:54 +0200 |
commit | 66d0c12233c3edce6b02c8c790097a3cd0b2c91d (patch) | |
tree | 0d5b0b116fa98cd02775b412dd7b08cbc877fc64 | |
parent | net-libs/libmicrohttpd: remove unused patch (diff) | |
download | gentoo-66d0c122.tar.gz gentoo-66d0c122.tar.bz2 gentoo-66d0c122.zip |
dev-util/pkgcheck: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/30527
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
-rw-r--r-- | dev-util/pkgcheck/files/pkgcheck-0.10.21-fix-scm.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/dev-util/pkgcheck/files/pkgcheck-0.10.21-fix-scm.patch b/dev-util/pkgcheck/files/pkgcheck-0.10.21-fix-scm.patch deleted file mode 100644 index 387da2374107..000000000000 --- a/dev-util/pkgcheck/files/pkgcheck-0.10.21-fix-scm.patch +++ /dev/null @@ -1,37 +0,0 @@ -diff --git a/src/pkgcheck/checks/python.py b/src/pkgcheck/checks/python.py -index 291a56b4..19b87ef5 100644 ---- a/src/pkgcheck/checks/python.py -+++ b/src/pkgcheck/checks/python.py -@@ -234,16 +234,16 @@ class PythonAnyMismatchedDepHasVersionCheck(results.VersionResult, results.Warni - - - class PythonMissingSCMDependency(results.VersionResult, results.Warning): -- """Package is missing BDEPEND on setuptools_scm or alike. -+ """Package is missing BDEPEND on setuptools-scm or alike. - - Packages which define ``SETUPTOOLS_SCM_PRETEND_VERSION`` should BDEPEND -- on ``dev-python/setuptools_scm`` or a similar package [#]_. -+ on ``dev-python/setuptools-scm`` or a similar package [#]_. - - .. [#] https://projects.gentoo.org/python/guide/distutils.html#setuptools-scm-flit-scm-hatch-vcs-and-snapshots - """ - - desc = ( -- "defines SETUPTOOLS_SCM_PRETEND_VERSION but is missing BDEPEND on setuptools_scm or alike" -+ "defines SETUPTOOLS_SCM_PRETEND_VERSION but is missing BDEPEND on setuptools-scm or alike" - ) - - -@@ -291,8 +291,10 @@ class PythonCheck(Check): - - setuptools_scm = frozenset( - { -- "dev-python/setuptools_scm", -- "dev-python/flit_scm", -+ "dev-python/setuptools-scm", -+ "dev-python/setuptools_scm", # legacy old name -+ "dev-python/flit-scm", -+ "dev-python/flit_scm", # legacy old name - "dev-python/hatch-vcs", - } - ) |