mirror of
git://slackware.nl/current.git
synced 2024-12-26 09:58:59 +01:00
3a02a31f29
a/aaa_libraries-15.1-x86_64-35.txz: Rebuilt. Upgraded: libcap.so.2.73, libgpg-error.so.0.38.0, libcares.so.2.19.2, libexpat.so.1.10.0, libglib-2.0.so.0.8200.4, libgmodule-2.0.so.0.8200.4, libgobject-2.0.so.0.8200.4, libgthread-2.0.so.0.8200.4, libltdl.so.7.3.3. Added (temporarily): libboost_*.so.1.86.0 a/mkinitrd-1.4.11-x86_64-56.txz: Rebuilt. setup.01.mkinitrd: if there's no KERNEL variable or $1 from the command line, then fall back to the newest kernel like the documentation states. Thanks to Mechanikx. d/re2c-4.0.2-x86_64-1.txz: Upgraded. kde/kig-23.08.5-x86_64-7.txz: Rebuilt. Recompiled against boost-1.87.0. kde/kopeninghours-23.08.5-x86_64-7.txz: Rebuilt. Recompiled against boost-1.87.0. l/PyQt5_sip-12.16.1-x86_64-1.txz: Upgraded. l/boost-1.87.0-x86_64-1.txz: Upgraded. Shared library .so-version bump. l/cryfs-0.10.3-x86_64-14.txz: Rebuilt. Patched bundled versioneer.py for Python 3.12. Thanks to shipujin. Recompiled against boost-1.87.0. l/espeak-ng-1.52.0-x86_64-1.txz: Upgraded. l/glib2-2.82.4-x86_64-1.txz: Upgraded. l/sip-6.9.1-x86_64-1.txz: Upgraded. n/bind-9.20.4-x86_64-1.txz: Upgraded. n/proftpd-1.3.8c-x86_64-1.txz: Upgraded. x/fcitx5-chinese-addons-5.1.7-x86_64-2.txz: Rebuilt. Recompiled against boost-1.87.0. x/libime-1.1.9-x86_64-2.txz: Rebuilt. Recompiled against boost-1.87.0.
14 lines
636 B
Diff
14 lines
636 B
Diff
--- ./src/gitversion/versioneer.py.orig 2021-04-02 12:08:08.000000000 -0500
|
|
+++ ./src/gitversion/versioneer.py 2024-12-12 14:11:06.591580472 -0600
|
|
@@ -406,9 +406,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):
|