autoconf-archive (20220903-3)
[PTS] [DDPO]
COMMITS: VCS has seen 7 commits since the debian-20220903-2 tag
- Git: https://salsa.debian.org/debian/autoconf-archive.git
-
- Branch: master
- Path: debian/changelog
- Repo size: 688128
- Browser: https://salsa.debian.org/debian/autoconf-archive
- Last scan: 2024-09-16 04:01:18+00
- Next scan: 2024-09-22 03:18:00+00
- Merge requests: 1
- Debian changelog in Git:
autoconf-archive (20220903-3) unstable; urgency=medium
* Bug fix: "ax_python_devel serial 32 fails with current Sid python3",
thanks to Jerome Benoit (Closes: #1020747).
-- Bastien Roucariès <rouca@debian.org> Fri, 18 Nov 2022 10:39:40 +0000
- This branch is 7 commits ahead of tag debian-20220903-2
- Git log:
commit 5b64aa2fc758963477e4f04aa13e6ded4477eda9
Author: Bastien Roucariès <rouca@debian.org>
Date: Fri Nov 18 10:39:49 2022 +0000
Finalize changelog
commit 00534352896ca273cb310a25b8e9158dc8e3edb7
Merge: 15a7db8 f6e5613
Author: Bastien Roucariès <rouca@debian.org>
Date: Fri Nov 18 10:38:10 2022 +0000
merge patched into master
commit f6e5613e23e5af1894435ec7f73cb357e3df8bed
Author: Jerome Benoit <calculus@rezozer.net>
Date: Fri Nov 18 10:26:40 2022 +0000
Fix ax_python_devel serial 32 fails with current python3
The faulty code was introduce in commit df89f6cdaade38f3c1c9987be0c5a57c96fc1730
https://github.com/autoconf-archive/autoconf-archive/commit/df89f6cdaade38f3c1c9987be0c5a57c96fc1730
The current code tuple(sys.version_info) gives the 5-tuple (3, 10, 7, 'final', 0) while
the former code sys.version.split()[0] would give the 3-tuple (3, 10, 7).
So, at first glance, the current code tuple(sys.version_info) should be replaced by
tuple(sys.version_info)[:3].
A patch that applied to the current ax_python_devel serial 32 is attached.
forwarded: https://github.com/autoconf-archive/autoconf-archive/pull/267
bug: https://github.com/autoconf-archive/autoconf-archive/pull/267
bug-debian: https://bugs.debian.org/1020747
commit 15a7db8fee0a6522b7e8b4f684a19128476f05a8
Merge: beb9fc4 8ae73c1
Author: Bastien Roucariès <rouca@debian.org>
Date: Fri Nov 18 10:33:16 2022 +0000
merge patched into master
commit 8ae73c1894a0436bb7193713480d385756498c46
Author: Jerome Benoit <calculus@rezozer.net>
Date: Fri Nov 18 10:26:40 2022 +0000
Fix ax_python_devel serial 32 fails with current python3
The faulty code was introduce in commit df89f6cdaade38f3c1c9987be0c5a57c96fc1730
https://github.com/autoconf-archive/autoconf-archive/commit/df89f6cdaade38f3c1c9987be0c5a57c96fc1730
The current code tuple(sys.version_info) gives the 5-tuple (3, 10, 7, 'final', 0) while
the former code sys.version.split()[0] would give the 3-tuple (3, 10, 7).
So, at first glance, the current code tuple(sys.version_info) should be replaced by
tuple(sys.version_info)[:3].
A patch that applied to the current ax_python_devel serial 32 is attached.
commit beb9fc48bb3173aad99d6f2e2f55aeeebfbe01e5
Merge: 8f0c3ac 08382db
Author: Bastien Roucariès <rouca@debian.org>
Date: Fri Nov 18 10:30:08 2022 +0000
merge patched into master
commit 08382db876953494661cbdea0235cc4693a6475c
Author: Jerome Benoit <calculus@rezozer.net>
Date: Fri Nov 18 10:26:40 2022 +0000
Fix ax_python_devel serial 32 fails with current python3
The faulty code was introduce in commit df89f6cdaade38f3c1c9987be0c5a57c96fc1730
https://github.com/autoconf-archive/autoconf-archive/commit/df89f6cdaade38f3c1c9987be0c5a57c96fc1730
The current code tuple(sys.version_info) gives the 5-tuple (3, 10, 7, 'final', 0) while
the former code sys.version.split()[0] would give the 3-tuple (3, 10, 7).
So, at first glance, the current code tuple(sys.version_info) should be replaced by
tuple(sys.version_info)[:3].
A patch that applied to the current ax_python_devel serial 32 is attached.