Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/axisregistry/, dev-python/axisregistry/files/
Date: Thu, 30 Jun 2022 17:39:48
Message-Id: 1656585639.6c96c09ff21b606009ffec2a81b41b9aebbaf33b.flow@gentoo
1 commit: 6c96c09ff21b606009ffec2a81b41b9aebbaf33b
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Thu Jun 30 10:40:39 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 30 10:40:39 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6c96c09f
7
8 dev-python/axisregistry: redo the patch
9
10 Closes: https://bugs.gentoo.org/855323
11 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
12
13 dev-python/axisregistry/axisregistry-0.3.2.ebuild | 2 +-
14 .../axisregistry-0.3.2-remove-setuptools_scm-constraint.patch | 10 ++++++++++
15 2 files changed, 11 insertions(+), 1 deletion(-)
16
17 diff --git a/dev-python/axisregistry/axisregistry-0.3.2.ebuild b/dev-python/axisregistry/axisregistry-0.3.2.ebuild
18 index 0339faa33..39fdb1de2 100644
19 --- a/dev-python/axisregistry/axisregistry-0.3.2.ebuild
20 +++ b/dev-python/axisregistry/axisregistry-0.3.2.ebuild
21 @@ -24,7 +24,7 @@ DEPEND="
22 >=dev-python/setuptools_scm-4[${PYTHON_USEDEP}]
23 "
24
25 -PATCHES=( "${FILESDIR}/${PN}-0.2.0-remove-setuptools_scm-constraint.patch" )
26 +PATCHES=( "${FILESDIR}/${P}-remove-setuptools_scm-constraint.patch" )
27
28 distutils_enable_tests pytest
29
30
31 diff --git a/dev-python/axisregistry/files/axisregistry-0.3.2-remove-setuptools_scm-constraint.patch b/dev-python/axisregistry/files/axisregistry-0.3.2-remove-setuptools_scm-constraint.patch
32 new file mode 100644
33 index 000000000..c50745baa
34 --- /dev/null
35 +++ b/dev-python/axisregistry/files/axisregistry-0.3.2-remove-setuptools_scm-constraint.patch
36 @@ -0,0 +1,10 @@
37 +--- a/setup.py
38 ++++ b/setup.py
39 +@@ -42,6 +42,6 @@
40 + "Programming Language :: Python :: 3",
41 + ],
42 + python_requires=">=3.7",
43 +- setup_requires=["setuptools_scm>=4,<6.1"],
44 ++ setup_requires=["setuptools_scm>=4"],
45 + install_requires=["protobuf"],
46 + )