python3-constantly: rebuild for Python 3.12
This commit is contained in:
parent
dc1fe88ae1
commit
8901f29f10
14
srcpkgs/python3-constantly/patches/py312.patch
Normal file
14
srcpkgs/python3-constantly/patches/py312.patch
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
--- a/versioneer.py
|
||||||
|
+++ b/versioneer.py
|
||||||
|
@@ -396,9 +396,9 @@
|
||||||
|
# configparser.NoOptionError (if it lacks "VCS="). See the docstring at
|
||||||
|
# the top of versioneer.py for instructions on writing your setup.cfg .
|
||||||
|
setup_cfg = os.path.join(root, "setup.cfg")
|
||||||
|
- parser = configparser.SafeConfigParser()
|
||||||
|
+ parser = configparser.ConfigParser()
|
||||||
|
with open(setup_cfg, "r") as f:
|
||||||
|
- parser.readfp(f)
|
||||||
|
+ parser.read_file(f)
|
||||||
|
VCS = parser.get("versioneer", "VCS") # mandatory
|
||||||
|
|
||||||
|
def get(parser, name):
|
@ -1,7 +1,7 @@
|
|||||||
# Template file for 'python3-constantly'
|
# Template file for 'python3-constantly'
|
||||||
pkgname=python3-constantly
|
pkgname=python3-constantly
|
||||||
version=15.1.0
|
version=15.1.0
|
||||||
revision=7
|
revision=8
|
||||||
build_style=python3-module
|
build_style=python3-module
|
||||||
hostmakedepends="python3-setuptools"
|
hostmakedepends="python3-setuptools"
|
||||||
depends="python3"
|
depends="python3"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user