Skip to content

Commit 8b88c5e

Browse files
update to 145276a072ae058bac42ee43a4235cd4eda2726b (nightly)
1 parent 91337ed commit 8b88c5e

8 files changed

+28
-16
lines changed

changelogs/nightly/jammy

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
python3.14 (3.14.0~a3-173-g145276a072-1+jammy1) jammy; urgency=medium
2+
3+
* Update to v3.14.0a3-173-g145276a072.
4+
5+
-- Anthony Sottile (deadsnakes) <[email protected]> Tue, 07 Jan 2025 08:52:52 +0000
6+
17
python3.14 (3.14.0~a3-154-gaef52ca8b3-1+jammy1) jammy; urgency=medium
28

39
* Update to v3.14.0a3-154-gaef52ca8b3.

changelogs/nightly/noble

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
python3.14 (3.14.0~a3-173-g145276a072-1+noble1) noble; urgency=medium
2+
3+
* Update to v3.14.0a3-173-g145276a072.
4+
5+
-- Anthony Sottile (deadsnakes) <[email protected]> Tue, 07 Jan 2025 08:52:52 +0000
6+
17
python3.14 (3.14.0~a3-154-gaef52ca8b3-1+noble1) noble; urgency=medium
28

39
* Update to v3.14.0a3-154-gaef52ca8b3.

cpython

Submodule cpython updated 70 files

patches/disable-sem-check.diff

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Subject: disable-sem-check
99
1 file changed, 22 insertions(+), 12 deletions(-)
1010

1111
diff --git a/configure.ac b/configure.ac
12-
index a768297..2c7249b 100644
12+
index d9ca09d..db26537 100644
1313
--- a/configure.ac
1414
+++ b/configure.ac
15-
@@ -6032,12 +6032,17 @@ AC_CACHE_CHECK([whether POSIX semaphores are enabled], [ac_cv_posix_semaphores_e
15+
@@ -6039,12 +6039,17 @@ AC_CACHE_CHECK([whether POSIX semaphores are enabled], [ac_cv_posix_semaphores_e
1616
[ac_cv_posix_semaphores_enabled=no],
1717
[ac_cv_posix_semaphores_enabled=yes])
1818
)
@@ -36,7 +36,7 @@ index a768297..2c7249b 100644
3636

3737
dnl Multiprocessing check for broken sem_getvalue
3838
AC_CACHE_CHECK([for broken sem_getvalue], [ac_cv_broken_sem_getvalue],
39-
@@ -6069,12 +6074,17 @@ AC_CACHE_CHECK([for broken sem_getvalue], [ac_cv_broken_sem_getvalue],
39+
@@ -6076,12 +6081,17 @@ AC_CACHE_CHECK([for broken sem_getvalue], [ac_cv_broken_sem_getvalue],
4040
[ac_cv_broken_sem_getvalue=yes],
4141
[ac_cv_broken_sem_getvalue=yes])
4242
)

patches/distutils-install-layout.diff

+6-6
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ index 92bd1cc..f4466ef 100644
7575
sitepackages.append(prefix)
7676
sitepackages.append(os.path.join(prefix, "Lib", "site-packages"))
7777
diff --git a/Lib/sysconfig/__init__.py b/Lib/sysconfig/__init__.py
78-
index ed7b6a3..ecb2aa6 100644
78+
index 20d506b..9c9a939 100644
7979
--- a/Lib/sysconfig/__init__.py
8080
+++ b/Lib/sysconfig/__init__.py
8181
@@ -27,8 +27,8 @@
@@ -229,7 +229,7 @@ index c34101e..4df5c6e 100644
229229
VENV_LANDMARK = 'pyvenv.cfg'
230230
ZIP_LANDMARK = f'{platlibdir}/python{VERSION_MAJOR}{VERSION_MINOR}{ABI_THREAD}.zip'
231231
diff --git a/configure b/configure
232-
index 61ee51c..a2f796a 100755
232+
index 08c10ff..e80fa2b 100755
233233
--- a/configure
234234
+++ b/configure
235235
@@ -26128,11 +26128,11 @@ fi
@@ -268,10 +268,10 @@ index 61ee51c..a2f796a 100755
268268

269269

270270
diff --git a/configure.ac b/configure.ac
271-
index 172e8a1..3021608 100644
271+
index fb1dd77..216d24e 100644
272272
--- a/configure.ac
273273
+++ b/configure.ac
274-
@@ -6228,11 +6228,11 @@ fi
274+
@@ -6235,11 +6235,11 @@ fi
275275

276276

277277
AC_SUBST([BINLIBDEST])
@@ -285,7 +285,7 @@ index 172e8a1..3021608 100644
285285
AC_SUBST([PLATLIBDIR])
286286
PLATLIBDIR="lib"
287287
AC_MSG_CHECKING([for --with-platlibdir])
288-
@@ -6251,7 +6251,7 @@ if test -n "$withval" -a "$withval" != yes -a "$withval" != no
288+
@@ -6258,7 +6258,7 @@ if test -n "$withval" -a "$withval" != yes -a "$withval" != no
289289
then
290290
AC_MSG_RESULT([yes])
291291
PLATLIBDIR="$withval"
@@ -294,7 +294,7 @@ index 172e8a1..3021608 100644
294294
else
295295
AC_MSG_RESULT([no])
296296
fi],
297-
@@ -6261,9 +6261,9 @@ fi],
297+
@@ -6268,9 +6268,9 @@ fi],
298298
dnl define LIBPL after ABIFLAGS and LDVERSION is defined.
299299
AC_SUBST([PY_ENABLE_SHARED])
300300
if test x$PLATFORM_TRIPLET = x; then

patches/link-opt.diff

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Subject: link-opt
99
1 file changed, 3 insertions(+), 3 deletions(-)
1010

1111
diff --git a/configure.ac b/configure.ac
12-
index 3021608..a768297 100644
12+
index 216d24e..d9ca09d 100644
1313
--- a/configure.ac
1414
+++ b/configure.ac
15-
@@ -3445,8 +3445,8 @@ then
15+
@@ -3452,8 +3452,8 @@ then
1616
LDSHARED='$(CC) -shared'
1717
LDCXXSHARED='$(CXX) -shared';;
1818
Linux*|GNU*|QNX*|VxWorks*|Haiku*)
@@ -23,7 +23,7 @@ index 3021608..a768297 100644
2323
FreeBSD*)
2424
if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
2525
then
26-
@@ -3558,7 +3558,7 @@ then
26+
@@ -3565,7 +3565,7 @@ then
2727
LINKFORSHARED="-Wl,-E -Wl,+s";;
2828
# LINKFORSHARED="-Wl,-E -Wl,+s -Wl,+b\$(BINLIBDEST)/lib-dynload";;
2929
Linux-android*) LINKFORSHARED="-pie -Xlinker -export-dynamic";;

patches/multiarch.diff

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Subject: multiarch
88
2 files changed, 7 insertions(+)
99

1010
diff --git a/Lib/sysconfig/__init__.py b/Lib/sysconfig/__init__.py
11-
index ecb2aa6..ff6784c 100644
11+
index 9c9a939..5af1412 100644
1212
--- a/Lib/sysconfig/__init__.py
1313
+++ b/Lib/sysconfig/__init__.py
1414
@@ -563,6 +563,12 @@ def _init_config_vars():

patches/sysconfigdata-name.patch

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Forwarded: no
1515
3 files changed, 6 insertions(+), 4 deletions(-)
1616

1717
diff --git a/Lib/sysconfig/__init__.py b/Lib/sysconfig/__init__.py
18-
index ff6784c..585b414 100644
18+
index 5af1412..2af0b3a 100644
1919
--- a/Lib/sysconfig/__init__.py
2020
+++ b/Lib/sysconfig/__init__.py
2121
@@ -377,7 +377,7 @@ def _get_sysconfigdata_name():
@@ -45,7 +45,7 @@ index ba4765c..970976d 100644
4545
@ # If app store compliance has been configured, apply the patch to the
4646
@ # installed library code. The patch has been previously validated against
4747
diff --git a/configure.ac b/configure.ac
48-
index 2c7249b..6c2893e 100644
48+
index db26537..b5b2583 100644
4949
--- a/configure.ac
5050
+++ b/configure.ac
5151
@@ -164,7 +164,7 @@ AC_ARG_WITH([build-python],

0 commit comments

Comments
 (0)