From b61c9a7353338fee581493f514598926d9c70b5e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Thu, 8 Feb 2024 14:53:31 -0500 Subject: [PATCH] python3: update to 3.12.2. --- srcpkgs/python3/template | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template index 2efbba95f9a..2540a1f8a16 100644 --- a/srcpkgs/python3/template +++ b/srcpkgs/python3/template @@ -3,8 +3,8 @@ # THIS PACKAGE MUST BE SYNCHRONIZED WITH "srcpkgs/python3-tkinter". # pkgname=python3 -version=3.12.1 -revision=4 +version=3.12.2 +revision=1 build_style="gnu-configure" configure_args="--enable-shared --enable-ipv6 --enable-optimizations --enable-loadable-sqlite-extensions --with-computed-gotos @@ -25,7 +25,7 @@ distfiles=" https://www.python.org/ftp/python/${version%rc*}/Python-${version}.tar.xz ${KERNEL_SITE}/bluetooth/${_bluez}.tar.xz " -checksum="8dfb8f426fcd226657f9e2bd5f1e96e53264965176fa17d32658e873591aeb21 +checksum="be28112dac813d2053545c14bf13a16401a21877f1a69eb6ea5d84c4a0f3d870 ae437e65b6b3070c198bc5b0109fe9cdeb9eaa387380e2072f9de65fe8a1de34" skip_extraction="${_bluez}.tar.xz" @@ -93,11 +93,16 @@ do_check() { opts+=" -i test_session*" # overflow in datetime.time.mktime opts+=" -i test_localtime_daylight_*_dst_true" + # https://github.com/python/cpython/issues/115133 + opts+=" -i test_simple_xml" if [ "${XBPS_TARGET_LIBC}" = "musl" ]; then # musl doesn't work with locales opts+=" -i test_locale* -i test_c_locale* -i test__locale" opts+=" -i test_fpathconf" + else + # ctypes libm imports misbehave with glibc linker scripts + opts+=" -i test_issue18060_*" fi make ${makejobs} EXTRATESTOPTS="${opts}" quicktest