From 1b9aca3c22de8abf6e35214d447a6869ed684ea4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 08:21:36 -0500 Subject: [PATCH 0001/1664] common/hooks/pre-pkg/03-restrict-py3-version: new hook This hook ensures that any package installing files under ${py3_sitelib} contain a python3 dependency that is bound to the correct minor version. --- .../hooks/pre-pkg/03-restrict-py3-version.sh | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 common/hooks/pre-pkg/03-restrict-py3-version.sh diff --git a/common/hooks/pre-pkg/03-restrict-py3-version.sh b/common/hooks/pre-pkg/03-restrict-py3-version.sh new file mode 100644 index 00000000000000..1e4b167f235369 --- /dev/null +++ b/common/hooks/pre-pkg/03-restrict-py3-version.sh @@ -0,0 +1,31 @@ +# vim: set ts=4 sw=4 et: +# +# This hook performs the following task: +# - Identifies any python3 runtime dependencies +# - If any are found, ensures that the base python3 package is included +# - Restricts the python3 version to the same minor specified in $py3_ver + +hook() { + [ -d "${PKGDESTDIR}/${py3_lib}" ] || return 0 + [ "${pkgname}" = python3 ] && return 0 + + local dep rdeps + for dep in ${run_depends}; do + case "${dep}" in + python3 | "python3>"* | "python3<"* | "python3-${py3_ver}"* ) ;; + *) rdeps+=( "${dep}" ) ;; + esac + done + + local minor next_minor + + minor="${py3_ver#3.}" + next_minor="$(( "${minor}" + 1 ))" >/dev/null 2>&1 || next_minor= + + if ! [ "${next_minor}" -gt "${minor}" ]; then + msg_error 'unable to determine python3 minor bounds from $py3_ver\n' + fi + + rdeps+=( "python3>=3.${minor}.0_1<3.${next_minor}.0_1" ) + run_depends="${rdeps[*]}" +} From b5cd89978ea75453d890bc8a1721427456d5cbc6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 14 Nov 2025 14:10:51 -0500 Subject: [PATCH 0002/1664] python3: update to 3.14.1. --- common/environment/setup/python.sh | 2 +- .../hooks/pre-configure/02-script-wrapper.sh | 2 +- common/shlibs | 4 +- srcpkgs/python3/files/cross.patch | 4 +- .../python3/patches/musl-find_library.patch | 3 +- srcpkgs/python3/patches/musl-pgo-tests.patch | 453 ------------------ srcpkgs/python3/template | 4 +- 7 files changed, 10 insertions(+), 462 deletions(-) delete mode 100644 srcpkgs/python3/patches/musl-pgo-tests.patch diff --git a/common/environment/setup/python.sh b/common/environment/setup/python.sh index 75b3399c109e30..c2eab3578e88ed 100644 --- a/common/environment/setup/python.sh +++ b/common/environment/setup/python.sh @@ -7,7 +7,7 @@ py2_lib="usr/lib/python${py2_ver}" py2_sitelib="${py2_lib}/site-packages" py2_inc="usr/include/python${py2_ver}" -py3_ver="3.13" +py3_ver="3.14" py3_abiver="" py3_lib="usr/lib/python${py3_ver}" py3_sitelib="${py3_lib}/site-packages" diff --git a/common/hooks/pre-configure/02-script-wrapper.sh b/common/hooks/pre-configure/02-script-wrapper.sh index 3d5d6c2ab3b8f3..baf409c5d50b65 100644 --- a/common/hooks/pre-configure/02-script-wrapper.sh +++ b/common/hooks/pre-configure/02-script-wrapper.sh @@ -251,7 +251,7 @@ hook() { generic_wrapper3 libetpan-config generic_wrapper3 giblib-config python_wrapper python-config 2.7 - python_wrapper python3-config 3.13 + python_wrapper python3-config 3.14 apr_apu_wrapper apu-1-config qemu_wrapper llvm-config } diff --git a/common/shlibs b/common/shlibs index 9def6c62065e13..6c440f899eaab5 100644 --- a/common/shlibs +++ b/common/shlibs @@ -1657,8 +1657,8 @@ libportaudio.so.2 portaudio-19.20140130_1 libportaudiocpp.so.0 portaudio-cpp-19.20140130_1 libdar.so.6000 libdar-2.6.6_1 libdar64.so.6000 libdar-2.6.6_1 -libpython3.so python3-3.13.0_1 -libpython3.13.so.1.0 python3-3.13.0_1 +libpython3.so python3-3.14.0_1 +libpython3.14.so.1.0 python3-3.14.0_1 libbrscandec2.so.1 brother-brscan3-0.2.11_2 libxmlrpc_server_abyss.so.3 xmlrpc-c-1.51.06_2 libxmlrpc++.so.8 xmlrpc-c-1.51.06_2 diff --git a/srcpkgs/python3/files/cross.patch b/srcpkgs/python3/files/cross.patch index 40925d1ec1bfad..2151a8ee13b703 100644 --- a/srcpkgs/python3/files/cross.patch +++ b/srcpkgs/python3/files/cross.patch @@ -1,7 +1,7 @@ diff -ur a/Makefile.pre.in b/Makefile.pre.in --- a/Makefile.pre.in +++ b/Makefile.pre.in -@@ -1901,8 +1901,6 @@ +@@ -2365,8 +2365,6 @@ upgrade) ensurepip="--upgrade" ;; \ install|*) ensurepip="" ;; \ esac; \ @@ -10,7 +10,7 @@ diff -ur a/Makefile.pre.in b/Makefile.pre.in fi .PHONY: altinstall -@@ -1912,8 +1910,6 @@ +@@ -2376,8 +2374,6 @@ upgrade) ensurepip="--altinstall --upgrade" ;; \ install|*) ensurepip="--altinstall" ;; \ esac; \ diff --git a/srcpkgs/python3/patches/musl-find_library.patch b/srcpkgs/python3/patches/musl-find_library.patch index 879f912462721d..d819f9946e4fbf 100644 --- a/srcpkgs/python3/patches/musl-find_library.patch +++ b/srcpkgs/python3/patches/musl-find_library.patch @@ -1,6 +1,7 @@ +diff -ur a/Lib/ctypes/util.py b/Lib/ctypes/util.py --- a/Lib/ctypes/util.py +++ b/Lib/ctypes/util.py -@@ -265,6 +265,41 @@ +@@ -371,6 +371,41 @@ def find_library(name, is64 = False): return _get_soname(_findLib_crle(name, is64) or _findLib_gcc(name)) diff --git a/srcpkgs/python3/patches/musl-pgo-tests.patch b/srcpkgs/python3/patches/musl-pgo-tests.patch deleted file mode 100644 index d519da60925911..00000000000000 --- a/srcpkgs/python3/patches/musl-pgo-tests.patch +++ /dev/null @@ -1,453 +0,0 @@ -From 6146295a5b8e9286ccb8f90818b764c9a0192090 Mon Sep 17 00:00:00 2001 -From: "R. David Murray" -Date: Wed, 19 Mar 2025 13:05:09 -0400 -Subject: [PATCH] gh-90548: Make musl test skips smarter (fixes Alpine errors) - (#131313) - -* Make musl test skips smarter (fixes Alpine errors) - -A relatively small number of tests fail when the underlying c library is -provided by musl. This was originally reported in bpo-46390 by -Christian Heimes. Among other changes, these tests were marked for -skipping in gh-31947/ef1327e3 as part of bpo-40280 (emscripten support), -but the skips were conditioned on the *platform* being emscripten (or -wasi, skips for which ere added in 9b50585e02). - -In gh-131071 Victor Stinner added a linked_to_musl function to enable -skipping a test in test_math that fails under musl, like it does on a -number of other platforms. This check can successfully detect that -python is running under musl on Alpine, which was the original problem -report in bpo-46390. - -This PR replaces Victor's solution with an enhancement to -platform.libc_ver that does the check more cheaply, and also gets the -version number. The latter is important because the math test being -skipped is due to a bug in musl that has been fixed, but as of this -checkin date has not yet been released. When it is, the test skip can -be fixed to check for the minimum needed version. - -The enhanced version of linked_to_musl is also used to do the skips of -the other tests that generically fail under musl, as opposed to -emscripten or wasi only failures. This will allow these tests to be -skipped automatically on Alpine. - -This PR does *not* enhance libc_ver to support emscripten and wasi, as -I'm not familiar with those platforms; instead it returns a version -triple of (0, 0, 0) for those platforms. This means the musl tests will -be skipped regardless of musl version, so ideally someone will add -support to libc_ver for these platforms. - -* Platform tests and bug fixes. - -In adding tests for the new platform code I found a bug in the old code: -if a valid version is passed for version and it is greater than the -version found for an so *and* there is no glibc version, then the -version from the argument was returned. The code changes here fix -that. - -* Add support docs, including for some preexisting is_xxx's. - -* Add news item about libc_ver enhancement. - -* Prettify platform re expression using re.VERBOSE. ---- - Doc/library/test.rst | 31 ++++++++++++++- - Lib/platform.py | 37 +++++++++++------- - Lib/test/support/__init__.py | 39 +++++++++++++------ - Lib/test/test__locale.py | 20 ++-------- - Lib/test/test_locale.py | 12 ++---- - Lib/test/test_math.py | 3 ++ - Lib/test/test_os.py | 15 ++++--- - Lib/test/test_platform.py | 35 +++++++++++++---- - Lib/test/test_re.py | 12 ++---- - Lib/test/test_strptime.py | 5 +-- - Lib/test/test_support.py | 13 ++++++- - ...5-03-17-17-11-41.gh-issue-90548.xSPf_L.rst | 2 + - 12 files changed, 143 insertions(+), 81 deletions(-) - create mode 100644 Misc/NEWS.d/next/Library/2025-03-17-17-11-41.gh-issue-90548.xSPf_L.rst - -diff --git a/Doc/library/test.rst b/Doc/library/test.rst -index 46f8975687714b..f27cd55e7271a0 100644 ---- a/Doc/library/test.rst -+++ b/Doc/library/test.rst -@@ -246,7 +246,27 @@ The :mod:`test.support` module defines the following constants: - - .. data:: is_android - -- ``True`` if the system is Android. -+ ``True`` if ``sys.platform`` is ``android``. -+ -+ -+.. data:: is_emscripten -+ -+ ``True`` if ``sys.platform`` is ``emscripten``. -+ -+ -+.. data:: is_wasi -+ -+ ``True`` if ``sys.platform`` is ``wasi``. -+ -+ -+.. data:: is_apple_mobile -+ -+ ``True`` if ``sys.platform`` is ``ios``, ``tvos``, or ``watchos``. -+ -+ -+.. data:: is_apple -+ -+ ``True`` if ``sys.platform`` is ``darwin`` or ``is_apple_mobile`` is ``True``. - - - .. data:: unix_shell -@@ -831,6 +851,15 @@ The :mod:`test.support` module defines the following functions: - Decorator for tests that fill the address space. - - -+.. function:: linked_with_musl() -+ -+ Return ``False`` if there is no evidence the interperter was compiled with -+ ``musl``, otherwise return a version triple, either ``(0, 0, 0)`` if the -+ version is unknown, or the actual version if it is known. Intended for use -+ in ``skip`` decorators. ``emscripten`` and ``wasi`` are assumed to be -+ compiled with ``musl``; otherwise ``platform.libc_ver`` is checked. -+ -+ - .. function:: check_syntax_error(testcase, statement, errtext='', *, lineno=None, offset=None) - - Test for syntax errors in *statement* by attempting to compile *statement*. -diff --git a/Lib/platform.py b/Lib/platform.py -index 1f6baed66d3df9..a62192589af8ff 100644 ---- a/Lib/platform.py -+++ b/Lib/platform.py -@@ -189,22 +189,25 @@ def libc_ver(executable=None, lib='', version='', chunksize=16384): - # sys.executable is not set. - return lib, version - -- libc_search = re.compile(b'(__libc_init)' -- b'|' -- b'(GLIBC_([0-9.]+))' -- b'|' -- br'(libc(_\w+)?\.so(?:\.(\d[0-9.]*))?)', re.ASCII) -+ libc_search = re.compile(br""" -+ (__libc_init) -+ | (GLIBC_([0-9.]+)) -+ | (libc(_\w+)?\.so(?:\.(\d[0-9.]*))?) -+ | (musl-([0-9.]+)) -+ """, -+ re.ASCII | re.VERBOSE) - - V = _comparable_version - # We use os.path.realpath() - # here to work around problems with Cygwin not being - # able to open symlinks for reading - executable = os.path.realpath(executable) -+ ver = None - with open(executable, 'rb') as f: - binary = f.read(chunksize) - pos = 0 - while pos < len(binary): -- if b'libc' in binary or b'GLIBC' in binary: -+ if b'libc' in binary or b'GLIBC' in binary or b'musl' in binary: - m = libc_search.search(binary, pos) - else: - m = None -@@ -216,7 +219,7 @@ def libc_ver(executable=None, lib='', version='', chunksize=16384): - continue - if not m: - break -- libcinit, glibc, glibcversion, so, threads, soversion = [ -+ libcinit, glibc, glibcversion, so, threads, soversion, musl, muslversion = [ - s.decode('latin1') if s is not None else s - for s in m.groups()] - if libcinit and not lib: -@@ -224,18 +227,22 @@ def libc_ver(executable=None, lib='', version='', chunksize=16384): - elif glibc: - if lib != 'glibc': - lib = 'glibc' -- version = glibcversion -- elif V(glibcversion) > V(version): -- version = glibcversion -+ ver = glibcversion -+ elif V(glibcversion) > V(ver): -+ ver = glibcversion - elif so: - if lib != 'glibc': - lib = 'libc' -- if soversion and (not version or V(soversion) > V(version)): -- version = soversion -- if threads and version[-len(threads):] != threads: -- version = version + threads -+ if soversion and (not ver or V(soversion) > V(ver)): -+ ver = soversion -+ if threads and ver[-len(threads):] != threads: -+ ver = ver + threads -+ elif musl: -+ lib = 'musl' -+ if not ver or V(muslversion) > V(ver): -+ ver = muslversion - pos = m.end() -- return lib, version -+ return lib, version if ver is None else ver - - def _norm_version(version, build=''): - -diff --git a/Lib/test/test__locale.py b/Lib/test/test__locale.py -index cef84fd9580c37..11b2c9545a1b43 100644 ---- a/Lib/test/test__locale.py -+++ b/Lib/test/test__locale.py -@@ -137,10 +137,7 @@ def numeric_tester(self, calc_type, calc_value, data_type, used_locale): - return True - - @unittest.skipUnless(nl_langinfo, "nl_langinfo is not available") -- @unittest.skipIf( -- support.is_emscripten or support.is_wasi, -- "musl libc issue on Emscripten, bpo-46390" -- ) -+ @unittest.skipIf(support.linked_to_musl(), "musl libc issue, bpo-46390") - def test_lc_numeric_nl_langinfo(self): - # Test nl_langinfo against known values - tested = False -@@ -158,10 +155,7 @@ def test_lc_numeric_nl_langinfo(self): - if not tested: - self.skipTest('no suitable locales') - -- @unittest.skipIf( -- support.is_emscripten or support.is_wasi, -- "musl libc issue on Emscripten, bpo-46390" -- ) -+ @unittest.skipIf(support.linked_to_musl(), "musl libc issue, bpo-46390") - def test_lc_numeric_localeconv(self): - # Test localeconv against known values - tested = False -@@ -210,10 +204,7 @@ def test_lc_numeric_basic(self): - - @unittest.skipUnless(nl_langinfo, "nl_langinfo is not available") - @unittest.skipUnless(hasattr(locale, 'ALT_DIGITS'), "requires locale.ALT_DIGITS") -- @unittest.skipIf( -- support.is_emscripten or support.is_wasi, -- "musl libc issue on Emscripten, bpo-46390" -- ) -+ @unittest.skipIf(support.linked_to_musl(), "musl libc issue, bpo-46390") - def test_alt_digits_nl_langinfo(self): - # Test nl_langinfo(ALT_DIGITS) - tested = False -@@ -245,10 +236,7 @@ def test_alt_digits_nl_langinfo(self): - - @unittest.skipUnless(nl_langinfo, "nl_langinfo is not available") - @unittest.skipUnless(hasattr(locale, 'ERA'), "requires locale.ERA") -- @unittest.skipIf( -- support.is_emscripten or support.is_wasi, -- "musl libc issue on Emscripten, bpo-46390" -- ) -+ @unittest.skipIf(support.linked_to_musl(), "musl libc issue, bpo-46390") - def test_era_nl_langinfo(self): - # Test nl_langinfo(ERA) - tested = False -diff --git a/Lib/test/test_locale.py b/Lib/test/test_locale.py -index 798c6ad62cddd1..528ceef528114c 100644 ---- a/Lib/test/test_locale.py -+++ b/Lib/test/test_locale.py -@@ -1,5 +1,5 @@ - from decimal import Decimal --from test.support import verbose, is_android, is_emscripten, is_wasi -+from test.support import verbose, is_android, linked_to_musl, os_helper - from test.support.warnings_helper import check_warnings - from test.support.import_helper import import_fresh_module - from unittest import mock -@@ -351,10 +351,7 @@ - - @unittest.skipIf(sys.platform.startswith('aix'), - 'bpo-29972: broken test on AIX') -- @unittest.skipIf( -- is_emscripten or is_wasi, -- "musl libc issue on Emscripten/WASI, bpo-46390" -- ) -+ @unittest.skipIf(linked_to_musl(), "musl libc issue, bpo-46390") - @unittest.skipIf(sys.platform.startswith("netbsd"), - "gh-124108: NetBSD doesn't support UTF-8 for LC_COLLATE") - def test_strcoll_with_diacritic(self): -@@ -362,10 +359,7 @@ - - @unittest.skipIf(sys.platform.startswith('aix'), - 'bpo-29972: broken test on AIX') -- @unittest.skipIf( -- is_emscripten or is_wasi, -- "musl libc issue on Emscripten/WASI, bpo-46390" -- ) -+ @unittest.skipIf(linked_to_musl(), "musl libc issue, bpo-46390") - @unittest.skipIf(sys.platform.startswith("netbsd"), - "gh-124108: NetBSD doesn't support UTF-8 for LC_COLLATE") - def test_strxfrm_with_diacritic(self): -diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py -index 2649be86e5086e..b4f5dd80f55f86 100644 ---- a/Lib/test/test_math.py -+++ b/Lib/test/test_math.py -@@ -2772,6 +2772,9 @@ def test_fma_infinities(self): - or (sys.platform == "android" and platform.machine() == "x86_64") - or support.linked_to_musl(), # gh-131032 - f"this platform doesn't implement IEE 754-2008 properly") -+ # gh-131032: musl is fixed but the fix is not yet released; when the fixed -+ # version is known change this to: -+ # or support.linked_to_musl() < (1, ,

) - def test_fma_zero_result(self): - nonnegative_finites = [0.0, 1e-300, 2.3, 1e300] - -diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py -index 0353c2b4866c45..333179a71e3cdc 100644 ---- a/Lib/test/test_os.py -+++ b/Lib/test/test_os.py -@@ -2393,14 +2393,11 @@ - self.check(os.fchown, -1, -1) - - @unittest.skipUnless(hasattr(os, 'fpathconf'), 'test needs os.fpathconf()') -- @unittest.skipIf( -- support.is_emscripten or support.is_wasi, -- "musl libc issue on Emscripten/WASI, bpo-46390" -- ) - def test_fpathconf(self): - self.assertIn("PC_NAME_MAX", os.pathconf_names) -- self.check(os.pathconf, "PC_NAME_MAX") -- self.check(os.fpathconf, "PC_NAME_MAX") -+ if not support.linked_to_musl(): -+ self.check(os.pathconf, "PC_NAME_MAX") -+ self.check(os.fpathconf, "PC_NAME_MAX") - self.check_bool(os.pathconf, "PC_NAME_MAX") - self.check_bool(os.fpathconf, "PC_NAME_MAX") - -diff --git a/Lib/test/test_platform.py b/Lib/test/test_platform.py -index ca73b043d31b7f..6ba630ad527f91 100644 ---- a/Lib/test/test_platform.py -+++ b/Lib/test/test_platform.py -@@ -551,6 +551,10 @@ def test_libc_ver(self): - (b'GLIBC_2.9', ('glibc', '2.9')), - (b'libc.so.1.2.5', ('libc', '1.2.5')), - (b'libc_pthread.so.1.2.5', ('libc', '1.2.5_pthread')), -+ (b'/aports/main/musl/src/musl-1.2.5', ('musl', '1.2.5')), -+ # musl uses semver, but we accept some variations anyway: -+ (b'/aports/main/musl/src/musl-12.5', ('musl', '12.5')), -+ (b'/aports/main/musl/src/musl-1.2.5.7', ('musl', '1.2.5.7')), - (b'', ('', '')), - ): - with open(filename, 'wb') as fp: -@@ -562,14 +566,29 @@ def test_libc_ver(self): - expected) - - # binary containing multiple versions: get the most recent, -- # make sure that 1.9 is seen as older than 1.23.4 -- chunksize = 16384 -- with open(filename, 'wb') as f: -- # test match at chunk boundary -- f.write(b'x'*(chunksize - 10)) -- f.write(b'GLIBC_1.23.4\0GLIBC_1.9\0GLIBC_1.21\0') -- self.assertEqual(platform.libc_ver(filename, chunksize=chunksize), -- ('glibc', '1.23.4')) -+ # make sure that eg 1.9 is seen as older than 1.23.4, and that -+ # the arguments don't count even if they are set. -+ chunksize = 200 -+ for data, expected in ( -+ (b'GLIBC_1.23.4\0GLIBC_1.9\0GLIBC_1.21\0', ('glibc', '1.23.4')), -+ (b'libc.so.2.4\0libc.so.9\0libc.so.23.1\0', ('libc', '23.1')), -+ (b'musl-1.4.1\0musl-2.1.1\0musl-2.0.1\0', ('musl', '2.1.1')), -+ (b'no match here, so defaults are used', ('test', '100.1.0')), -+ ): -+ with open(filename, 'wb') as f: -+ # test match at chunk boundary -+ f.write(b'x'*(chunksize - 10)) -+ f.write(data) -+ self.assertEqual( -+ expected, -+ platform.libc_ver( -+ filename, -+ lib='test', -+ version='100.1.0', -+ chunksize=chunksize, -+ ), -+ ) -+ - - def test_android_ver(self): - res = platform.android_ver() -diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py -index 5538de60b2a03a..f65b4076aee2c6 100644 ---- a/Lib/test/test_re.py -+++ b/Lib/test/test_re.py -@@ -1,6 +1,6 @@ - from test.support import (gc_collect, bigmemtest, _2G, - cpython_only, captured_stdout, -- check_disallow_instantiation, is_emscripten, is_wasi, -+ check_disallow_instantiation, linked_to_musl, - warnings_helper, SHORT_TIMEOUT, CPUStopwatch, requires_resource) - import locale - import re -@@ -2172,10 +2172,7 @@ def test_bug_20998(self): - # with ignore case. - self.assertEqual(re.fullmatch('[a-c]+', 'ABC', re.I).span(), (0, 3)) - -- @unittest.skipIf( -- is_emscripten or is_wasi, -- "musl libc issue on Emscripten/WASI, bpo-46390" -- ) -+ @unittest.skipIf(linked_to_musl(), "musl libc issue, bpo-46390") - def test_locale_caching(self): - # Issue #22410 - oldlocale = locale.setlocale(locale.LC_CTYPE) -@@ -2212,10 +2209,7 @@ def check_en_US_utf8(self): - self.assertIsNone(re.match(b'(?Li)\xc5', b'\xe5')) - self.assertIsNone(re.match(b'(?Li)\xe5', b'\xc5')) - -- @unittest.skipIf( -- is_emscripten or is_wasi, -- "musl libc issue on Emscripten/WASI, bpo-46390" -- ) -+ @unittest.skipIf(linked_to_musl(), "musl libc issue, bpo-46390") - def test_locale_compiled(self): - oldlocale = locale.setlocale(locale.LC_CTYPE) - self.addCleanup(locale.setlocale, locale.LC_CTYPE, oldlocale) -diff --git a/Lib/test/test_strptime.py b/Lib/test/test_strptime.py -index 0d30a63ab0c140..fbc43829e22a96 100644 ---- a/Lib/test/test_strptime.py -+++ b/Lib/test/test_strptime.py -@@ -544,10 +544,7 @@ def test_date_locale(self): - self.roundtrip('%x', slice(0, 3), time.localtime(now - 366*24*3600)) - - # NB: Dates before 1969 do not roundtrip on many locales, including C. -- @unittest.skipIf( -- support.is_emscripten or support.is_wasi, -- "musl libc issue on Emscripten, bpo-46390" -- ) -+ @unittest.skipIf(support.linked_to_musl(), "musl libc issue, bpo-46390") - @run_with_locales('LC_TIME', 'en_US', 'fr_FR', 'de_DE', 'ja_JP', - 'eu_ES', 'ar_AE', 'my_MM', 'shn_MM') - def test_date_locale2(self): -diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py -index 46d796379fa212..8d5b3440d3bd30 100644 ---- a/Lib/test/test_support.py -+++ b/Lib/test/test_support.py -@@ -746,7 +746,18 @@ def test_get_signal_name(self): - - def test_linked_to_musl(self): - linked = support.linked_to_musl() -- self.assertIsInstance(linked, bool) -+ self.assertIsNotNone(linked) -+ if support.is_wasi or support.is_emscripten: -+ self.assertTrue(linked) -+ # The value is cached, so make sure it returns the same value again. -+ self.assertIs(linked, support.linked_to_musl()) -+ # The unlike libc, the musl version is a triple. -+ if linked: -+ self.assertIsInstance(linked, tuple) -+ self.assertEqual(3, len(linked)) -+ for v in linked: -+ self.assertIsInstance(v, int) -+ - - # XXX -follows a list of untested API - # make_legacy_pyc -diff --git a/Misc/NEWS.d/next/Library/2025-03-17-17-11-41.gh-issue-90548.xSPf_L.rst b/Misc/NEWS.d/next/Library/2025-03-17-17-11-41.gh-issue-90548.xSPf_L.rst -new file mode 100644 -index 00000000000000..88746c1866f14e ---- /dev/null -+++ b/Misc/NEWS.d/next/Library/2025-03-17-17-11-41.gh-issue-90548.xSPf_L.rst -@@ -0,0 +1,2 @@ -+:func:`platform.libc_ver` can now detect and report the version of ``musl`` -+on Alpine Linux. diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template index 7d429a6dd3987e..f595f26d8abf03 100644 --- a/srcpkgs/python3/template +++ b/srcpkgs/python3/template @@ -5,7 +5,7 @@ # - coccinelle # pkgname=python3 -version=3.13.9 +version=3.14.1 revision=1 build_style="gnu-configure" configure_args="--enable-shared --enable-ipv6 @@ -27,7 +27,7 @@ distfiles=" https://www.python.org/ftp/python/${version%rc*}/Python-${version}.tar.xz ${KERNEL_SITE}/bluetooth/${_bluez}.tar.xz " -checksum="ed5ef34cda36cfa2f3a340f07cac7e7814f91c7f3c411f6d3562323a866c5c66 +checksum="8dfa08b1959d9d15838a1c2dab77dc8d8ff4a553a1ed046dfacbc8095c6d42fc 55e2c645909ad82d833c42ce85ec20434e0ef0070941b1eab73facdd240bbd63" skip_extraction="${_bluez}.tar.xz" From 40ba49f0565321ced15fed75409a276cdd05eea0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 14 Nov 2025 14:11:05 -0500 Subject: [PATCH 0003/1664] python3-tkinter: update to 3.14.1. --- srcpkgs/python3-tkinter/patches | 1 + srcpkgs/python3-tkinter/patches/musl-pgo-tests.patch | 1 - srcpkgs/python3-tkinter/template | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) create mode 120000 srcpkgs/python3-tkinter/patches delete mode 120000 srcpkgs/python3-tkinter/patches/musl-pgo-tests.patch diff --git a/srcpkgs/python3-tkinter/patches b/srcpkgs/python3-tkinter/patches new file mode 120000 index 00000000000000..10864791b9bdec --- /dev/null +++ b/srcpkgs/python3-tkinter/patches @@ -0,0 +1 @@ +../python3/patches \ No newline at end of file diff --git a/srcpkgs/python3-tkinter/patches/musl-pgo-tests.patch b/srcpkgs/python3-tkinter/patches/musl-pgo-tests.patch deleted file mode 120000 index 875f5e0c12b284..00000000000000 --- a/srcpkgs/python3-tkinter/patches/musl-pgo-tests.patch +++ /dev/null @@ -1 +0,0 @@ -../../python3/patches/musl-pgo-tests.patch \ No newline at end of file diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template index 92965644ea5b1d..03979a79d7ee70 100644 --- a/srcpkgs/python3-tkinter/template +++ b/srcpkgs/python3-tkinter/template @@ -8,7 +8,7 @@ _desc="Python programming language" pkgname=python3-tkinter -version=3.13.9 +version=3.14.1 revision=1 build_style="gnu-configure" configure_args="--enable-shared --enable-ipv6 @@ -25,7 +25,7 @@ maintainer="Andrew J. Hesford " homepage="https://www.python.org" license="Python-2.0" distfiles="https://www.python.org/ftp/python/${version%rc*}/Python-${version}.tar.xz" -checksum=ed5ef34cda36cfa2f3a340f07cac7e7814f91c7f3c411f6d3562323a866c5c66 +checksum=8dfa08b1959d9d15838a1c2dab77dc8d8ff4a553a1ed046dfacbc8095c6d42fc if [ "$XBPS_TARGET_LIBC" = "glibc" ]; then makedepends+=" libxcrypt-devel" From d987072f0c449c755832b81c21f305551580d4fb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:21 -0500 Subject: [PATCH 0004/1664] python3-flit_core-bootstrap: rebuild for Python 3.14 --- srcpkgs/python3-flit_core-bootstrap/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-flit_core-bootstrap/template b/srcpkgs/python3-flit_core-bootstrap/template index 712439e413933f..f5f88d879806d2 100644 --- a/srcpkgs/python3-flit_core-bootstrap/template +++ b/srcpkgs/python3-flit_core-bootstrap/template @@ -1,7 +1,7 @@ # Template file for 'python3-flit_core-bootstrap' pkgname=python3-flit_core-bootstrap version=3.12.0 -revision=1 +revision=2 # This package is required by python3-build and python3-installer, used by the # python3-pep517 style; so using that style here would create a cycle hostmakedepends="python3" From 637dfdfbb6a235cc4934224805a5102ff83e4e62 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:21 -0500 Subject: [PATCH 0005/1664] python3-installer-bootstrap: rebuild for Python 3.14 --- srcpkgs/python3-installer-bootstrap/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-installer-bootstrap/template b/srcpkgs/python3-installer-bootstrap/template index 111be0e431c00c..e1209467728cc5 100644 --- a/srcpkgs/python3-installer-bootstrap/template +++ b/srcpkgs/python3-installer-bootstrap/template @@ -1,7 +1,7 @@ # Template file for 'python3-installer-bootstrap' pkgname=python3-installer-bootstrap version=0.7.0 -revision=1 +revision=2 # This package is used by the python3-pep517 build style; using that style here # would create a build cycle build_style=python3-module From 8f64df9dacb63c3b8b6aa5d5aef9f00be323c88f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:21 -0500 Subject: [PATCH 0006/1664] python3-flit_core: rebuild for Python 3.14 --- srcpkgs/python3-flit_core/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-flit_core/template b/srcpkgs/python3-flit_core/template index 4b11f8ee47e877..477d47aade0140 100644 --- a/srcpkgs/python3-flit_core/template +++ b/srcpkgs/python3-flit_core/template @@ -1,7 +1,7 @@ # Template file for 'python3-flit_core' pkgname=python3-flit_core version=3.12.0 -revision=1 +revision=2 # This package is required by python3-build and python3-installer, used by the # python3-pep517 style; so using that style here would create a cycle hostmakedepends="python3" From 8da72df3808f003de6d1b1f2b47f42a712fcf13a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:21 -0500 Subject: [PATCH 0007/1664] python3-packaging-bootstrap: rebuild for Python 3.14 --- srcpkgs/python3-packaging-bootstrap/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-packaging-bootstrap/template b/srcpkgs/python3-packaging-bootstrap/template index c3a4b0609c6981..cbc3bc8fcfc8fc 100644 --- a/srcpkgs/python3-packaging-bootstrap/template +++ b/srcpkgs/python3-packaging-bootstrap/template @@ -1,7 +1,7 @@ # Template file for 'python3-packaging-bootstrap' pkgname=python3-packaging-bootstrap version=25.0 -revision=1 +revision=2 # This package is required by python3-build, used by the python3-pep517 style; # using that style here would create a cycle build_style=python3-module From 26cc556b98602272fdc710de0a92182d19e36fe6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:21 -0500 Subject: [PATCH 0008/1664] python3-installer: rebuild for Python 3.14 --- srcpkgs/python3-installer/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-installer/template b/srcpkgs/python3-installer/template index 6ac895de585ce2..0685bdf0438eb3 100644 --- a/srcpkgs/python3-installer/template +++ b/srcpkgs/python3-installer/template @@ -1,7 +1,7 @@ # Template file for 'python3-installer' pkgname=python3-installer version=0.7.0 -revision=3 +revision=4 # This package is used by the python3-pep517 build style; using that style here # would create a build cycle build_style=python3-module From f31fd3751856420e4b64cfce96beae0dd8ed8776 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:21 -0500 Subject: [PATCH 0009/1664] python3-parsing: rebuild for Python 3.14 --- srcpkgs/python3-parsing/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-parsing/template b/srcpkgs/python3-parsing/template index 8edcc71410f549..74610490aa7b0f 100644 --- a/srcpkgs/python3-parsing/template +++ b/srcpkgs/python3-parsing/template @@ -1,7 +1,7 @@ # Template file for 'python3-parsing' pkgname=python3-parsing version=3.2.5 -revision=1 +revision=2 # This package is used by the python3-pep517 build style; using that style here # would create a build cycle build_style=python3-module From be11ff9075a7e4d3670fa695fe07cad8cb240d8f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:22 -0500 Subject: [PATCH 0010/1664] python3-packaging: rebuild for Python 3.14 --- srcpkgs/python3-packaging/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-packaging/template b/srcpkgs/python3-packaging/template index c83640d2e81f21..091bf6ce61f431 100644 --- a/srcpkgs/python3-packaging/template +++ b/srcpkgs/python3-packaging/template @@ -1,7 +1,7 @@ # Template file for 'python3-packaging' pkgname=python3-packaging version=25.0 -revision=1 +revision=2 # This package is required by python3-build, used by the python3-pep517 style; # using that style here would create a cycle build_style=python3-module From fb479740e2f1469ea8d3a9adee2ec4d859cbe051 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:22 -0500 Subject: [PATCH 0011/1664] python3-pyproject-hooks: rebuild for Python 3.14 --- srcpkgs/python3-pyproject-hooks/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyproject-hooks/template b/srcpkgs/python3-pyproject-hooks/template index 9848b10009d775..016957bffa3fad 100644 --- a/srcpkgs/python3-pyproject-hooks/template +++ b/srcpkgs/python3-pyproject-hooks/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyproject-hooks' pkgname=python3-pyproject-hooks version=1.2.0 -revision=2 +revision=3 # This package is required by python3-build, used by the python3-pep517 style; # using that style here would create a cycle build_style=python3-module From d289b8261a191ed47ed84f0d170cc40d8188d3fd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:22 -0500 Subject: [PATCH 0012/1664] python3-build: rebuild for Python 3.14 --- srcpkgs/python3-build/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-build/template b/srcpkgs/python3-build/template index 6b0855be9b58ea..6504fdf0574fe2 100644 --- a/srcpkgs/python3-build/template +++ b/srcpkgs/python3-build/template @@ -1,7 +1,7 @@ # Template file for 'python3-build' pkgname=python3-build version=1.3.0 -revision=1 +revision=2 # This package is used by the python3-pep517 build style; using that style here # would create a build cycle build_style=python3-module From db738668c89af0df79cc787c3dfb80ae763b39a9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:22 -0500 Subject: [PATCH 0013/1664] python3-setuptools: rebuild for Python 3.14 --- srcpkgs/python3-setuptools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-setuptools/template b/srcpkgs/python3-setuptools/template index d2c0aecee49b37..cc731db69bfeeb 100644 --- a/srcpkgs/python3-setuptools/template +++ b/srcpkgs/python3-setuptools/template @@ -1,7 +1,7 @@ # Template file for 'python3-setuptools' pkgname=python3-setuptools version=80.9.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-devel" depends="python3" From cbc8cc830240e745df1a83954449a7bac1cc7a22 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:22 -0500 Subject: [PATCH 0014/1664] python3-typing_extensions: update to 4.15.0. --- srcpkgs/python3-typing_extensions/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-typing_extensions/template b/srcpkgs/python3-typing_extensions/template index c603c52981e941..daf0c5b1c92fe8 100644 --- a/srcpkgs/python3-typing_extensions/template +++ b/srcpkgs/python3-typing_extensions/template @@ -1,6 +1,6 @@ # Template file for 'python3-typing_extensions' pkgname=python3-typing_extensions -version=4.12.2 +version=4.15.0 revision=1 build_style=python3-pep517 hostmakedepends="python3-flit_core" @@ -11,7 +11,7 @@ license="Python-2.0" homepage="https://github.com/python/typing_extensions" changelog="https://github.com/python/typing_extensions/raw/main/CHANGELOG.md" distfiles="${PYPI_SITE}/t/typing_extensions/typing_extensions-${version}.tar.gz" -checksum=1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8 +checksum=0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466 # Depends on the `test` module, which is intentionally not included in the # `python3` package. make_check=no From da308d6dfe0f56b090907ac15593f1d268e01bc0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:22 -0500 Subject: [PATCH 0015/1664] python3-wheel: rebuild for Python 3.14 --- srcpkgs/python3-wheel/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-wheel/template b/srcpkgs/python3-wheel/template index 3bc537faa380ee..026387ee511125 100644 --- a/srcpkgs/python3-wheel/template +++ b/srcpkgs/python3-wheel/template @@ -1,7 +1,7 @@ # Template file for 'python3-wheel' pkgname=python3-wheel version=0.46.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools" From 88f5c6cce5f8e295f0cc2ed97dab0a5a138c260e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:23 -0500 Subject: [PATCH 0016/1664] python3-setuptools_scm: rebuild for Python 3.14 --- srcpkgs/python3-setuptools_scm/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-setuptools_scm/template b/srcpkgs/python3-setuptools_scm/template index 5af252d30664d3..3815327e6f261c 100644 --- a/srcpkgs/python3-setuptools_scm/template +++ b/srcpkgs/python3-setuptools_scm/template @@ -1,7 +1,7 @@ # Template file for 'python3-setuptools_scm' pkgname=python3-setuptools_scm version=9.2.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-setuptools python3-packaging python3-typing_extensions" From aa7766e718585bda033457ef3a37c354ca4f8197 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:23 -0500 Subject: [PATCH 0017/1664] python3-calver: rebuild for Python 3.14 --- srcpkgs/python3-calver/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-calver/template b/srcpkgs/python3-calver/template index f57e20cb3611a7..975f224dc55f09 100644 --- a/srcpkgs/python3-calver/template +++ b/srcpkgs/python3-calver/template @@ -1,7 +1,7 @@ # Template file for 'python3-calver' pkgname=python3-calver version=2022.6.26 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From e99a3b47cdfc37b1b455d73ae568a53833d14c22 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:23 -0500 Subject: [PATCH 0018/1664] python3-editables: rebuild for Python 3.14 --- srcpkgs/python3-editables/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-editables/template b/srcpkgs/python3-editables/template index d6adfd0de2c506..38d56c969ecfd4 100644 --- a/srcpkgs/python3-editables/template +++ b/srcpkgs/python3-editables/template @@ -1,7 +1,7 @@ # Template file for 'python3-editables' pkgname=python3-editables version=0.5 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3" From b9ba29f90b4fede8aeddd3e86374615a8a1b951c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:23 -0500 Subject: [PATCH 0019/1664] python3-pathspec: rebuild for Python 3.14 --- srcpkgs/python3-pathspec/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pathspec/template b/srcpkgs/python3-pathspec/template index 5f9b1c73123ef0..d4351196b067be 100644 --- a/srcpkgs/python3-pathspec/template +++ b/srcpkgs/python3-pathspec/template @@ -1,7 +1,7 @@ # Template file for 'python3-pathspec' pkgname=python3-pathspec version=0.12.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3" From fba965d6d4f53c9e0486e147c27ec21b6f8ca483 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:23 -0500 Subject: [PATCH 0020/1664] python3-pluggy: rebuild for Python 3.14 --- srcpkgs/python3-pluggy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pluggy/template b/srcpkgs/python3-pluggy/template index 83d4ef424596c5..03afb53d8ca4e3 100644 --- a/srcpkgs/python3-pluggy/template +++ b/srcpkgs/python3-pluggy/template @@ -1,7 +1,7 @@ # Template file for 'python3-pluggy' pkgname=python3-pluggy version=1.6.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3" From 4f0f61b99a7315c9073291254803c36f012a0d14 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:23 -0500 Subject: [PATCH 0021/1664] python3-trove-classifiers: rebuild for Python 3.14 --- srcpkgs/python3-trove-classifiers/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-trove-classifiers/template b/srcpkgs/python3-trove-classifiers/template index f184b0d13dc087..fc948e7fefbf33 100644 --- a/srcpkgs/python3-trove-classifiers/template +++ b/srcpkgs/python3-trove-classifiers/template @@ -1,7 +1,7 @@ # Template file for 'python3-trove-classifiers' pkgname=python3-trove-classifiers version=2024.7.2 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel python3-calver" depends="python3" From 0bd4b3cf967aef201639c3098bd1da6e355ea575 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:23 -0500 Subject: [PATCH 0022/1664] python3-semanticversion: rebuild for Python 3.14 --- srcpkgs/python3-semanticversion/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-semanticversion/template b/srcpkgs/python3-semanticversion/template index a85f7107bf8da3..9edd3a4b12f1ae 100644 --- a/srcpkgs/python3-semanticversion/template +++ b/srcpkgs/python3-semanticversion/template @@ -1,7 +1,7 @@ # Template file for 'python3-semanticversion' pkgname=python3-semanticversion version=2.8.5 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 3dfa7a2b220ac7d446b0befe8389141edf587d0d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:24 -0500 Subject: [PATCH 0023/1664] hatchling: rebuild for Python 3.14 --- srcpkgs/hatchling/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hatchling/template b/srcpkgs/hatchling/template index 0bc6abb7578931..3b932e7f896f9d 100644 --- a/srcpkgs/hatchling/template +++ b/srcpkgs/hatchling/template @@ -1,7 +1,7 @@ # Template file for 'hatchling' pkgname=hatchling version=1.27.0 -revision=1 +revision=2 build_style=python3-pep517 _deps="python3-editables python3-packaging python3-pathspec python3-pluggy python3-trove-classifiers" From 635d0bf9c0ead7422683fe6c3b5f6c5366bd56a7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:24 -0500 Subject: [PATCH 0024/1664] python3-setuptools-rust: rebuild for Python 3.14 --- srcpkgs/python3-setuptools-rust/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-setuptools-rust/template b/srcpkgs/python3-setuptools-rust/template index ec3f0eef7cd768..082b3faa8c8f79 100644 --- a/srcpkgs/python3-setuptools-rust/template +++ b/srcpkgs/python3-setuptools-rust/template @@ -1,7 +1,7 @@ # Template file for 'python3-setuptools-rust' pkgname=python3-setuptools-rust version=1.12.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3-semanticversion python3-setuptools python3-typing_extensions" From 93291770a46202f04bb1b529040e9086c926c1fc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:24 -0500 Subject: [PATCH 0025/1664] python3-tomli: rebuild for Python 3.14 --- srcpkgs/python3-tomli/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tomli/template b/srcpkgs/python3-tomli/template index b9915936843ef2..f079d1a5b8c9b1 100644 --- a/srcpkgs/python3-tomli/template +++ b/srcpkgs/python3-tomli/template @@ -1,7 +1,7 @@ # Template file for 'python3-tomli' pkgname=python3-tomli version=2.3.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3" From 2e5857439edaba1fd73f8c69e0a6e6d489d48bee Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:24 -0500 Subject: [PATCH 0026/1664] libxml2: rebuild for Python 3.14 --- srcpkgs/libxml2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libxml2/template b/srcpkgs/libxml2/template index 91307cc7c78bf5..86e49fb7cf6b01 100644 --- a/srcpkgs/libxml2/template +++ b/srcpkgs/libxml2/template @@ -1,7 +1,7 @@ # Template file for 'libxml2' pkgname=libxml2 version=2.13.8 -revision=2 +revision=3 build_style=gnu-configure configure_args="--with-threads --with-history --with-icu --with-legacy --with-ftp --with-xptr-locs --enable-static" From d0e79701647559a491ba7d8ad06d4139bc687e84 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:24 -0500 Subject: [PATCH 0027/1664] hatch-fancy-pypi-readme: rebuild for Python 3.14 --- srcpkgs/hatch-fancy-pypi-readme/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hatch-fancy-pypi-readme/template b/srcpkgs/hatch-fancy-pypi-readme/template index a87bfbac2a2f1c..3ab6758ac5370c 100644 --- a/srcpkgs/hatch-fancy-pypi-readme/template +++ b/srcpkgs/hatch-fancy-pypi-readme/template @@ -1,7 +1,7 @@ # Template file for 'hatch-fancy-pypi-readme' pkgname=hatch-fancy-pypi-readme version=24.1.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling" depends="hatchling" From 24f1407a47bbfab58d9192f391e85093cdaf77eb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:24 -0500 Subject: [PATCH 0028/1664] hatch-vcs: rebuild for Python 3.14 --- srcpkgs/hatch-vcs/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hatch-vcs/template b/srcpkgs/hatch-vcs/template index bce0986d838d24..a7f6df70989d63 100644 --- a/srcpkgs/hatch-vcs/template +++ b/srcpkgs/hatch-vcs/template @@ -1,7 +1,7 @@ # Template file for 'hatch-vcs' pkgname=hatch-vcs version=0.5.0 -revision=1 +revision=2 build_style=python3-pep517 make_check_args="--deselect tests/test_build.py::test_basic --deselect tests/test_build.py::test_write From 8020ebbbca2e7246bb8a24d3bac070e63c7a821b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:25 -0500 Subject: [PATCH 0029/1664] maturin: update to 1.10.2. --- srcpkgs/maturin/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/maturin/template b/srcpkgs/maturin/template index 35a8ea5744e764..8ce608458a6652 100644 --- a/srcpkgs/maturin/template +++ b/srcpkgs/maturin/template @@ -1,6 +1,6 @@ # Template file for 'maturin' pkgname=maturin -version=1.9.6 +version=1.10.2 revision=1 build_style=python3-pep517 build_helper="qemu rust" @@ -12,7 +12,7 @@ maintainer="Andrew J. Hesford " license="Apache-2.0, MIT" homepage="https://github.com/PyO3/maturin" distfiles="${homepage}/archive/v${version}.tar.gz" -checksum=c8aef8af6cd3d5b3331191b21191ec92d7b4ee0633e0799351a01af1c5ea2a6c +checksum=8acb4eb224896b3fa67036680e9e7908eeb8e5c2ea3a495e987a3f2edb666f36 # Tests use unstable features and fail to build make_check=no From 0e044ad0d7bbf295aa4ee891d70cde91f64b3ac7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:25 -0500 Subject: [PATCH 0030/1664] libxslt: rebuild for Python 3.14 --- srcpkgs/libxslt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libxslt/template b/srcpkgs/libxslt/template index d4950bdccfb719..8ee24558e2ef73 100644 --- a/srcpkgs/libxslt/template +++ b/srcpkgs/libxslt/template @@ -1,7 +1,7 @@ # Template file for 'libxslt' pkgname=libxslt version=1.1.43 -revision=2 +revision=3 build_style=gnu-configure configure_args="--enable-static --disable-dependency-tracking" hostmakedepends="docbook-xml docbook-xsl libtool pkg-config python3" From b126e8ea33eeb36ecd3d1fe4baf78dd009df7f5e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:25 -0500 Subject: [PATCH 0031/1664] python3-attrs: rebuild for Python 3.14 --- srcpkgs/python3-attrs/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-attrs/template b/srcpkgs/python3-attrs/template index 220008c24762c9..114f613e867fbe 100644 --- a/srcpkgs/python3-attrs/template +++ b/srcpkgs/python3-attrs/template @@ -1,7 +1,7 @@ # Template file for 'python3-attrs' pkgname=python3-attrs version=25.3.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools hatch-vcs hatch-fancy-pypi-readme" depends="python3" From 896a4ca121d85eb6f34bfb57eccfb5445344de61 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:25 -0500 Subject: [PATCH 0032/1664] python3-rpds-py: update to 0.29.0. --- srcpkgs/python3-rpds-py/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-rpds-py/template b/srcpkgs/python3-rpds-py/template index 072f1a7f4d9c2b..754a60459e269e 100644 --- a/srcpkgs/python3-rpds-py/template +++ b/srcpkgs/python3-rpds-py/template @@ -1,6 +1,6 @@ # Template file for 'python3-rpds-py' pkgname=python3-rpds-py -version=0.24.0 +version=0.29.0 revision=1 build_style=python3-pep517 build_helper=rust @@ -14,7 +14,7 @@ license="MIT" homepage="https://github.com/crate-py/rpds" changelog="https://github.com/crate-py/rpds/releases" distfiles="${PYPI_SITE}/r/rpds-py/rpds_py-${version}.tar.gz" -checksum=772cc1b2cd963e7e17e6cc55fe0371fb9c704d63e44cacec7b9b7f523b78919e +checksum=fe55fe686908f50154d1dc599232016e50c243b438c3b7432f24e2895b0e5359 post_install() { vlicense LICENSE From 1bcf0682859c1e04cc993239f1b5a69c20cf9615 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:25 -0500 Subject: [PATCH 0033/1664] asciidoc: rebuild for Python 3.14 --- srcpkgs/asciidoc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/asciidoc/template b/srcpkgs/asciidoc/template index bed5a1bab5f6e6..bd01b4585a1d31 100644 --- a/srcpkgs/asciidoc/template +++ b/srcpkgs/asciidoc/template @@ -1,7 +1,7 @@ # Template file for 'asciidoc' pkgname=asciidoc version=10.2.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="docbook-xsl libxslt python3-setuptools" depends="docbook-xsl libxslt python3" From 7c186f91118d146c90a2b81b920dfdf1b7bf171b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:25 -0500 Subject: [PATCH 0034/1664] python3-referencing: rebuild for Python 3.14 --- srcpkgs/python3-referencing/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-referencing/template b/srcpkgs/python3-referencing/template index c14279e75972c6..73b609f56cf64e 100644 --- a/srcpkgs/python3-referencing/template +++ b/srcpkgs/python3-referencing/template @@ -1,7 +1,7 @@ # Template file for 'python3-referencing' pkgname=python3-referencing version=0.36.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3-attrs python3-rpds-py" From f048bba5b8d16b6dba319d189b3c7676698baf2b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:26 -0500 Subject: [PATCH 0035/1664] python3-ply: rebuild for Python 3.14 --- srcpkgs/python3-ply/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ply/template b/srcpkgs/python3-ply/template index 2296aab2ffc642..393a49245a9973 100644 --- a/srcpkgs/python3-ply/template +++ b/srcpkgs/python3-ply/template @@ -1,7 +1,7 @@ # Template file for 'python3-ply' pkgname=python3-ply version=3.11 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From c10cd70d3d8651896c32277b935cf01470c7e83e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:26 -0500 Subject: [PATCH 0036/1664] python3-six: rebuild for Python 3.14 --- srcpkgs/python3-six/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-six/template b/srcpkgs/python3-six/template index 19b0812b9fd4e1..662280cdcea829 100644 --- a/srcpkgs/python3-six/template +++ b/srcpkgs/python3-six/template @@ -1,7 +1,7 @@ # Template file for 'python3-six' pkgname=python3-six version=1.17.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3" From 12383a8a33355de137d65dff17e72c2e7be6e10c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:26 -0500 Subject: [PATCH 0037/1664] python3-platformdirs: rebuild for Python 3.14 --- srcpkgs/python3-platformdirs/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-platformdirs/template b/srcpkgs/python3-platformdirs/template index bd30c7e1bc7165..018ef3ec5f4b3c 100644 --- a/srcpkgs/python3-platformdirs/template +++ b/srcpkgs/python3-platformdirs/template @@ -1,7 +1,7 @@ # Template file for 'python3-platformdirs' pkgname=python3-platformdirs version=4.4.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3" From 5ac1a3db603c240860f2ee673a7b2aad0a560d2b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:26 -0500 Subject: [PATCH 0038/1664] python3-traitlets: rebuild for Python 3.14 --- srcpkgs/python3-traitlets/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-traitlets/template b/srcpkgs/python3-traitlets/template index f7ca04adc0907d..05d630d6d11828 100644 --- a/srcpkgs/python3-traitlets/template +++ b/srcpkgs/python3-traitlets/template @@ -1,7 +1,7 @@ # Template file for 'python3-traitlets' pkgname=python3-traitlets version=5.14.3 -revision=2 +revision=3 build_style=python3-pep517 # needs python3-pytest-mypy make_check_args="--ignore tests/test_typing.py" From 5f6250186f4d0a36469c2186846025656923af51 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:26 -0500 Subject: [PATCH 0039/1664] ninja: rebuild for Python 3.14 --- srcpkgs/ninja/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ninja/template b/srcpkgs/ninja/template index 61125501e9b3af..85e227c6cb4571 100644 --- a/srcpkgs/ninja/template +++ b/srcpkgs/ninja/template @@ -1,7 +1,7 @@ # Template file for 'ninja' pkgname=ninja version=1.13.2 -revision=1 +revision=2 build_style=cmake make_cmd=make hostmakedepends="asciidoc" From 94656b24d7941b542dc52c372857fd064b8dbdc4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:26 -0500 Subject: [PATCH 0040/1664] python3-Cython: update to 3.2.2. --- srcpkgs/python3-Cython/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-Cython/template b/srcpkgs/python3-Cython/template index ec905a9a8ac192..9db3a6352406a9 100644 --- a/srcpkgs/python3-Cython/template +++ b/srcpkgs/python3-Cython/template @@ -1,6 +1,6 @@ # Template file for 'python3-Cython' pkgname=python3-Cython -version=3.1.4 +version=3.2.2 revision=1 build_style=python3-module hostmakedepends="python3-setuptools" @@ -12,7 +12,7 @@ license="Apache-2.0" homepage="https://cython.org/" changelog="https://raw.githubusercontent.com/cython/cython/master/CHANGES.rst" distfiles="${PYPI_SITE}/c/cython/cython-${version}.tar.gz" -checksum=9aefefe831331e2d66ab31799814eae4d0f8a2d246cbaaaa14d1be29ef777683 +checksum=c3add3d483acc73129a61d105389344d792c17e7c1cee24863f16416bd071634 # Tests are flaky make_check=no conflicts="python3-Cython0.29>=0" From 66c53be172944c820e3915b5e36ac839a9cfb4fe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:27 -0500 Subject: [PATCH 0041/1664] python3-scikit-build-core: rebuild for Python 3.14 --- srcpkgs/python3-scikit-build-core/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-scikit-build-core/template b/srcpkgs/python3-scikit-build-core/template index f1b74a20920a6c..39b8aa504e472e 100644 --- a/srcpkgs/python3-scikit-build-core/template +++ b/srcpkgs/python3-scikit-build-core/template @@ -1,7 +1,7 @@ # Template file for 'python3-scikit-build-core' pkgname=python3-scikit-build-core version=0.11.6 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3-packaging python3-pathspec cmake" From eaa6ac25777fe33a3ec0050639d1d66f48d61c63 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:27 -0500 Subject: [PATCH 0042/1664] python3-jsonschema-specifications: rebuild for Python 3.14 --- srcpkgs/python3-jsonschema-specifications/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jsonschema-specifications/template b/srcpkgs/python3-jsonschema-specifications/template index 07f2d655824871..c72a5b41e0fff6 100644 --- a/srcpkgs/python3-jsonschema-specifications/template +++ b/srcpkgs/python3-jsonschema-specifications/template @@ -1,7 +1,7 @@ # Template file for 'python3-jsonschema-specifications' pkgname=python3-jsonschema-specifications version=2024.10.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3-referencing" From 70e00ccbabb7c90381ce38498f631444e3257af3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:27 -0500 Subject: [PATCH 0043/1664] python3-pycparser: rebuild for Python 3.14 --- srcpkgs/python3-pycparser/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pycparser/template b/srcpkgs/python3-pycparser/template index 34df301d2fdcda..0222df48452708 100644 --- a/srcpkgs/python3-pycparser/template +++ b/srcpkgs/python3-pycparser/template @@ -1,7 +1,7 @@ # Template file for 'python3-pycparser' pkgname=python3-pycparser version=2.21 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-ply" From d15680b72c9a3305a4fb89c669afe987146d54fe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:27 -0500 Subject: [PATCH 0044/1664] python3-mdurl: rebuild for Python 3.14 --- srcpkgs/python3-mdurl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mdurl/template b/srcpkgs/python3-mdurl/template index 2587a60b8857d0..a3ba0b3482bd2d 100644 --- a/srcpkgs/python3-mdurl/template +++ b/srcpkgs/python3-mdurl/template @@ -1,7 +1,7 @@ # Template file for 'python3-mdurl' pkgname=python3-mdurl version=0.1.2 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3" From 69ec0475d172336be195f8ef345e52eccda1ce96 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:27 -0500 Subject: [PATCH 0045/1664] python3-dateutil: rebuild for Python 3.14 --- srcpkgs/python3-dateutil/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-dateutil/template b/srcpkgs/python3-dateutil/template index 3460e649eab05f..bfb2789143d6ff 100644 --- a/srcpkgs/python3-dateutil/template +++ b/srcpkgs/python3-dateutil/template @@ -1,7 +1,7 @@ # Template file for 'python3-dateutil' pkgname=python3-dateutil version=2.9.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3-six tzdata" From b96ec852ec40c3ad68ab25d515b26fd2b7a63ead Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:27 -0500 Subject: [PATCH 0046/1664] python3-jupyter_core: rebuild for Python 3.14 --- srcpkgs/python3-jupyter_core/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jupyter_core/template b/srcpkgs/python3-jupyter_core/template index 8ff9796b310896..087bd4f037c949 100644 --- a/srcpkgs/python3-jupyter_core/template +++ b/srcpkgs/python3-jupyter_core/template @@ -1,7 +1,7 @@ # Template file for 'python3-jupyter_core' pkgname=python3-jupyter_core version=5.8.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3-traitlets python3-platformdirs" From c3e10e8bfd03f8a37ce63fb8fee6e8d72b427517 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:28 -0500 Subject: [PATCH 0047/1664] python3-pyzmq: rebuild for Python 3.14 --- srcpkgs/python3-pyzmq/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyzmq/template b/srcpkgs/python3-pyzmq/template index 9acb2c33f9b39e..0c717b4b4c73c6 100644 --- a/srcpkgs/python3-pyzmq/template +++ b/srcpkgs/python3-pyzmq/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyzmq' pkgname=python3-pyzmq version=27.1.0 -revision=1 +revision=2 build_style=python3-pep517 make_check_args="--ignore tests/test_log.py" make_check_target="tests" From 229d0f5207708d694936e6d260ba321ff04f1283 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:28 -0500 Subject: [PATCH 0048/1664] python3-tornado: rebuild for Python 3.14 --- srcpkgs/python3-tornado/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tornado/template b/srcpkgs/python3-tornado/template index 58c90e7c8e3cde..77ad2b5c41e63f 100644 --- a/srcpkgs/python3-tornado/template +++ b/srcpkgs/python3-tornado/template @@ -1,7 +1,7 @@ # Template file for 'python3-tornado' pkgname=python3-tornado version=6.5.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" makedepends="python3-devel" From 848df73e2f75dac732e378711a2d28aa46a353eb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:28 -0500 Subject: [PATCH 0049/1664] hatch-nodejs-version: rebuild for Python 3.14 --- srcpkgs/hatch-nodejs-version/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hatch-nodejs-version/template b/srcpkgs/hatch-nodejs-version/template index eff3bdb4f779e4..aa01131b741f52 100644 --- a/srcpkgs/hatch-nodejs-version/template +++ b/srcpkgs/hatch-nodejs-version/template @@ -1,7 +1,7 @@ # Template file for 'hatch-nodejs-version' pkgname=hatch-nodejs-version version=0.3.2 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="hatchling" depends="hatchling" From f8d7ba10c88d216e13aaef1d45e006c75e1b737d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:28 -0500 Subject: [PATCH 0050/1664] python3-fastjsonschema: rebuild for Python 3.14 --- srcpkgs/python3-fastjsonschema/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-fastjsonschema/template b/srcpkgs/python3-fastjsonschema/template index e0436be5e87a84..e531d49ea0ff0f 100644 --- a/srcpkgs/python3-fastjsonschema/template +++ b/srcpkgs/python3-fastjsonschema/template @@ -1,7 +1,7 @@ # Template file for 'python3-fastjsonschema' pkgname=python3-fastjsonschema version=2.21.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 09980e49d69b5cbd43234b846149e6cee1053eae Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:28 -0500 Subject: [PATCH 0051/1664] python3-jsonschema: rebuild for Python 3.14 --- srcpkgs/python3-jsonschema/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jsonschema/template b/srcpkgs/python3-jsonschema/template index d6eb1966a7d700..ffa04241583a04 100644 --- a/srcpkgs/python3-jsonschema/template +++ b/srcpkgs/python3-jsonschema/template @@ -1,7 +1,7 @@ # Template file for 'python3-jsonschema' pkgname=python3-jsonschema version=4.23.0 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs hatch-fancy-pypi-readme" depends="python3-attrs python3-jsonschema-specifications python3-referencing From 24cf921999540150b4ab4332bbd1dd153f682cd1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:28 -0500 Subject: [PATCH 0052/1664] python3-cffi: rebuild for Python 3.14 --- srcpkgs/python3-cffi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cffi/template b/srcpkgs/python3-cffi/template index c968a9dd176197..a2b432407f0084 100644 --- a/srcpkgs/python3-cffi/template +++ b/srcpkgs/python3-cffi/template @@ -1,7 +1,7 @@ # Template file for 'python3-cffi' pkgname=python3-cffi version=2.0.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel libffi-devel" makedepends="python3-devel libffi-devel" From 6bb712bf94cd4094fa166b1fd93cf21cf8aa13dd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:28 -0500 Subject: [PATCH 0053/1664] python3-Pygments: rebuild for Python 3.14 --- srcpkgs/python3-Pygments/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Pygments/template b/srcpkgs/python3-Pygments/template index a4fabe05dd4fcd..114f621a97f43f 100644 --- a/srcpkgs/python3-Pygments/template +++ b/srcpkgs/python3-Pygments/template @@ -1,7 +1,7 @@ # Template file for 'python3-Pygments' pkgname=python3-Pygments version=2.19.2 -revision=1 +revision=2 build_style=python3-pep517 # Ignored tests rely on unpackaged wcag_contrast_ratio module make_check_args="--ignore=tests/contrast/test_contrasts.py" From 248fe8e7db77f0451351205648ac1ebfebab95f1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:29 -0500 Subject: [PATCH 0054/1664] python3-markdown-it: rebuild for Python 3.14 --- srcpkgs/python3-markdown-it/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-markdown-it/template b/srcpkgs/python3-markdown-it/template index 9598f3afee0ffb..1987073a9101ae 100644 --- a/srcpkgs/python3-markdown-it/template +++ b/srcpkgs/python3-markdown-it/template @@ -1,7 +1,7 @@ # Template file for 'python3-markdown-it' pkgname=python3-markdown-it version=3.0.0 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3-mdurl" From 8ae560cf447b4835ebec924002aecb4a0219da9b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:29 -0500 Subject: [PATCH 0055/1664] python3-poetry-core: rebuild for Python 3.14 --- srcpkgs/python3-poetry-core/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-poetry-core/template b/srcpkgs/python3-poetry-core/template index c864116f5d7db2..dc5944f4a6d456 100644 --- a/srcpkgs/python3-poetry-core/template +++ b/srcpkgs/python3-poetry-core/template @@ -1,7 +1,7 @@ # Template file for 'python3-poetry-core' pkgname=python3-poetry-core version=2.2.0 -revision=1 +revision=2 build_style="python3-pep517" depends="python3" checkdepends="python3-devel python3-setuptools python3-virtualenv python3-pyrsistent From fb2841efa5c7cd82a139248e39ed7851f29489c8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:29 -0500 Subject: [PATCH 0056/1664] python3-soupsieve: rebuild for Python 3.14 --- srcpkgs/python3-soupsieve/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-soupsieve/template b/srcpkgs/python3-soupsieve/template index 6e645de8048b71..1d5742ca178628 100644 --- a/srcpkgs/python3-soupsieve/template +++ b/srcpkgs/python3-soupsieve/template @@ -1,7 +1,7 @@ # Template file for 'python3-soupsieve' pkgname=python3-soupsieve version=2.7 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3" From a4e2e6bba51a25107d8b3108ad119fec24a8764f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:29 -0500 Subject: [PATCH 0057/1664] python3-MarkupSafe: rebuild for Python 3.14 --- srcpkgs/python3-MarkupSafe/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-MarkupSafe/template b/srcpkgs/python3-MarkupSafe/template index 24f83c630bc176..8257e1cd4227e4 100644 --- a/srcpkgs/python3-MarkupSafe/template +++ b/srcpkgs/python3-MarkupSafe/template @@ -1,7 +1,7 @@ # Template file for 'python3-MarkupSafe' pkgname=python3-MarkupSafe version=3.0.3 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From 213550c94e713165e1da5db8dd2fa42018ba506f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:29 -0500 Subject: [PATCH 0058/1664] python3-webencodings: rebuild for Python 3.14 --- srcpkgs/python3-webencodings/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-webencodings/template b/srcpkgs/python3-webencodings/template index 996bfb0a45c606..d4a795e8d14b01 100644 --- a/srcpkgs/python3-webencodings/template +++ b/srcpkgs/python3-webencodings/template @@ -1,7 +1,7 @@ # Template file for 'python3-webencodings' pkgname=python3-webencodings version=0.5.1 -revision=10 +revision=11 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From c8a873c582797adb9740171e8d987fd039e6d11a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:29 -0500 Subject: [PATCH 0059/1664] hatch-jupyter-builder: rebuild for Python 3.14 --- srcpkgs/hatch-jupyter-builder/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hatch-jupyter-builder/template b/srcpkgs/hatch-jupyter-builder/template index 0d6d15ac01c671..f9fec7bcd919b8 100644 --- a/srcpkgs/hatch-jupyter-builder/template +++ b/srcpkgs/hatch-jupyter-builder/template @@ -1,7 +1,7 @@ # Template file for 'hatch-jupyter-builder' pkgname=hatch-jupyter-builder version=0.9.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling" depends="hatchling" From ee57662404376d67b2146857e9c7b2fedb8844d8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:30 -0500 Subject: [PATCH 0060/1664] python3-jupyter_client: rebuild for Python 3.14 --- srcpkgs/python3-jupyter_client/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jupyter_client/template b/srcpkgs/python3-jupyter_client/template index 55a5f7a3b63a1a..52a066349d76db 100644 --- a/srcpkgs/python3-jupyter_client/template +++ b/srcpkgs/python3-jupyter_client/template @@ -1,7 +1,7 @@ # Template file for 'python3-jupyter_client' pkgname=python3-jupyter_client version=8.6.3 -revision=1 +revision=2 build_style=python3-pep517 # random failures (see https://github.com/jupyter/jupyter_client/issues/979) make_check_args=" From 243017e08cdc84ab67ef72af965665e10a3ce36a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:30 -0500 Subject: [PATCH 0061/1664] python3-jupyter_nbformat: rebuild for Python 3.14 --- srcpkgs/python3-jupyter_nbformat/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jupyter_nbformat/template b/srcpkgs/python3-jupyter_nbformat/template index 779116e239f75c..4bf0d31582c270 100644 --- a/srcpkgs/python3-jupyter_nbformat/template +++ b/srcpkgs/python3-jupyter_nbformat/template @@ -1,7 +1,7 @@ # Template file for 'python3-jupyter_nbformat' pkgname=python3-jupyter_nbformat version=5.10.4 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling hatch-nodejs-version" depends="python3-fastjsonschema python3-jsonschema python3-jupyter_core From bb64e99b1035762907026d5d7750bef419897426 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:30 -0500 Subject: [PATCH 0062/1664] python3-ptyprocess: rebuild for Python 3.14 --- srcpkgs/python3-ptyprocess/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ptyprocess/template b/srcpkgs/python3-ptyprocess/template index 16695ff234bd48..fcd691b336c265 100644 --- a/srcpkgs/python3-ptyprocess/template +++ b/srcpkgs/python3-ptyprocess/template @@ -1,7 +1,7 @@ # Template file for 'python3-ptyprocess' pkgname=python3-ptyprocess version=0.7.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 9722ef6ec585e4b710ec8f131d1688567985d7af Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:30 -0500 Subject: [PATCH 0063/1664] python3-smartypants: rebuild for Python 3.14 --- srcpkgs/python3-smartypants/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-smartypants/template b/srcpkgs/python3-smartypants/template index 1b39fe1e17eb1e..02df0de247140c 100644 --- a/srcpkgs/python3-smartypants/template +++ b/srcpkgs/python3-smartypants/template @@ -1,7 +1,7 @@ # Template file for 'python3-smartypants' pkgname=python3-smartypants version=2.0.2 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From d61825e5642d1201a76a965962d657e9db9e545a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:30 -0500 Subject: [PATCH 0064/1664] python3-idna: rebuild for Python 3.14 --- srcpkgs/python3-idna/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-idna/template b/srcpkgs/python3-idna/template index e46b62745f13c5..84677ba5713b48 100644 --- a/srcpkgs/python3-idna/template +++ b/srcpkgs/python3-idna/template @@ -1,7 +1,7 @@ # Template file for 'python3-idna' pkgname=python3-idna version=3.10 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3" From f6c6ad24ecdece67e2777dfa880027b11ef7db44 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:30 -0500 Subject: [PATCH 0065/1664] python3-sniffio: rebuild for Python 3.14 --- srcpkgs/python3-sniffio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sniffio/template b/srcpkgs/python3-sniffio/template index 8e06d2f57941fc..8d97082aa33d77 100644 --- a/srcpkgs/python3-sniffio/template +++ b/srcpkgs/python3-sniffio/template @@ -1,7 +1,7 @@ # Template file for 'python3-sniffio' pkgname=python3-sniffio version=1.3.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3" From 30861da391dd7752abb4b4eb644078c0b3784309 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:31 -0500 Subject: [PATCH 0066/1664] python3-hpack: rebuild for Python 3.14 --- srcpkgs/python3-hpack/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-hpack/template b/srcpkgs/python3-hpack/template index 0f69aa0d2bae1e..fe61a44699fa69 100644 --- a/srcpkgs/python3-hpack/template +++ b/srcpkgs/python3-hpack/template @@ -1,7 +1,7 @@ # Template file for 'python3-hpack' pkgname=python3-hpack version=4.0.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From f24f39b9ba0c6cdbad808f650d155dce8c6910ed Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:31 -0500 Subject: [PATCH 0067/1664] python3-hyperframe: rebuild for Python 3.14 --- srcpkgs/python3-hyperframe/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-hyperframe/template b/srcpkgs/python3-hyperframe/template index 865d3e5e55f5af..c656da07e7bcc7 100644 --- a/srcpkgs/python3-hyperframe/template +++ b/srcpkgs/python3-hyperframe/template @@ -1,7 +1,7 @@ # Template file for 'python3-hyperframe' pkgname=python3-hyperframe version=6.0.1 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 05d1caca02cbb4f1a124650605852804e708fcd2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:31 -0500 Subject: [PATCH 0068/1664] python3-outcome: rebuild for Python 3.14 --- srcpkgs/python3-outcome/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-outcome/template b/srcpkgs/python3-outcome/template index 37f235a4871d10..a2e6cedb8441bb 100644 --- a/srcpkgs/python3-outcome/template +++ b/srcpkgs/python3-outcome/template @@ -1,7 +1,7 @@ # Template file for 'python3-outcome' pkgname=python3-outcome version=1.3.0.post0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3-attrs" From 3d88a86438d6f130b966f5a8272f430c8d3cb53f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:31 -0500 Subject: [PATCH 0069/1664] python3-sortedcontainers: rebuild for Python 3.14 --- srcpkgs/python3-sortedcontainers/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sortedcontainers/template b/srcpkgs/python3-sortedcontainers/template index d7c314578c9236..1937e77200762e 100644 --- a/srcpkgs/python3-sortedcontainers/template +++ b/srcpkgs/python3-sortedcontainers/template @@ -1,7 +1,7 @@ # Template file for 'python3-sortedcontainers' pkgname=python3-sortedcontainers version=2.4.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 69a488755dcd68c9a5ce9572bfafbc500cbc0115 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:31 -0500 Subject: [PATCH 0070/1664] python3-parso: rebuild for Python 3.14 --- srcpkgs/python3-parso/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-parso/template b/srcpkgs/python3-parso/template index ca10d867796e1e..e0544495ae0bf5 100644 --- a/srcpkgs/python3-parso/template +++ b/srcpkgs/python3-parso/template @@ -1,7 +1,7 @@ # Template file for 'python3-parso' pkgname=python3-parso version=0.8.5 -revision=1 +revision=2 build_style=python3-module # Several error messages changed form and trigger inappropriate failures make_check_args="--ignore=test/test_python_errors.py" From b64e0eeee0a204202e14adf0beaed4220fa07b91 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:31 -0500 Subject: [PATCH 0071/1664] python3-wcwidth: rebuild for Python 3.14 --- srcpkgs/python3-wcwidth/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-wcwidth/template b/srcpkgs/python3-wcwidth/template index 00e305b7158874..27e3985d9794cc 100644 --- a/srcpkgs/python3-wcwidth/template +++ b/srcpkgs/python3-wcwidth/template @@ -1,7 +1,7 @@ # Template file for 'python3-wcwidth' pkgname=python3-wcwidth version=0.2.13 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From bb669b4d782b2cf9f81aa7ff36b090a503095b60 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:32 -0500 Subject: [PATCH 0072/1664] python3-asttokens: update to 3.0.1. --- srcpkgs/python3-asttokens/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-asttokens/template b/srcpkgs/python3-asttokens/template index da9c8019895b03..88a9a0ecd2abdc 100644 --- a/srcpkgs/python3-asttokens/template +++ b/srcpkgs/python3-asttokens/template @@ -1,6 +1,6 @@ # Template file for 'python3-asttokens' pkgname=python3-asttokens -version=3.0.0 +version=3.0.1 revision=1 build_style=python3-module # needs a specific astroid version @@ -14,4 +14,4 @@ maintainer="Andrew J. Hesford " license="Apache-2.0" homepage="https://github.com/gristlabs/asttokens" distfiles="${PYPI_SITE}/a/asttokens/asttokens-${version}.tar.gz" -checksum=0dcd8baa8d62b0c1d118b399b2ddba3c4aff271d0d7a9e0d4c1681c79035bbc7 +checksum=71a4ee5de0bde6a31d64f6b13f2293ac190344478f081c3d1bccfcf5eacb0cb7 From c5c9ed13c71407fb50b9506ace05951fb20021bf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:32 -0500 Subject: [PATCH 0073/1664] python3-executing: rebuild for Python 3.14 --- srcpkgs/python3-executing/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-executing/template b/srcpkgs/python3-executing/template index 9f104fc3076464..9f4fa198a8869d 100644 --- a/srcpkgs/python3-executing/template +++ b/srcpkgs/python3-executing/template @@ -1,7 +1,7 @@ # Template file for 'python3-executing' pkgname=python3-executing version=2.2.1 -revision=1 +revision=2 build_style=python3-pep517 make_check_target="tests/test_main.py" hostmakedepends="python3-setuptools_scm python3-wheel" From e1f9ed488257e137168665df3bc228db047cf27a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:32 -0500 Subject: [PATCH 0074/1664] python3-pure_eval: rebuild for Python 3.14 --- srcpkgs/python3-pure_eval/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pure_eval/template b/srcpkgs/python3-pure_eval/template index c76df9af49e11d..690477c94024b4 100644 --- a/srcpkgs/python3-pure_eval/template +++ b/srcpkgs/python3-pure_eval/template @@ -1,7 +1,7 @@ # Template file for 'python3-pure_eval' pkgname=python3-pure_eval version=0.2.3 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3" From ce61dc026adc9246a1de514bbf19ec2d3d33671f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:32 -0500 Subject: [PATCH 0075/1664] python3-argon2-cffi-bindings: rebuild for Python 3.14 --- srcpkgs/python3-argon2-cffi-bindings/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-argon2-cffi-bindings/template b/srcpkgs/python3-argon2-cffi-bindings/template index 3dfe9b2d6c163d..aba16a2b18f04e 100644 --- a/srcpkgs/python3-argon2-cffi-bindings/template +++ b/srcpkgs/python3-argon2-cffi-bindings/template @@ -1,7 +1,7 @@ # Template file for 'python3-argon2-cffi-bindings' pkgname=python3-argon2-cffi-bindings version=21.2.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel python3-cffi" makedepends="python3-devel libargon2-devel" From 9093aaab87c021bc2bef28d94188fbff1204c5fc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:32 -0500 Subject: [PATCH 0076/1664] python3-click: rebuild for Python 3.14 --- srcpkgs/python3-click/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-click/template b/srcpkgs/python3-click/template index 7b0b5188ef6264..b27c35bf392076 100644 --- a/srcpkgs/python3-click/template +++ b/srcpkgs/python3-click/template @@ -1,7 +1,7 @@ # Template file for 'python3-click' pkgname=python3-click version=8.3.0 -revision=1 +revision=2 build_style="python3-pep517" hostmakedepends="python3-flit_core" depends="python3" From a415b856be9dd4a0a95df785d331d7ef6f67b829 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:32 -0500 Subject: [PATCH 0077/1664] python3-json-logger: rebuild for Python 3.14 --- srcpkgs/python3-json-logger/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-json-logger/template b/srcpkgs/python3-json-logger/template index 8a4380354c2446..6f3351aed96067 100644 --- a/srcpkgs/python3-json-logger/template +++ b/srcpkgs/python3-json-logger/template @@ -1,7 +1,7 @@ # Template file for 'python3-json-logger' pkgname=python3-json-logger version=2.0.7 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 84d3a049cfdcf59e6cf5a7582af24790d7db0b42 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:32 -0500 Subject: [PATCH 0078/1664] python3-rfc3339-validator: rebuild for Python 3.14 --- srcpkgs/python3-rfc3339-validator/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-rfc3339-validator/template b/srcpkgs/python3-rfc3339-validator/template index f1f48a8a75e2ce..743ea5e5eacf69 100644 --- a/srcpkgs/python3-rfc3339-validator/template +++ b/srcpkgs/python3-rfc3339-validator/template @@ -1,7 +1,7 @@ # Template file for 'python3-rfc3339-validator' pkgname=python3-rfc3339-validator version=0.1.4 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-six" From a2b786a25573a1963054e04b2d9722f1e4719ed6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:33 -0500 Subject: [PATCH 0079/1664] python3-rfc3986-validator: rebuild for Python 3.14 --- srcpkgs/python3-rfc3986-validator/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-rfc3986-validator/template b/srcpkgs/python3-rfc3986-validator/template index 991311cbc473ed..bcae99d5ad666d 100644 --- a/srcpkgs/python3-rfc3986-validator/template +++ b/srcpkgs/python3-rfc3986-validator/template @@ -1,7 +1,7 @@ # Template file for 'python3-rfc3986-validator' pkgname=python3-rfc3986-validator version=0.1.1 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 0a42c1af8b9fbd83fed95b714c3da0b2a4a10946 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:33 -0500 Subject: [PATCH 0080/1664] python3-rich: rebuild for Python 3.14 --- srcpkgs/python3-rich/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-rich/template b/srcpkgs/python3-rich/template index 8276ea1776327f..f413dda12e667f 100644 --- a/srcpkgs/python3-rich/template +++ b/srcpkgs/python3-rich/template @@ -1,7 +1,7 @@ # Template file for 'python3-rich' pkgname=python3-rich version=14.2.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-Pygments python3-markdown-it" From b7210e165e9815754ee3bcc8c005cc08e090dc73 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:33 -0500 Subject: [PATCH 0081/1664] python3-yaml: rebuild for Python 3.14 --- srcpkgs/python3-yaml/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-yaml/template b/srcpkgs/python3-yaml/template index 73269ae2f8256d..7d32d4d240eebf 100644 --- a/srcpkgs/python3-yaml/template +++ b/srcpkgs/python3-yaml/template @@ -1,7 +1,7 @@ # Template file for 'python3-yaml' pkgname=python3-yaml version=6.0.2 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" makedepends="libyaml-devel python3-devel" From b86a66b77ebcdd208d9939ffd66deeeaea0ef562 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:33 -0500 Subject: [PATCH 0082/1664] python3-BeautifulSoup4: rebuild for Python 3.14 --- srcpkgs/python3-BeautifulSoup4/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-BeautifulSoup4/template b/srcpkgs/python3-BeautifulSoup4/template index 3bb906b2405f17..fb5518e536f295 100644 --- a/srcpkgs/python3-BeautifulSoup4/template +++ b/srcpkgs/python3-BeautifulSoup4/template @@ -1,7 +1,7 @@ # Template file for 'python3-BeautifulSoup4' pkgname=python3-BeautifulSoup4 version=4.13.4 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3-soupsieve python3-typing_extensions" From a50b43932d58b9f506bfc71d1ae588b66e2b418c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:33 -0500 Subject: [PATCH 0083/1664] python3-Jinja2: rebuild for Python 3.14 --- srcpkgs/python3-Jinja2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Jinja2/template b/srcpkgs/python3-Jinja2/template index 2f026bd1c3a724..6e1af74a433938 100644 --- a/srcpkgs/python3-Jinja2/template +++ b/srcpkgs/python3-Jinja2/template @@ -1,7 +1,7 @@ # Template file for 'python3-Jinja2' pkgname=python3-Jinja2 version=3.1.6 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3-MarkupSafe" From 939d874e5d22ba3c93329ad2ff07aafaa4102a2e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:33 -0500 Subject: [PATCH 0084/1664] python3-bleach: rebuild for Python 3.14 --- srcpkgs/python3-bleach/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-bleach/template b/srcpkgs/python3-bleach/template index 82f2797e85784b..2a9fbe1abf13aa 100644 --- a/srcpkgs/python3-bleach/template +++ b/srcpkgs/python3-bleach/template @@ -1,7 +1,7 @@ # Template file for 'python3-bleach' pkgname=python3-bleach version=6.2.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-six python3-webencodings" From 8d80899a7993bee92861997516dfd60ef9177a41 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:34 -0500 Subject: [PATCH 0085/1664] python3-defusedxml: rebuild for Python 3.14 --- srcpkgs/python3-defusedxml/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-defusedxml/template b/srcpkgs/python3-defusedxml/template index 647dbd9a199447..6dc8438ddfe228 100644 --- a/srcpkgs/python3-defusedxml/template +++ b/srcpkgs/python3-defusedxml/template @@ -1,7 +1,7 @@ # Template file for 'python3-defusedxml' pkgname=python3-defusedxml version=0.7.1 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 1972cb7ee3c635d80c7929e2d88825e3e0016b7b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:34 -0500 Subject: [PATCH 0086/1664] python3-jupyterlab_pygments: rebuild for Python 3.14 --- srcpkgs/python3-jupyterlab_pygments/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jupyterlab_pygments/template b/srcpkgs/python3-jupyterlab_pygments/template index d3a4e9506d5064..8207a199dfc717 100644 --- a/srcpkgs/python3-jupyterlab_pygments/template +++ b/srcpkgs/python3-jupyterlab_pygments/template @@ -1,7 +1,7 @@ # Template file for 'python3-jupyterlab_pygments' pkgname=python3-jupyterlab_pygments version=0.3.0 -revision=2 +revision=3 build_style=python3-pep517 make_build_args="--skip-dependency-check" # jupyterlab not needed hostmakedepends="hatch-jupyter-builder hatch-nodejs-version" From c0e50919c67a16b014c10eab57844a02e8788170 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:34 -0500 Subject: [PATCH 0087/1664] python3-mistune: rebuild for Python 3.14 --- srcpkgs/python3-mistune/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mistune/template b/srcpkgs/python3-mistune/template index 2aba5c34737737..46710df2953f70 100644 --- a/srcpkgs/python3-mistune/template +++ b/srcpkgs/python3-mistune/template @@ -1,7 +1,7 @@ # Template file for 'python3-mistune' pkgname=python3-mistune version=3.1.3 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 25e45f7341c9b177b8e4356a1dcbaad3f48f8c13 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:34 -0500 Subject: [PATCH 0088/1664] python3-nbclient: rebuild for Python 3.14 --- srcpkgs/python3-nbclient/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-nbclient/template b/srcpkgs/python3-nbclient/template index b2666af9d1a1d9..b2b46a98e004df 100644 --- a/srcpkgs/python3-nbclient/template +++ b/srcpkgs/python3-nbclient/template @@ -1,7 +1,7 @@ # Template file for 'python3-nbclient' pkgname=python3-nbclient version=0.10.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3-jupyter_client python3-jupyter_core python3-jupyter_nbformat From cbbb72fe67a9ddb5fd8f8bdbaed09a98d3733f3f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:34 -0500 Subject: [PATCH 0089/1664] python3-pandocfilters: rebuild for Python 3.14 --- srcpkgs/python3-pandocfilters/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pandocfilters/template b/srcpkgs/python3-pandocfilters/template index ab7efec72a7899..6cc6cea73284c6 100644 --- a/srcpkgs/python3-pandocfilters/template +++ b/srcpkgs/python3-pandocfilters/template @@ -1,7 +1,7 @@ # Template file for 'python3-pandocfilters' pkgname=python3-pandocfilters version=1.5.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3" From 1ba2d948907c332babb1b5a964e9227f1947c8d4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:34 -0500 Subject: [PATCH 0090/1664] python3-tinycss2: rebuild for Python 3.14 --- srcpkgs/python3-tinycss2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tinycss2/template b/srcpkgs/python3-tinycss2/template index f6a82308faa6e2..17c933d141bb8f 100644 --- a/srcpkgs/python3-tinycss2/template +++ b/srcpkgs/python3-tinycss2/template @@ -1,7 +1,7 @@ # Template file for 'python3-tinycss2' pkgname=python3-tinycss2 version=1.4.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-flit_core python3-webencodings" depends="python3-webencodings" From 77c9fafe366ba71b70ef306a75bd5829d9e68543 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:34 -0500 Subject: [PATCH 0091/1664] python3-terminado: rebuild for Python 3.14 --- srcpkgs/python3-terminado/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-terminado/template b/srcpkgs/python3-terminado/template index 178d9078b0dee9..c37102fbb18d9f 100644 --- a/srcpkgs/python3-terminado/template +++ b/srcpkgs/python3-terminado/template @@ -1,7 +1,7 @@ # Template file for 'python3-terminado' pkgname=python3-terminado version=0.18.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3-ptyprocess python3-tornado" From 3c2495723fc955b429d670eace3833e377800954 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:35 -0500 Subject: [PATCH 0092/1664] python3-charset-normalizer: rebuild for Python 3.14 --- srcpkgs/python3-charset-normalizer/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-charset-normalizer/template b/srcpkgs/python3-charset-normalizer/template index b2dcd52dce4f77..7f69a5969caf54 100644 --- a/srcpkgs/python3-charset-normalizer/template +++ b/srcpkgs/python3-charset-normalizer/template @@ -1,7 +1,7 @@ # Template file for 'python3-charset-normalizer' pkgname=python3-charset-normalizer version=3.3.2 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From a726c3e293b980e209105935e74fa9b604c7ee50 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:35 -0500 Subject: [PATCH 0093/1664] python3-urllib3: rebuild for Python 3.14 --- srcpkgs/python3-urllib3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-urllib3/template b/srcpkgs/python3-urllib3/template index 9237f71cf13bc3..f9c434e2a4fed7 100644 --- a/srcpkgs/python3-urllib3/template +++ b/srcpkgs/python3-urllib3/template @@ -1,7 +1,7 @@ # Template file for 'python3-urllib3' pkgname=python3-urllib3 version=2.5.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs python3-setuptools_scm" depends="python3" From 0b4568533f6407d26326c637320cd3f1f60bf4bd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:35 -0500 Subject: [PATCH 0094/1664] python3-Markdown: rebuild for Python 3.14 --- srcpkgs/python3-Markdown/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Markdown/template b/srcpkgs/python3-Markdown/template index 12acc077389e09..05f9c16022d268 100644 --- a/srcpkgs/python3-Markdown/template +++ b/srcpkgs/python3-Markdown/template @@ -1,7 +1,7 @@ # Template file for 'python3-Markdown' pkgname=python3-Markdown version=3.6 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3" From 6fdd96cc9c80d127d9c8099a2ed0d6271b867180 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:35 -0500 Subject: [PATCH 0095/1664] python3-toml: rebuild for Python 3.14 --- srcpkgs/python3-toml/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-toml/template b/srcpkgs/python3-toml/template index d276e72468e567..7851676a5de31f 100644 --- a/srcpkgs/python3-toml/template +++ b/srcpkgs/python3-toml/template @@ -1,7 +1,7 @@ # Template file for 'python3-toml' pkgname=python3-toml version=0.10.2 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 728bc8d415b2236c892f1f09d9f3a05ebc5e6ac2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:35 -0500 Subject: [PATCH 0096/1664] python3-typogrify: rebuild for Python 3.14 --- srcpkgs/python3-typogrify/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-typogrify/template b/srcpkgs/python3-typogrify/template index d409713af417d3..7bfc5249695713 100644 --- a/srcpkgs/python3-typogrify/template +++ b/srcpkgs/python3-typogrify/template @@ -1,7 +1,7 @@ # Template file for 'python3-typogrify' pkgname=python3-typogrify version=2.1.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3-smartypants" From 1a3dc94143211bffa6e4ba00a82c3c70b7bcecc7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:35 -0500 Subject: [PATCH 0097/1664] meson: rebuild for Python 3.14 --- srcpkgs/meson/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template index 24e3b6b0d8a291..94208feaf60119 100644 --- a/srcpkgs/meson/template +++ b/srcpkgs/meson/template @@ -1,7 +1,7 @@ # Template file for 'meson' pkgname=meson version=1.9.1 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-devel python3-setuptools" depends="ninja python3-setuptools" From ba08ccb15b632961af8c5b0955f1ac1352b43587 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:36 -0500 Subject: [PATCH 0098/1664] python3-Mako: rebuild for Python 3.14 --- srcpkgs/python3-Mako/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Mako/template b/srcpkgs/python3-Mako/template index c77e8c0e722fa0..762627cba6e132 100644 --- a/srcpkgs/python3-Mako/template +++ b/srcpkgs/python3-Mako/template @@ -1,7 +1,7 @@ # Template file for 'python3-Mako' pkgname=python3-Mako version=1.3.2 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-MarkupSafe" From c09523315d0ca7d3cf094609df5786eeb27f9abf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:36 -0500 Subject: [PATCH 0099/1664] python3-anyio: rebuild for Python 3.14 --- srcpkgs/python3-anyio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-anyio/template b/srcpkgs/python3-anyio/template index ac54658e218a22..8765d22d5c4f23 100644 --- a/srcpkgs/python3-anyio/template +++ b/srcpkgs/python3-anyio/template @@ -1,7 +1,7 @@ # Template file for 'python3-anyio' pkgname=python3-anyio version=4.9.0 -revision=1 +revision=2 build_style=python3-pep517 # This file needs python module `exceptiongroup` make_check_args="--ignore tests/test_taskgroups.py" From c690bdc727eccdf2b846490ae506c31cfde28735 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:36 -0500 Subject: [PATCH 0100/1664] python3-certifi: rebuild for Python 3.14 --- srcpkgs/python3-certifi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-certifi/template b/srcpkgs/python3-certifi/template index d5eeb68a616282..8136077b54e055 100644 --- a/srcpkgs/python3-certifi/template +++ b/srcpkgs/python3-certifi/template @@ -1,7 +1,7 @@ # Template file for 'python3-certifi' pkgname=python3-certifi version=2025.1.31 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 ca-certificates" From dc11e899edc8db86d1f547d70f09c421519c2ae7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:36 -0500 Subject: [PATCH 0101/1664] python3-h11: rebuild for Python 3.14 --- srcpkgs/python3-h11/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-h11/template b/srcpkgs/python3-h11/template index aaf4032d6e8541..f49663b8b5fc9b 100644 --- a/srcpkgs/python3-h11/template +++ b/srcpkgs/python3-h11/template @@ -1,7 +1,7 @@ # Template file for 'python3-h11' pkgname=python3-h11 version=0.16.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3" From 715647e7185254224fbb3e9255073dab848435d1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:36 -0500 Subject: [PATCH 0102/1664] python3-h2: rebuild for Python 3.14 --- srcpkgs/python3-h2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-h2/template b/srcpkgs/python3-h2/template index 8cb25a17b24bb8..da4f9dda0c36b2 100644 --- a/srcpkgs/python3-h2/template +++ b/srcpkgs/python3-h2/template @@ -1,7 +1,7 @@ # Template file for 'python3-h2' pkgname=python3-h2 version=4.1.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-hpack python3-hyperframe" From d6ffa3eb2709bf9e7b9ea769c64943fead1aacbe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:36 -0500 Subject: [PATCH 0103/1664] python3-socksio: rebuild for Python 3.14 --- srcpkgs/python3-socksio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-socksio/template b/srcpkgs/python3-socksio/template index cc9b0dca82b835..371fe7d27210bd 100644 --- a/srcpkgs/python3-socksio/template +++ b/srcpkgs/python3-socksio/template @@ -1,7 +1,7 @@ # Template file for 'python3-socksio' pkgname=python3-socksio version=1.0.0 -revision=4 +revision=5 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-flit_core" short_desc="Sans-I/O implementation of SOCKS4/5" From 9c5cb5121c921ea9560d2ff6bf3d83aaf15bcee5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:37 -0500 Subject: [PATCH 0104/1664] python3-trio: rebuild for Python 3.14 --- srcpkgs/python3-trio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-trio/template b/srcpkgs/python3-trio/template index d6510e411af9f0..3442e0f684c80d 100644 --- a/srcpkgs/python3-trio/template +++ b/srcpkgs/python3-trio/template @@ -1,7 +1,7 @@ # Template file for 'python3-trio' pkgname=python3-trio version=0.30.0 -revision=1 +revision=2 build_style=python3-pep517 # Needs astor (https://pypi.org/project/astor/) make_check_args="--ignore src/trio/_tests/tools/test_gen_exports.py" From 574435a51f0a09404bda4ada32b6ed8ae45d2f02 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:37 -0500 Subject: [PATCH 0105/1664] python3-backcall: rebuild for Python 3.14 --- srcpkgs/python3-backcall/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-backcall/template b/srcpkgs/python3-backcall/template index b0c397cbe54018..f3389ca1253bf1 100644 --- a/srcpkgs/python3-backcall/template +++ b/srcpkgs/python3-backcall/template @@ -1,7 +1,7 @@ # Template file for 'python3-backcall' pkgname=python3-backcall version=0.2.0 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 762c163d240639334862f00f239ce54181b7f72d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:37 -0500 Subject: [PATCH 0106/1664] python3-decorator: rebuild for Python 3.14 --- srcpkgs/python3-decorator/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-decorator/template b/srcpkgs/python3-decorator/template index 11a243dd528308..5576da0c88387e 100644 --- a/srcpkgs/python3-decorator/template +++ b/srcpkgs/python3-decorator/template @@ -1,7 +1,7 @@ # Template file for 'python3-decorator' pkgname=python3-decorator version=5.2.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From a304d37fe78ca38d682b94c0e677f0291b6fa5c4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:37 -0500 Subject: [PATCH 0107/1664] python3-ipython-pygments-lexers: rebuild for Python 3.14 --- srcpkgs/python3-ipython-pygments-lexers/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ipython-pygments-lexers/template b/srcpkgs/python3-ipython-pygments-lexers/template index 775dedbf2aa80a..f0e78c63d6aa99 100644 --- a/srcpkgs/python3-ipython-pygments-lexers/template +++ b/srcpkgs/python3-ipython-pygments-lexers/template @@ -1,7 +1,7 @@ # Template file for 'python3-ipython-pygments-lexers' pkgname=python3-ipython-pygments-lexers version=1.1.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3-Pygments" From b9dabe0a530f6bf07e5a0b24cb4c9a715ade5f76 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:37 -0500 Subject: [PATCH 0108/1664] python3-jedi: rebuild for Python 3.14 --- srcpkgs/python3-jedi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jedi/template b/srcpkgs/python3-jedi/template index d071cad305f638..60d661cde63e95 100644 --- a/srcpkgs/python3-jedi/template +++ b/srcpkgs/python3-jedi/template @@ -1,7 +1,7 @@ # Template file for 'python3-jedi' pkgname=python3-jedi version=0.19.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3-parso" From 715ffe9f668406391812a48679cc2476fa4f8641 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:37 -0500 Subject: [PATCH 0109/1664] python3-matplotlib-inline: update to 0.2.1. --- srcpkgs/python3-matplotlib-inline/template | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/srcpkgs/python3-matplotlib-inline/template b/srcpkgs/python3-matplotlib-inline/template index b2297a6cd5e457..f09d2b1a625489 100644 --- a/srcpkgs/python3-matplotlib-inline/template +++ b/srcpkgs/python3-matplotlib-inline/template @@ -1,16 +1,16 @@ # Template file for 'python3-matplotlib-inline' pkgname=python3-matplotlib-inline -version=0.1.7 -revision=2 -build_style=python3-module -hostmakedepends="python3-setuptools" +version=0.2.1 +revision=1 +build_style=python3-pep517 +hostmakedepends="python3-flit_core" depends="python3-traitlets" short_desc="Inline Matplotlib backend for Jupyter" maintainer="Andrew J. Hesford " license="BSD-3-Clause" homepage="https://github.com/ipython/matplotlib-inline" distfiles="${PYPI_SITE}/m/matplotlib_inline/matplotlib_inline-${version}.tar.gz" -checksum=8423b23ec666be3d16e16b60bdd8ac4e86e840ebd1dd11a30b9f117f2fa0ab90 +checksum=e1ee949c340d771fc39e241ea75683deb94762c8fa5f2927ec57c83c4dffa9fe # No tests are shipped make_check=no From 3d20cc65ab5f715f5629697571e9f9b7c3093adc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:38 -0500 Subject: [PATCH 0110/1664] python3-pexpect: rebuild for Python 3.14 --- srcpkgs/python3-pexpect/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pexpect/template b/srcpkgs/python3-pexpect/template index 874887cdd30b45..3e9ccc7e6f2980 100644 --- a/srcpkgs/python3-pexpect/template +++ b/srcpkgs/python3-pexpect/template @@ -1,7 +1,7 @@ # Template file for 'python3-pexpect' pkgname=python3-pexpect version=4.9.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-ptyprocess" From b487b9031fb08b338ee4bde35bf41eb7a8b1815b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:38 -0500 Subject: [PATCH 0111/1664] python3-pickleshare: rebuild for Python 3.14 --- srcpkgs/python3-pickleshare/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pickleshare/template b/srcpkgs/python3-pickleshare/template index e34de11a6de398..943ee888134fd7 100644 --- a/srcpkgs/python3-pickleshare/template +++ b/srcpkgs/python3-pickleshare/template @@ -1,7 +1,7 @@ # Template file for 'python3-pickleshare' pkgname=python3-pickleshare version=0.7.5 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From bfb10a526b3cb20619f83e0e5e3f9af27f80f1ad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:38 -0500 Subject: [PATCH 0112/1664] python3-prompt_toolkit: rebuild for Python 3.14 --- srcpkgs/python3-prompt_toolkit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-prompt_toolkit/template b/srcpkgs/python3-prompt_toolkit/template index b7b2a42ec1462d..37bbfac0dec6f8 100644 --- a/srcpkgs/python3-prompt_toolkit/template +++ b/srcpkgs/python3-prompt_toolkit/template @@ -1,7 +1,7 @@ # Template file for 'python3-prompt_toolkit' pkgname=python3-prompt_toolkit version=3.0.52 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3-wcwidth" From 5676f5ce669d90b792eb1a5e37abbd9495872aa4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:38 -0500 Subject: [PATCH 0113/1664] python3-stack_data: rebuild for Python 3.14 --- srcpkgs/python3-stack_data/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-stack_data/template b/srcpkgs/python3-stack_data/template index b4ace72e40f1a0..36c0c36499b3e5 100644 --- a/srcpkgs/python3-stack_data/template +++ b/srcpkgs/python3-stack_data/template @@ -1,7 +1,7 @@ # Template file for 'python3-stack_data' pkgname=python3-stack_data version=0.6.3 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3-executing python3-asttokens python3-pure_eval" From dde20f310eac8cf0560047e068e6800a74b94a1d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:38 -0500 Subject: [PATCH 0114/1664] python3-argon2: rebuild for Python 3.14 --- srcpkgs/python3-argon2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-argon2/template b/srcpkgs/python3-argon2/template index fe36ff1567b883..1a0c92b39abf42 100644 --- a/srcpkgs/python3-argon2/template +++ b/srcpkgs/python3-argon2/template @@ -1,7 +1,7 @@ # Template file for 'python3-argon2' pkgname=python3-argon2 version=23.1.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs hatch-fancy-pypi-readme" depends="python3-argon2-cffi-bindings" From 05d7b7452bf5a1e8c727f280b356ce46845e7baa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:38 -0500 Subject: [PATCH 0115/1664] python3-jupyter_events: rebuild for Python 3.14 --- srcpkgs/python3-jupyter_events/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jupyter_events/template b/srcpkgs/python3-jupyter_events/template index 63a6aaa7a988be..f14b769ac03306 100644 --- a/srcpkgs/python3-jupyter_events/template +++ b/srcpkgs/python3-jupyter_events/template @@ -1,7 +1,7 @@ # Template file for 'python3-jupyter_events' pkgname=python3-jupyter_events version=0.12.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3-jsonschema python3-json-logger python3-yaml python3-traitlets From 44a03109b6081284902eb253f414b3bcdd1b3031 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:39 -0500 Subject: [PATCH 0116/1664] python3-jupyter_nbconvert: rebuild for Python 3.14 --- srcpkgs/python3-jupyter_nbconvert/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jupyter_nbconvert/template b/srcpkgs/python3-jupyter_nbconvert/template index 1f6a1be11d816d..a2a8e23aefceab 100644 --- a/srcpkgs/python3-jupyter_nbconvert/template +++ b/srcpkgs/python3-jupyter_nbconvert/template @@ -1,7 +1,7 @@ # Template file for 'python3-jupyter_nbconvert' pkgname=python3-jupyter_nbconvert version=7.16.6 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3-BeautifulSoup4 python3-bleach python3-defusedxml From aa441c115cf43793e68672b4c8123b9718dddf04 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:39 -0500 Subject: [PATCH 0117/1664] python3-jupyter_server_terminals: rebuild for Python 3.14 --- srcpkgs/python3-jupyter_server_terminals/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jupyter_server_terminals/template b/srcpkgs/python3-jupyter_server_terminals/template index 26cbc0278436f5..27fa45e3c87e9a 100644 --- a/srcpkgs/python3-jupyter_server_terminals/template +++ b/srcpkgs/python3-jupyter_server_terminals/template @@ -1,7 +1,7 @@ # Template file for 'python3-jupyter_server_terminals' pkgname=python3-jupyter_server_terminals version=0.5.3 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3-terminado" From 95d87a4ae17192d8e5acb1740f15e7806a433d1e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:39 -0500 Subject: [PATCH 0118/1664] python3-overrides: rebuild for Python 3.14 --- srcpkgs/python3-overrides/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-overrides/template b/srcpkgs/python3-overrides/template index b4cebace18ef0f..ed9e5c24260211 100644 --- a/srcpkgs/python3-overrides/template +++ b/srcpkgs/python3-overrides/template @@ -1,7 +1,7 @@ # Template file for 'python3-overrides' pkgname=python3-overrides version=7.7.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 10ab4a06d7dee07da60579a2633ef7cbfb85b759 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:39 -0500 Subject: [PATCH 0119/1664] python3-prometheus_client: rebuild for Python 3.14 --- srcpkgs/python3-prometheus_client/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-prometheus_client/template b/srcpkgs/python3-prometheus_client/template index 5ff8a4134cebe1..e1bc8b541b1744 100644 --- a/srcpkgs/python3-prometheus_client/template +++ b/srcpkgs/python3-prometheus_client/template @@ -1,7 +1,7 @@ # Template file for 'python3-prometheus_client' pkgname=python3-prometheus_client version=0.21.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3" From 7eb4ef43279d4978e9e57a8f21127f058a761fe3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:39 -0500 Subject: [PATCH 0120/1664] python3-send2trash: rebuild for Python 3.14 --- srcpkgs/python3-send2trash/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-send2trash/template b/srcpkgs/python3-send2trash/template index 460ab4afb60a7a..a7ab4394c01fa8 100644 --- a/srcpkgs/python3-send2trash/template +++ b/srcpkgs/python3-send2trash/template @@ -1,7 +1,7 @@ # Template file for 'python3-send2trash' pkgname=python3-send2trash version=1.8.3 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 16c421b6cb20fc2bcf84e992d3feee79b913ba4f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:39 -0500 Subject: [PATCH 0121/1664] python3-websocket-client: rebuild for Python 3.14 --- srcpkgs/python3-websocket-client/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-websocket-client/template b/srcpkgs/python3-websocket-client/template index f428fd63df158b..6741bfe52533bc 100644 --- a/srcpkgs/python3-websocket-client/template +++ b/srcpkgs/python3-websocket-client/template @@ -1,7 +1,7 @@ # Template file for 'python3-websocket-client' pkgname=python3-websocket-client version=1.8.0 -revision=1 +revision=2 build_style=python3-pep517 make_check_target="websocket/tests" hostmakedepends="python3-setuptools python3-wheel" From 6c5257b06890c93ca9318d5079661ad3b7b5c9ac Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:39 -0500 Subject: [PATCH 0122/1664] python3-Babel: rebuild for Python 3.14 --- srcpkgs/python3-Babel/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Babel/template b/srcpkgs/python3-Babel/template index 4fe63845f8a423..b2642c200590f4 100644 --- a/srcpkgs/python3-Babel/template +++ b/srcpkgs/python3-Babel/template @@ -1,7 +1,7 @@ # Template file for 'python3-Babel' pkgname=python3-Babel version=2.17.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3" From d811760682269f61116239ed4ce0b431dd2cbf51 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:40 -0500 Subject: [PATCH 0123/1664] python3-alabaster: rebuild for Python 3.14 --- srcpkgs/python3-alabaster/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-alabaster/template b/srcpkgs/python3-alabaster/template index 0ab5ac3a203128..42655604c6d9d0 100644 --- a/srcpkgs/python3-alabaster/template +++ b/srcpkgs/python3-alabaster/template @@ -1,7 +1,7 @@ # Template file for 'python3-alabaster' pkgname=python3-alabaster version=1.0.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3" From b665a81ef10319fa0b634206a07525fba572d5c9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:40 -0500 Subject: [PATCH 0124/1664] python3-docutils: rebuild for Python 3.14 --- srcpkgs/python3-docutils/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-docutils/template b/srcpkgs/python3-docutils/template index 14dc70b23c944d..bc99c2297abbb9 100644 --- a/srcpkgs/python3-docutils/template +++ b/srcpkgs/python3-docutils/template @@ -1,7 +1,7 @@ # Template file for 'python3-docutils' pkgname=python3-docutils version=0.21.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" # docutils/writers/odf_odt/pygmentsformatter.py From 2f0e246714168002a47808966eaa050fda054274 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:40 -0500 Subject: [PATCH 0125/1664] python3-imagesize: rebuild for Python 3.14 --- srcpkgs/python3-imagesize/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-imagesize/template b/srcpkgs/python3-imagesize/template index 373821241c1ad1..8b646dbf939e55 100644 --- a/srcpkgs/python3-imagesize/template +++ b/srcpkgs/python3-imagesize/template @@ -1,7 +1,7 @@ # Template file for 'python3-imagesize' pkgname=python3-imagesize version=1.4.1 -revision=2 +revision=3 build_style=python3-module # Triest to fetch a dead url make_check_args="--deselect test/test_get_filelike.py::test_get_filelike" From 8c5789d84605d944f323bff1f9d755c370938559 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:40 -0500 Subject: [PATCH 0126/1664] python3-requests: rebuild for Python 3.14 --- srcpkgs/python3-requests/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-requests/template b/srcpkgs/python3-requests/template index bf4af8af9fef9f..030e7ad6542d77 100644 --- a/srcpkgs/python3-requests/template +++ b/srcpkgs/python3-requests/template @@ -1,7 +1,7 @@ # Template file for 'python3-requests' pkgname=python3-requests version=2.32.4 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="ca-certificates python3-charset-normalizer python3-urllib3 python3-idna" From 17811b763cff73d4749321815b39a87a2ee3d5c3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:40 -0500 Subject: [PATCH 0127/1664] python3-roman-numerals-py: rebuild for Python 3.14 --- srcpkgs/python3-roman-numerals-py/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-roman-numerals-py/template b/srcpkgs/python3-roman-numerals-py/template index 53e5973c040e6e..9c22943515616a 100644 --- a/srcpkgs/python3-roman-numerals-py/template +++ b/srcpkgs/python3-roman-numerals-py/template @@ -1,7 +1,7 @@ # Template file for 'python3-roman-numerals-py' pkgname=python3-roman-numerals-py version=3.1.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3" From cb7789eb29a7de4b274cfcf08f70e9d5bf964998 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:40 -0500 Subject: [PATCH 0128/1664] python3-snowballstemmer: rebuild for Python 3.14 --- srcpkgs/python3-snowballstemmer/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-snowballstemmer/template b/srcpkgs/python3-snowballstemmer/template index da9c945dfe75fc..4faf7353bf65b8 100644 --- a/srcpkgs/python3-snowballstemmer/template +++ b/srcpkgs/python3-snowballstemmer/template @@ -1,7 +1,7 @@ # Template file for 'python3-snowballstemmer' pkgname=python3-snowballstemmer version=2.2.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 2b7532340d9ebd152b725edb0f0111d172175c15 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:41 -0500 Subject: [PATCH 0129/1664] python3-sphinxcontrib-applehelp: rebuild for Python 3.14 --- srcpkgs/python3-sphinxcontrib-applehelp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sphinxcontrib-applehelp/template b/srcpkgs/python3-sphinxcontrib-applehelp/template index 907ffe6bfd2390..04949e3b652bf9 100644 --- a/srcpkgs/python3-sphinxcontrib-applehelp/template +++ b/srcpkgs/python3-sphinxcontrib-applehelp/template @@ -1,7 +1,7 @@ # Template file for 'python3-sphinxcontrib-applehelp' pkgname=python3-sphinxcontrib-applehelp version=2.0.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core python3-pyproject-hooks python3-setuptools python3-wheel" From 8c7147dd3f432956fd630cc16fbc53b76adb5021 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:41 -0500 Subject: [PATCH 0130/1664] python3-sphinxcontrib-devhelp: rebuild for Python 3.14 --- srcpkgs/python3-sphinxcontrib-devhelp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sphinxcontrib-devhelp/template b/srcpkgs/python3-sphinxcontrib-devhelp/template index 6ce8d7285493f6..9348c3bda41c0b 100644 --- a/srcpkgs/python3-sphinxcontrib-devhelp/template +++ b/srcpkgs/python3-sphinxcontrib-devhelp/template @@ -1,7 +1,7 @@ # Template file for 'python3-sphinxcontrib-devhelp' pkgname=python3-sphinxcontrib-devhelp version=2.0.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3" From a243641835e185dda1301e1b98c7b66d0a2437fd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:41 -0500 Subject: [PATCH 0131/1664] python3-sphinxcontrib-htmlhelp: rebuild for Python 3.14 --- srcpkgs/python3-sphinxcontrib-htmlhelp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sphinxcontrib-htmlhelp/template b/srcpkgs/python3-sphinxcontrib-htmlhelp/template index 20ee9d52a15782..8420f82acc1fcd 100644 --- a/srcpkgs/python3-sphinxcontrib-htmlhelp/template +++ b/srcpkgs/python3-sphinxcontrib-htmlhelp/template @@ -1,7 +1,7 @@ # Template file for 'python3-sphinxcontrib-htmlhelp' pkgname=python3-sphinxcontrib-htmlhelp version=2.1.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core python3-pyproject-hooks python3-setuptools python3-wheel" From bf991114b2554e85b89017767a65c7794da20293 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:41 -0500 Subject: [PATCH 0132/1664] python3-sphinxcontrib-jsmath: rebuild for Python 3.14 --- srcpkgs/python3-sphinxcontrib-jsmath/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sphinxcontrib-jsmath/template b/srcpkgs/python3-sphinxcontrib-jsmath/template index f2dc93af44e618..1586a6809e369e 100644 --- a/srcpkgs/python3-sphinxcontrib-jsmath/template +++ b/srcpkgs/python3-sphinxcontrib-jsmath/template @@ -1,7 +1,7 @@ # Template file for 'python3-sphinxcontrib-jsmath' pkgname=python3-sphinxcontrib-jsmath version=1.0.1 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 8eb2a172bebc906ff6d89a62fdf840d739640d37 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:41 -0500 Subject: [PATCH 0133/1664] python3-sphinxcontrib-qthelp: rebuild for Python 3.14 --- srcpkgs/python3-sphinxcontrib-qthelp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sphinxcontrib-qthelp/template b/srcpkgs/python3-sphinxcontrib-qthelp/template index 182bbe4b7860f7..23d4b0bf014ab4 100644 --- a/srcpkgs/python3-sphinxcontrib-qthelp/template +++ b/srcpkgs/python3-sphinxcontrib-qthelp/template @@ -1,7 +1,7 @@ # Template file for 'python3-sphinxcontrib-qthelp' pkgname=python3-sphinxcontrib-qthelp version=2.0.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3" From 3a34dedb1fd76be18ee1297339dc74e96d227ee2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:41 -0500 Subject: [PATCH 0134/1664] python3-sphinxcontrib-serializinghtml: rebuild for Python 3.14 --- srcpkgs/python3-sphinxcontrib-serializinghtml/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sphinxcontrib-serializinghtml/template b/srcpkgs/python3-sphinxcontrib-serializinghtml/template index 71888b4253e96e..da18b35f2a6e65 100644 --- a/srcpkgs/python3-sphinxcontrib-serializinghtml/template +++ b/srcpkgs/python3-sphinxcontrib-serializinghtml/template @@ -1,7 +1,7 @@ # Template file for 'python3-sphinxcontrib-serializinghtml' pkgname=python3-sphinxcontrib-serializinghtml version=2.0.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3" From b4b7c77aaec3c23c1ad8bf19128611ebabc009dd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:41 -0500 Subject: [PATCH 0135/1664] gi-docgen: rebuild for Python 3.14 --- srcpkgs/gi-docgen/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gi-docgen/template b/srcpkgs/gi-docgen/template index f2ed98f8543ca0..a63ba369c4592e 100644 --- a/srcpkgs/gi-docgen/template +++ b/srcpkgs/gi-docgen/template @@ -1,7 +1,7 @@ # Template file for 'gi-docgen' pkgname=gi-docgen version=2025.4 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3-Pygments python3-typogrify python3-Jinja2 python3-toml From 166ca353b13a3b97e8a765ce4a1161d559d82699 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:42 -0500 Subject: [PATCH 0136/1664] gobject-introspection-bootstrap: rebuild for Python 3.14 --- srcpkgs/gobject-introspection-bootstrap/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gobject-introspection-bootstrap/template b/srcpkgs/gobject-introspection-bootstrap/template index 4ed4b4ede8f75b..8ddaf131ba72da 100644 --- a/srcpkgs/gobject-introspection-bootstrap/template +++ b/srcpkgs/gobject-introspection-bootstrap/template @@ -5,7 +5,7 @@ # libgirepository-1.0 to libgirepository-2.0 migration. pkgname=gobject-introspection-bootstrap version=1.86.0 -revision=1 +revision=2 build_style=meson build_helper="qemu" configure_args="-Dbuild_introspection_data=false" From 786eca53fd436e9e157d461d26bdebe6af693e83 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:42 -0500 Subject: [PATCH 0137/1664] python3-Brotli: rebuild for Python 3.14 --- srcpkgs/python3-Brotli/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Brotli/template b/srcpkgs/python3-Brotli/template index 0942824d298da5..28152da8659e66 100644 --- a/srcpkgs/python3-Brotli/template +++ b/srcpkgs/python3-Brotli/template @@ -1,7 +1,7 @@ # Template file for 'python3-Brotli' pkgname=python3-Brotli version=1.1.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel brotli-devel" From b04e16c2e7a4b111c6669aff47d1d0b270bc1998 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:42 -0500 Subject: [PATCH 0138/1664] python3-httpcore: rebuild for Python 3.14 --- srcpkgs/python3-httpcore/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-httpcore/template b/srcpkgs/python3-httpcore/template index 20ea56aa0558fe..fa241d09f0faad 100644 --- a/srcpkgs/python3-httpcore/template +++ b/srcpkgs/python3-httpcore/template @@ -1,7 +1,7 @@ # Template file for 'python3-httpcore' pkgname=python3-httpcore version=1.0.9 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core hatchling hatch-fancy-pypi-readme" depends="python3-h11 python3-sniffio python3-anyio python3-h2 python3-certifi From c6ccea77bd0a2d143f53e55a5781bca1ed1fcbc6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:42 -0500 Subject: [PATCH 0139/1664] python3-comm: rebuild for Python 3.14 --- srcpkgs/python3-comm/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-comm/template b/srcpkgs/python3-comm/template index 709affa00503cf..96b20f8961f854 100644 --- a/srcpkgs/python3-comm/template +++ b/srcpkgs/python3-comm/template @@ -1,7 +1,7 @@ # Template file for 'python3-comm' pkgname=python3-comm version=0.2.3 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3" From f21d7efe234d81aac3caa6b13d9fccfa7ea69c61 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:42 -0500 Subject: [PATCH 0140/1664] python3-ipython: update to 9.8.0. --- srcpkgs/python3-ipython/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template index c424def2921156..2dbafeaae979b4 100644 --- a/srcpkgs/python3-ipython/template +++ b/srcpkgs/python3-ipython/template @@ -1,6 +1,6 @@ # Template file for 'python3-ipython' pkgname=python3-ipython -version=9.7.0 +version=9.8.0 revision=1 build_style=python3-pep517 # pexpect module does not find IPython when launching new interpreter @@ -22,7 +22,7 @@ license="BSD-3-Clause" homepage="https://ipython.org/" changelog="https://github.com/ipython/ipython/raw/main/docs/source/whatsnew/version9.rst" distfiles="${PYPI_SITE}/i/ipython/ipython-${version}.tar.gz" -checksum=5f6de88c905a566c6a9d6c400a8fed54a638e1f7543d17aae2551133216b1e4e +checksum=8e4ce129a627eb9dd221c41b1d2cdaed4ef7c9da8c17c63f6f578fe231141f83 conflicts="python-ipython<=5.8.0_2" make_check_pre="env PYTHONPATH=." From 57b653c825d61a2f5ac099f0d0d61241237e75c0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:42 -0500 Subject: [PATCH 0141/1664] python3-nest_asyncio: rebuild for Python 3.14 --- srcpkgs/python3-nest_asyncio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-nest_asyncio/template b/srcpkgs/python3-nest_asyncio/template index 88ca3c49ce72a7..79cb3988dfc61d 100644 --- a/srcpkgs/python3-nest_asyncio/template +++ b/srcpkgs/python3-nest_asyncio/template @@ -1,7 +1,7 @@ # Template file for 'python3-nest_asyncio' pkgname=python3-nest_asyncio version=1.6.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3" From 14a5e7204271f7c2086e99a397ae7ae2f81311da Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:43 -0500 Subject: [PATCH 0142/1664] python3-psutil: rebuild for Python 3.14 --- srcpkgs/python3-psutil/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-psutil/template b/srcpkgs/python3-psutil/template index 18e96130dfa80b..20f3579a0c1801 100644 --- a/srcpkgs/python3-psutil/template +++ b/srcpkgs/python3-psutil/template @@ -1,7 +1,7 @@ # Template file for 'python3-psutil' pkgname=python3-psutil version=5.9.8 -revision=2 +revision=3 build_style=python3-pep517 # Failing tests: see https://github.com/giampaolo/psutil/issues/2043 make_check_args="--import-mode=importlib From 15f33c72323d85cf9333a97b99716e290b296fe9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:43 -0500 Subject: [PATCH 0143/1664] python3-jupyter_server: rebuild for Python 3.14 --- srcpkgs/python3-jupyter_server/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jupyter_server/template b/srcpkgs/python3-jupyter_server/template index 07de9e2b5ab8f9..8226e675144387 100644 --- a/srcpkgs/python3-jupyter_server/template +++ b/srcpkgs/python3-jupyter_server/template @@ -1,7 +1,7 @@ # Template file for 'python3-jupyter_server' pkgname=python3-jupyter_server version=2.16.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-jupyter-builder" depends="python3-anyio python3-argon2 python3-Jinja2 python3-jupyter_client From bc315e78ec25d9f4a63a306b9dd2be048c07a567 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:43 -0500 Subject: [PATCH 0144/1664] python3-json5: rebuild for Python 3.14 --- srcpkgs/python3-json5/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-json5/template b/srcpkgs/python3-json5/template index 2d9bfebb90fb78..e1afbc34a54780 100644 --- a/srcpkgs/python3-json5/template +++ b/srcpkgs/python3-json5/template @@ -1,7 +1,7 @@ # Template file for 'python3-json5' pkgname=python3-json5 version=0.12.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 93bbdad0884a34188c85a68f17f5259a0538833a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:43 -0500 Subject: [PATCH 0145/1664] python3-pyproject-metadata: update to 0.10.0. --- srcpkgs/python3-pyproject-metadata/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-pyproject-metadata/template b/srcpkgs/python3-pyproject-metadata/template index d1c5a6b35f5327..93902cbbc3498a 100644 --- a/srcpkgs/python3-pyproject-metadata/template +++ b/srcpkgs/python3-pyproject-metadata/template @@ -1,6 +1,6 @@ # Template file for 'python3-pyproject-metadata' pkgname=python3-pyproject-metadata -version=0.9.1 +version=0.10.0 revision=1 build_style=python3-pep517 hostmakedepends="python3-flit_core python3-wheel" @@ -11,7 +11,7 @@ license="MIT" homepage="https://pep621.readthedocs.io/" changelog="https://raw.githubusercontent.com/FFY00/python-pyproject-metadata/main/CHANGELOG.rst" distfiles="${PYPI_SITE}/p/pyproject_metadata/pyproject_metadata-${version}.tar.gz" -checksum=b8b2253dd1b7062b78cf949a115f02ba7fa4114aabe63fa10528e9e1a954a816 +checksum=7f5bd0ef398b60169556cb17ea261d715caf7f8561238151f51b2305084ba8d4 make_check=no # tarball includes no tests post_install() { From 62a5b5566b5707772264d6a8239ff3aeb6dfe34e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:43 -0500 Subject: [PATCH 0146/1664] python3-Sphinx: rebuild for Python 3.14 --- srcpkgs/python3-Sphinx/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Sphinx/template b/srcpkgs/python3-Sphinx/template index fbc088152e9037..640d5b1d925cff 100644 --- a/srcpkgs/python3-Sphinx/template +++ b/srcpkgs/python3-Sphinx/template @@ -1,7 +1,7 @@ # Template file for 'python3-Sphinx' pkgname=python3-Sphinx version=8.3.0 -revision=1 +revision=2 build_style=python3-pep517 _depends="python3-sphinxcontrib-htmlhelp python3-imagesize python3-alabaster python3-requests python3-sphinxcontrib-jsmath python3-roman-numerals-py From 84d20cad635326160691d8ec91e5f4ed8f261d2f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:43 -0500 Subject: [PATCH 0147/1664] glib: rebuild for Python 3.14 --- srcpkgs/glib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/glib/template b/srcpkgs/glib/template index 259832c21cb30d..ca402c15f73fd0 100644 --- a/srcpkgs/glib/template +++ b/srcpkgs/glib/template @@ -2,7 +2,7 @@ # keep in sync with glib-bootstrap pkgname=glib version=2.86.1 -revision=1 +revision=2 build_style=meson build_helper="qemu" # static version is necessary for qemu-user From b9dca8a979c3a00fcd3ca792f433ec6c2b95dfd0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:44 -0500 Subject: [PATCH 0148/1664] python3-pyasn1: rebuild for Python 3.14 --- srcpkgs/python3-pyasn1/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyasn1/template b/srcpkgs/python3-pyasn1/template index 7000f0dba60ddd..4daa8b126d8db6 100644 --- a/srcpkgs/python3-pyasn1/template +++ b/srcpkgs/python3-pyasn1/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyasn1' pkgname=python3-pyasn1 version=0.6.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3" From 48aca4521a9a63a7c7ed5a54eb52bddec4385796 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:44 -0500 Subject: [PATCH 0149/1664] talloc: rebuild for Python 3.14 --- srcpkgs/talloc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/talloc/template b/srcpkgs/talloc/template index 209ac008d2379b..817f720945e340 100644 --- a/srcpkgs/talloc/template +++ b/srcpkgs/talloc/template @@ -1,7 +1,7 @@ # Template file for 'talloc' pkgname=talloc version=2.4.3 -revision=2 +revision=3 build_style=waf3 build_helper="qemu" configure_script="buildtools/bin/waf" From 405950fafa596b7242c8118982aa27f54fb2a621 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:44 -0500 Subject: [PATCH 0150/1664] python3-more-itertools: rebuild for Python 3.14 --- srcpkgs/python3-more-itertools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template index 599d94c19ad580..75c21554cbbcfd 100644 --- a/srcpkgs/python3-more-itertools/template +++ b/srcpkgs/python3-more-itertools/template @@ -1,7 +1,7 @@ # Template file for 'python3-more-itertools' pkgname=python3-more-itertools version=10.8.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3" From eb0f39ff00496daacecd734e7c4a6edf58337442 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:44 -0500 Subject: [PATCH 0151/1664] python3-typeguard: rebuild for Python 3.14 --- srcpkgs/python3-typeguard/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-typeguard/template b/srcpkgs/python3-typeguard/template index db2d63fc1bafdc..07eea49e18504d 100644 --- a/srcpkgs/python3-typeguard/template +++ b/srcpkgs/python3-typeguard/template @@ -1,7 +1,7 @@ # Template file for 'python3-typeguard' pkgname=python3-typeguard version=4.2.1 -revision=2 +revision=3 build_style=python3-pep517 # mypy checks seem to require that the module be installed make_check_args="--ignore=tests/mypy" From 62dc3ad71529effaf1942a8af3c95dde3dad4c27 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:44 -0500 Subject: [PATCH 0152/1664] python3-deprecation: rebuild for Python 3.14 --- srcpkgs/python3-deprecation/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-deprecation/template b/srcpkgs/python3-deprecation/template index 12ef0646b95602..f8eba89ba3fe80 100644 --- a/srcpkgs/python3-deprecation/template +++ b/srcpkgs/python3-deprecation/template @@ -1,7 +1,7 @@ # Template file for 'python3-deprecation' pkgname=python3-deprecation version=2.1.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-packaging" From fb20aeef98d2d62db4f5aa74a610411d4d7e4d22 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:44 -0500 Subject: [PATCH 0153/1664] python3-tomlkit: rebuild for Python 3.14 --- srcpkgs/python3-tomlkit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tomlkit/template b/srcpkgs/python3-tomlkit/template index 309f0495bd0f91..8beb0fd8ad3150 100644 --- a/srcpkgs/python3-tomlkit/template +++ b/srcpkgs/python3-tomlkit/template @@ -1,7 +1,7 @@ # Template file for 'python3-tomlkit' pkgname=python3-tomlkit version=0.13.3 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3" From a65211d8971b3397801197a35e6c1bdcec268c57 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:44 -0500 Subject: [PATCH 0154/1664] python3-async-lru: rebuild for Python 3.14 --- srcpkgs/python3-async-lru/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-async-lru/template b/srcpkgs/python3-async-lru/template index 68439569f5fac0..bffa52e8253004 100644 --- a/srcpkgs/python3-async-lru/template +++ b/srcpkgs/python3-async-lru/template @@ -1,7 +1,7 @@ # Template file for 'python3-async-lru' pkgname=python3-async-lru version=2.0.5 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3-typing_extensions" From 3f4da52b81abb6643a8ebc9741e38dc9919aaad0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:45 -0500 Subject: [PATCH 0155/1664] python3-httpx: rebuild for Python 3.14 --- srcpkgs/python3-httpx/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-httpx/template b/srcpkgs/python3-httpx/template index f1d62d92a6ba32..dc86f730fdb065 100644 --- a/srcpkgs/python3-httpx/template +++ b/srcpkgs/python3-httpx/template @@ -1,7 +1,7 @@ # Template file for 'python3-httpx' pkgname=python3-httpx version=0.28.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-fancy-pypi-readme" depends="python3-idna python3-certifi python3-h2 python3-Brotli From 10ffd4b68982e3dc7fe87235da213d7613714ca7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:45 -0500 Subject: [PATCH 0156/1664] python3-ipython_ipykernel: rebuild for Python 3.14 --- srcpkgs/python3-ipython_ipykernel/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ipython_ipykernel/template b/srcpkgs/python3-ipython_ipykernel/template index c4520eb3280bb9..1a80af93819807 100644 --- a/srcpkgs/python3-ipython_ipykernel/template +++ b/srcpkgs/python3-ipython_ipykernel/template @@ -1,7 +1,7 @@ # Template file for 'python3-ipython_ipykernel' pkgname=python3-ipython_ipykernel version=6.30.1 -revision=1 +revision=2 build_style=python3-pep517 # run all tests available make_check_target="tests" From b62ba61c9e46105a31602ac6c3398e9093def069 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:45 -0500 Subject: [PATCH 0157/1664] python3-jupyter-lsp: rebuild for Python 3.14 --- srcpkgs/python3-jupyter-lsp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jupyter-lsp/template b/srcpkgs/python3-jupyter-lsp/template index 9114c2dd667ae8..3eb0fc2f01cca1 100644 --- a/srcpkgs/python3-jupyter-lsp/template +++ b/srcpkgs/python3-jupyter-lsp/template @@ -1,7 +1,7 @@ # Template file for 'python3-jupyter-lsp' pkgname=python3-jupyter-lsp version=2.2.5 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3-jupyter_server" From 9314f1fe9770a67208321118c906cdb0641a1caa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:45 -0500 Subject: [PATCH 0158/1664] python3-jupyterlab_server: rebuild for Python 3.14 --- srcpkgs/python3-jupyterlab_server/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jupyterlab_server/template b/srcpkgs/python3-jupyterlab_server/template index d9c9b9317974b2..a5dc60fcd6c3b0 100644 --- a/srcpkgs/python3-jupyterlab_server/template +++ b/srcpkgs/python3-jupyterlab_server/template @@ -1,7 +1,7 @@ # Template file for 'python3-jupyterlab_server' pkgname=python3-jupyterlab_server version=2.27.3 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3-jupyter_server python3-Babel python3-json5 python3-requests" From a55a4b6cc00a438651e8946ddeced06b6403a7ca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:45 -0500 Subject: [PATCH 0159/1664] python3-notebook_shim: rebuild for Python 3.14 --- srcpkgs/python3-notebook_shim/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-notebook_shim/template b/srcpkgs/python3-notebook_shim/template index c3223a080f8fb3..bdb46c3b0e5bd9 100644 --- a/srcpkgs/python3-notebook_shim/template +++ b/srcpkgs/python3-notebook_shim/template @@ -1,7 +1,7 @@ # Template file for 'python3-notebook_shim' pkgname=python3-notebook_shim version=0.2.4 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3-jupyter_server" From 1a61453e205bbdc2ffc6ed4a89710daa3be071a3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:45 -0500 Subject: [PATCH 0160/1664] python3-meson-python: rebuild for Python 3.14 --- srcpkgs/python3-meson-python/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-meson-python/template b/srcpkgs/python3-meson-python/template index bbede51b8e381a..b5f41912198568 100644 --- a/srcpkgs/python3-meson-python/template +++ b/srcpkgs/python3-meson-python/template @@ -1,7 +1,7 @@ # Template file for 'python3-meson-python' pkgname=python3-meson-python version=0.18.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="meson python3-pyproject-metadata patchelf" depends="meson python3-pyproject-metadata python3-packaging patchelf" From 754d37f8411c31d6670e45cbf23b518020d2e17f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:46 -0500 Subject: [PATCH 0161/1664] python3-breathe: rebuild for Python 3.14 --- srcpkgs/python3-breathe/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-breathe/template b/srcpkgs/python3-breathe/template index 265db6bf192337..76d536fc59d645 100644 --- a/srcpkgs/python3-breathe/template +++ b/srcpkgs/python3-breathe/template @@ -1,7 +1,7 @@ # Template file for 'python3-breathe' pkgname=python3-breathe version=4.36.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3-Sphinx doxygen" From ba8d4dc4cf417f59826d70f5394afd0c8c34b534 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:46 -0500 Subject: [PATCH 0162/1664] python3-sphinx_rtd_theme: rebuild for Python 3.14 --- srcpkgs/python3-sphinx_rtd_theme/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sphinx_rtd_theme/template b/srcpkgs/python3-sphinx_rtd_theme/template index 8dd166212459c6..9893786aa7bb6b 100644 --- a/srcpkgs/python3-sphinx_rtd_theme/template +++ b/srcpkgs/python3-sphinx_rtd_theme/template @@ -1,7 +1,7 @@ # Template file for 'python3-sphinx_rtd_theme' pkgname=python3-sphinx_rtd_theme version=1.1.1 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-Sphinx" From ba85458412b235febd206ee393acba9a0abeebf6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:46 -0500 Subject: [PATCH 0163/1664] python3-gast: update to 0.7.0. --- srcpkgs/python3-gast/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-gast/template b/srcpkgs/python3-gast/template index 0aa6a89b91e8af..0796bb91a6a530 100644 --- a/srcpkgs/python3-gast/template +++ b/srcpkgs/python3-gast/template @@ -1,7 +1,7 @@ # Template file for 'python3-gast' pkgname=python3-gast -version=0.6.0 -revision=2 +version=0.7.0 +revision=1 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" @@ -11,7 +11,7 @@ maintainer="Andrew J. Hesford " license="BSD-3-Clause" homepage="https://github.com/serge-sans-paille/gast" distfiles="${PYPI_SITE}/g/gast/gast-${version}.tar.gz" -checksum=88fc5300d32c7ac6ca7b515310862f71e6fdf2c029bbec7c66c0f5dd47b6b1fb +checksum=0bb14cd1b806722e91ddbab6fb86bba148c22b40e7ff11e248974e04c8adfdae post_install() { vlicense LICENSE From a0d6d0d48c83f8732875c5ff3f011bc61dba5fc3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:46 -0500 Subject: [PATCH 0164/1664] python3-zope.interface: rebuild for Python 3.14 --- srcpkgs/python3-zope.interface/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zope.interface/template b/srcpkgs/python3-zope.interface/template index e681bedb68f631..92e23052a2d27c 100644 --- a/srcpkgs/python3-zope.interface/template +++ b/srcpkgs/python3-zope.interface/template @@ -1,7 +1,7 @@ # Template file for 'python3-zope.interface' pkgname=python3-zope.interface version=7.2 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From 453c8bdaa75f0df1b88c27fa1c28623b1e47d63f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:46 -0500 Subject: [PATCH 0165/1664] python3-frozenlist: rebuild for Python 3.14 --- srcpkgs/python3-frozenlist/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-frozenlist/template b/srcpkgs/python3-frozenlist/template index d533734432892c..6fae8ec7aee946 100644 --- a/srcpkgs/python3-frozenlist/template +++ b/srcpkgs/python3-frozenlist/template @@ -1,7 +1,7 @@ # Template file for 'python3-frozenlist' pkgname=python3-frozenlist version=1.5.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel python3-Cython" makedepends="python3-devel" From a3d4f51d921992feb2a8595b214967dd87783bc5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:46 -0500 Subject: [PATCH 0166/1664] python3-multidict: update to 6.7.0. --- srcpkgs/python3-multidict/template | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/srcpkgs/python3-multidict/template b/srcpkgs/python3-multidict/template index 15c0f0270c4802..2d207d25aef72d 100644 --- a/srcpkgs/python3-multidict/template +++ b/srcpkgs/python3-multidict/template @@ -1,24 +1,29 @@ # Template file for 'python3-multidict' pkgname=python3-multidict -version=5.1.0 -revision=6 -build_style=python3-module +version=6.7.0 +revision=1 +build_style=python3-pep517 hostmakedepends="python3-setuptools" makedepends="python3-devel" depends="python3" -checkdepends="python3-pytest" +checkdepends="python3-pytest python3-psutil python3-objgraph" short_desc="Multidict implementation from aiohttp" maintainer="Michael Aldridge " license="Apache-2.0" homepage="https://github.com/aio-libs/multidict" changelog="https://raw.githubusercontent.com/aio-libs/multidict/master/CHANGES.rst" distfiles="${PYPI_SITE}/m/multidict/multidict-${version}.tar.gz" -checksum=25b4e5f22d3a37ddf3effc0710ba692cfc792c2b9edfb9c05aefe823256e84d5 +checksum=c6e99d9a65ca282e578dfea819cfa9c0a62b2499d8677392e09feaf305e9e6f5 do_check() { - # don't enable coverage for tests - vsed -e '/addopts/d' -i setup.cfg + vsed -e '/cov/d' -i pytest.ini - cp -f build/lib.linux-*/multidict/*.so multidict - python3 -m pytest + local testdir="${wrksrc}/.xbps-testdir/$(date +%s)" + python3 -m venv --system-site-packages --without-pip "${testdir}" + + local testpy="${testdir}/bin/python3" + "${testpy}" -m installer dist/*.whl + + cd .xbps-testdir + "${testpy}" -m pytest --ignore-glob="../tests/test_*_benchmarks.py" ../tests } From 307837a5ae79b294f886b66e7a7b750f51d8a770 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 25 Nov 2025 09:09:42 -0500 Subject: [PATCH 0167/1664] python3-propcache: rebuild for Python 3.14 --- srcpkgs/python3-propcache/patches/cython.patch | 11 +++++++++++ srcpkgs/python3-propcache/template | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/python3-propcache/patches/cython.patch diff --git a/srcpkgs/python3-propcache/patches/cython.patch b/srcpkgs/python3-propcache/patches/cython.patch new file mode 100644 index 00000000000000..93c0f93f7ecb9c --- /dev/null +++ b/srcpkgs/python3-propcache/patches/cython.patch @@ -0,0 +1,11 @@ +--- ./packaging/pep517_backend/_backend.py.orig 2025-11-25 11:42:24.470431431 -0500 ++++ ./packaging/pep517_backend/_backend.py 2025-11-25 11:42:37.275462683 -0500 +@@ -376,7 +376,7 @@ + if is_pure_python_build: + c_ext_build_deps = [] + else: +- c_ext_build_deps = ['Cython ~= 3.1.0'] ++ c_ext_build_deps = ['Cython >= 3.1.0'] + + return _setuptools_get_requires_for_build_wheel( + config_settings=config_settings, diff --git a/srcpkgs/python3-propcache/template b/srcpkgs/python3-propcache/template index 712306dfda300b..ab553c240bc675 100644 --- a/srcpkgs/python3-propcache/template +++ b/srcpkgs/python3-propcache/template @@ -1,7 +1,7 @@ # Template file for 'python3-propcache' pkgname=python3-propcache version=0.4.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-packaging python3-Cython" makedepends="python3-devel" From fbad0178127d985bd19719d8766bb90c80d38e93 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:47 -0500 Subject: [PATCH 0168/1664] gobject-introspection: rebuild for Python 3.14 --- srcpkgs/gobject-introspection/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gobject-introspection/template b/srcpkgs/gobject-introspection/template index dce3b386b6da99..29cd604a0de571 100644 --- a/srcpkgs/gobject-introspection/template +++ b/srcpkgs/gobject-introspection/template @@ -2,7 +2,7 @@ # keep in sync with gobject-introspection-bootstrap pkgname=gobject-introspection version=1.86.0 -revision=1 +revision=2 build_style=meson build_helper="qemu" pycompile_dirs="usr/lib/gobject-introspection/giscanner" From 3aeedcba565891d105d9093aac68deb4b63fdf48 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:47 -0500 Subject: [PATCH 0169/1664] python3-cairo: rebuild for Python 3.14 --- srcpkgs/python3-cairo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cairo/template b/srcpkgs/python3-cairo/template index f559d3ef1ff08c..2e5af8aafc2c7e 100644 --- a/srcpkgs/python3-cairo/template +++ b/srcpkgs/python3-cairo/template @@ -1,7 +1,7 @@ # Template file for 'python3-cairo' pkgname=python3-cairo version=1.27.0 -revision=2 +revision=3 build_style=meson hostmakedepends="pkg-config python3-packaging-bootstrap" makedepends="cairo-devel python3-devel" From 4137b329d8c50ba34ba0c4f512b05748c459555b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:47 -0500 Subject: [PATCH 0170/1664] python3-MyST-Parser: rebuild for Python 3.14 --- srcpkgs/python3-MyST-Parser/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-MyST-Parser/template b/srcpkgs/python3-MyST-Parser/template index 7cf9cfb8ca7941..647379c5cb88a9 100644 --- a/srcpkgs/python3-MyST-Parser/template +++ b/srcpkgs/python3-MyST-Parser/template @@ -1,7 +1,7 @@ # Template file for 'python3-MyST-Parser' pkgname=python3-MyST-Parser version=3.0.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-flit_core" short_desc="Sphinx and Docutils extension to parse MyST" From eb2a825ec67dd263d96795c710b53e7f5380cc86 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:47 -0500 Subject: [PATCH 0171/1664] python3-mdit-py-plugins: rebuild for Python 3.14 --- srcpkgs/python3-mdit-py-plugins/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mdit-py-plugins/template b/srcpkgs/python3-mdit-py-plugins/template index 488d659fd3de8e..f927f45687dc00 100644 --- a/srcpkgs/python3-mdit-py-plugins/template +++ b/srcpkgs/python3-mdit-py-plugins/template @@ -1,7 +1,7 @@ # Template file for 'python3-mdit-py-plugins' pkgname=python3-mdit-py-plugins version=0.4.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-flit_core" short_desc="Markdown-It-Py Plugin Extensions" From 844a8d5a0cc86a13211f25b0294a1fb8f9bce5fd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:47 -0500 Subject: [PATCH 0172/1664] python3-sphinx-automodapi: rebuild for Python 3.14 --- srcpkgs/python3-sphinx-automodapi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sphinx-automodapi/template b/srcpkgs/python3-sphinx-automodapi/template index e2fad1962f96b0..4e8813d0394838 100644 --- a/srcpkgs/python3-sphinx-automodapi/template +++ b/srcpkgs/python3-sphinx-automodapi/template @@ -1,7 +1,7 @@ # Template file for 'python3-sphinx-automodapi' pkgname=python3-sphinx-automodapi version=0.16.0 -revision=3 +revision=4 build_style=python3-pep517 # Something wrong with relative filepaths make_check_args=" From d6cea301df777ba7927d23af412c9bbfdcd0e860 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:47 -0500 Subject: [PATCH 0173/1664] python3-sphinx-markdown-tables: rebuild for Python 3.14 --- srcpkgs/python3-sphinx-markdown-tables/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sphinx-markdown-tables/template b/srcpkgs/python3-sphinx-markdown-tables/template index 493747fe6aa123..43354eb5ffabfd 100644 --- a/srcpkgs/python3-sphinx-markdown-tables/template +++ b/srcpkgs/python3-sphinx-markdown-tables/template @@ -1,7 +1,7 @@ # Template file for 'python3-sphinx-markdown-tables' pkgname=python3-sphinx-markdown-tables version=0.0.17 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools python3-Markdown" depends="python3-Markdown" From 2fa491f61e0d8009a3cf2d22e6ebc01b5a601df2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:47 -0500 Subject: [PATCH 0174/1664] z3: rebuild for Python 3.14 --- srcpkgs/z3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/z3/template b/srcpkgs/z3/template index 70c0035362b34a..e44cdef1626de9 100644 --- a/srcpkgs/z3/template +++ b/srcpkgs/z3/template @@ -1,7 +1,7 @@ # Template file for 'z3' pkgname=z3 version=4.15.4 -revision=1 +revision=2 build_style=configure configure_args="--prefix=/usr -g --python $(vopt_if ocaml --ml)" make_build_args="-C build all examples" From ccffacc825bda93be26a6a9b5bc99cafb81d9a4d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:48 -0500 Subject: [PATCH 0175/1664] sip: rebuild for Python 3.14 --- srcpkgs/sip/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sip/template b/srcpkgs/sip/template index 3aa0142ffa0075..cbe129ad93bbaa 100644 --- a/srcpkgs/sip/template +++ b/srcpkgs/sip/template @@ -1,7 +1,7 @@ # Template file for 'sip' pkgname=sip version=6.14.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-packaging" depends="python3-setuptools python3-packaging" From 9e27e9c5d18b1a50fda300abb96bfca8a3fac7ea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:48 -0500 Subject: [PATCH 0176/1664] python3-cachetools: rebuild for Python 3.14 --- srcpkgs/python3-cachetools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cachetools/template b/srcpkgs/python3-cachetools/template index f6857676d5b3c2..a2f192506a8c5d 100644 --- a/srcpkgs/python3-cachetools/template +++ b/srcpkgs/python3-cachetools/template @@ -1,7 +1,7 @@ # Template file for 'python3-cachetools' pkgname=python3-cachetools version=6.1.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From ea1e52631e36e0dcfdc98985ac464a58b80269e0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:48 -0500 Subject: [PATCH 0177/1664] python3-pyasn1-modules: rebuild for Python 3.14 --- srcpkgs/python3-pyasn1-modules/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyasn1-modules/template b/srcpkgs/python3-pyasn1-modules/template index 812fac03a888e5..5071f6f245010b 100644 --- a/srcpkgs/python3-pyasn1-modules/template +++ b/srcpkgs/python3-pyasn1-modules/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyasn1-modules' pkgname=python3-pyasn1-modules version=0.4.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3-pyasn1" From d9e9597ea8d2cf7a2464234e64e2d43d36ac229a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:48 -0500 Subject: [PATCH 0178/1664] python3-rsa: rebuild for Python 3.14 --- srcpkgs/python3-rsa/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-rsa/template b/srcpkgs/python3-rsa/template index dd8218526cf04d..f7a82bb39e31cf 100644 --- a/srcpkgs/python3-rsa/template +++ b/srcpkgs/python3-rsa/template @@ -1,7 +1,7 @@ # Template file for 'python3-rsa' pkgname=python3-rsa version=4.6 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-pyasn1" From 140c0822e04fb1f2552e138a742607f65f4803f8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:48 -0500 Subject: [PATCH 0179/1664] python3-protobuf: rebuild for Python 3.14 --- srcpkgs/python3-protobuf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-protobuf/template b/srcpkgs/python3-protobuf/template index d0a1a2418a1d53..8fea2943f0fe0b 100644 --- a/srcpkgs/python3-protobuf/template +++ b/srcpkgs/python3-protobuf/template @@ -1,7 +1,7 @@ # Template file for 'python3-protobuf' pkgname=python3-protobuf version=5.29.4 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools python3-wheel protobuf" makedepends="python3-devel protobuf-devel" From db1154f897571d7866ae26c2560937e69534a254 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:49 -0500 Subject: [PATCH 0180/1664] python3-cryptography: rebuild for Python 3.14 --- srcpkgs/python3-cryptography/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cryptography/template b/srcpkgs/python3-cryptography/template index 2c643e747479d5..92ddda917b5e7a 100644 --- a/srcpkgs/python3-cryptography/template +++ b/srcpkgs/python3-cryptography/template @@ -3,7 +3,7 @@ # it has very tie requirements for cryptography pkgname=python3-cryptography version=46.0.3 -revision=1 +revision=2 build_style=python3-pep517 build_helper="rust" make_check_args="--ignore tests/bench/test_x509.py --ignore tests/bench/test_aead.py" From f309a71646b085c698214a1853aa8cc0457d1eb8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:49 -0500 Subject: [PATCH 0181/1664] python3-zipp: rebuild for Python 3.14 --- srcpkgs/python3-zipp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zipp/template b/srcpkgs/python3-zipp/template index 30e437abffdb6e..36a91186a54227 100644 --- a/srcpkgs/python3-zipp/template +++ b/srcpkgs/python3-zipp/template @@ -1,7 +1,7 @@ # Template file for 'python3-zipp' pkgname=python3-zipp version=3.20.2 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3" From 053ac023eb330bd79844399a8497e862ac393b3a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:49 -0500 Subject: [PATCH 0182/1664] python3-dbus: rebuild for Python 3.14 --- srcpkgs/python3-dbus/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-dbus/template b/srcpkgs/python3-dbus/template index 365cc1f2ba9b74..883367cb00e298 100644 --- a/srcpkgs/python3-dbus/template +++ b/srcpkgs/python3-dbus/template @@ -1,7 +1,7 @@ # Template file for 'python3-dbus' pkgname=python3-dbus version=1.3.2 -revision=4 +revision=5 build_style=gnu-configure hostmakedepends="pkg-config python3-packaging-bootstrap" makedepends="libglib-devel python3-devel" From 5efadb93ddf3dc573edaf9e7ca8079b79a1b287e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:49 -0500 Subject: [PATCH 0183/1664] tdb: rebuild for Python 3.14 --- srcpkgs/tdb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tdb/template b/srcpkgs/tdb/template index 0b5d722c3199f8..66f9015033ba90 100644 --- a/srcpkgs/tdb/template +++ b/srcpkgs/tdb/template @@ -1,7 +1,7 @@ # Template file for 'tdb' pkgname=tdb version=1.4.10 -revision=2 +revision=3 build_style=waf3 build_helper="qemu" configure_script="buildtools/bin/waf" From 3ebb4a92a0767b2ff0ecb7bd87f6898610abe2ef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:49 -0500 Subject: [PATCH 0184/1664] tevent: rebuild for Python 3.14 --- srcpkgs/tevent/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tevent/template b/srcpkgs/tevent/template index f481f52736f28c..a9768110846f40 100644 --- a/srcpkgs/tevent/template +++ b/srcpkgs/tevent/template @@ -1,7 +1,7 @@ # Template file for 'tevent' pkgname=tevent version=0.16.1 -revision=2 +revision=3 build_style=waf3 build_helper="qemu" configure_script="buildtools/bin/waf" From 12d64545aa1e6398a2eceb07dbb084a78874dd96 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:49 -0500 Subject: [PATCH 0185/1664] python3-versioneer: rebuild for Python 3.14 --- srcpkgs/python3-versioneer/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-versioneer/template b/srcpkgs/python3-versioneer/template index 3d1f51618d934d..02a75c564d5877 100644 --- a/srcpkgs/python3-versioneer/template +++ b/srcpkgs/python3-versioneer/template @@ -1,7 +1,7 @@ # Template file for 'python3-versioneer' pkgname=python3-versioneer version=0.29 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 8b012cfcc8e6bd177832723b2b3c893d0f2ede76 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:49 -0500 Subject: [PATCH 0186/1664] python3-autocommand: rebuild for Python 3.14 --- srcpkgs/python3-autocommand/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-autocommand/template b/srcpkgs/python3-autocommand/template index 3537068e15cdb3..bd254919bddf04 100644 --- a/srcpkgs/python3-autocommand/template +++ b/srcpkgs/python3-autocommand/template @@ -1,7 +1,7 @@ # Template file for 'python3-autocommand' pkgname=python3-autocommand version=2.2.2 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 6067b925c22e4f2f302c913ee18f0c87e84ff644 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:50 -0500 Subject: [PATCH 0187/1664] python3-inflect: rebuild for Python 3.14 --- srcpkgs/python3-inflect/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-inflect/template b/srcpkgs/python3-inflect/template index cec20bacfb0f54..446158ad44422f 100644 --- a/srcpkgs/python3-inflect/template +++ b/srcpkgs/python3-inflect/template @@ -1,7 +1,7 @@ # Template file for 'python3-inflect' pkgname=python3-inflect version=7.4.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" depends="python3-more-itertools python3-typeguard python3-typing_extensions" From d0356035fce71e26fed2dd830d92eeb3b6c3d21e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:50 -0500 Subject: [PATCH 0188/1664] python3-jaraco.context: rebuild for Python 3.14 --- srcpkgs/python3-jaraco.context/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jaraco.context/template b/srcpkgs/python3-jaraco.context/template index b284e542e8d847..6adced6b561b13 100644 --- a/srcpkgs/python3-jaraco.context/template +++ b/srcpkgs/python3-jaraco.context/template @@ -1,7 +1,7 @@ # Template file for 'python3-jaraco.context' pkgname=python3-jaraco.context version=6.0.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" depends="python3" From f6ab488ebeacd8ac937d48c0c3c9a709512b6057 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:50 -0500 Subject: [PATCH 0189/1664] python3-jaraco.functools: rebuild for Python 3.14 --- srcpkgs/python3-jaraco.functools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jaraco.functools/template b/srcpkgs/python3-jaraco.functools/template index b2bf339f1799ff..dfc8068ea02971 100644 --- a/srcpkgs/python3-jaraco.functools/template +++ b/srcpkgs/python3-jaraco.functools/template @@ -1,7 +1,7 @@ # Template file for 'python3-jaraco.functools' pkgname=python3-jaraco.functools version=4.0.2 -revision=2 +revision=3 build_style=python3-pep517 make_check_args="--override-ini='addopts=--doctest-modules'" hostmakedepends="python3-wheel python3-setuptools_scm" From cdea2e376578225c6c96bd9c2931a6bbd14e1404 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:50 -0500 Subject: [PATCH 0190/1664] python3-pytz: rebuild for Python 3.14 --- srcpkgs/python3-pytz/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytz/template b/srcpkgs/python3-pytz/template index 70d3dc1d7737c7..ab8bdcd2061c88 100644 --- a/srcpkgs/python3-pytz/template +++ b/srcpkgs/python3-pytz/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytz' pkgname=python3-pytz version=2025.2 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 tzdata" From 818c7263bbc424e5cd54caae9a326e4b36ad8642 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:50 -0500 Subject: [PATCH 0191/1664] python3-jupyter_packaging: rebuild for Python 3.14 --- srcpkgs/python3-jupyter_packaging/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jupyter_packaging/template b/srcpkgs/python3-jupyter_packaging/template index 14289fde3127ad..49e7ec982f7636 100644 --- a/srcpkgs/python3-jupyter_packaging/template +++ b/srcpkgs/python3-jupyter_packaging/template @@ -1,7 +1,7 @@ # Template file for 'python3-jupyter_packaging' pkgname=python3-jupyter_packaging version=0.12.3 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3-deprecation python3-packaging python3-setuptools From 74d1c6264301ebc5e011f5880ac3a3a950c52320 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:50 -0500 Subject: [PATCH 0192/1664] jupyterlab: update to 4.4.10. --- srcpkgs/jupyterlab/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/jupyterlab/template b/srcpkgs/jupyterlab/template index 18091204e1d5c1..4a6e1c450055bc 100644 --- a/srcpkgs/jupyterlab/template +++ b/srcpkgs/jupyterlab/template @@ -1,6 +1,6 @@ # Template file for 'jupyterlab' pkgname=jupyterlab -version=4.4.2 +version=4.4.10 revision=1 build_style=python3-pep517 hostmakedepends="hatchling hatch-jupyter-builder" @@ -15,7 +15,7 @@ license="custom:jupyterlab" homepage="https://github.com/jupyterlab/jupyterlab/" changelog="https://raw.githubusercontent.com/jupyterlab/jupyterlab/main/CHANGELOG.md" distfiles="${PYPI_SITE}/j/jupyterlab/jupyterlab-${version}.tar.gz" -checksum=afa9caf28c0cb966488be18e5e8daba9f018a1c4273a406b7d5006344cbc6d16 +checksum=521c017508af4e1d6d9d8a9d90f47a11c61197ad63b2178342489de42540a615 if [ "${XBPS_BUILD_ENVIRONMENT}" = void-packages-ci ]; then # this test fails on CI (network timeout) From 3f19094b920b4a7cfa0d7f4a000c9feb030df8c7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:51 -0500 Subject: [PATCH 0193/1664] python3-numpy: update to 2.3.5. --- srcpkgs/python3-numpy/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-numpy/template b/srcpkgs/python3-numpy/template index 99b3e40d2edbf0..c91e5b4dc2d685 100644 --- a/srcpkgs/python3-numpy/template +++ b/srcpkgs/python3-numpy/template @@ -1,6 +1,6 @@ # Template file for 'python3-numpy' pkgname=python3-numpy -version=2.3.4 +version=2.3.5 revision=1 build_style=python3-pep517 build_helper="meson qemu" @@ -19,7 +19,7 @@ license="BSD-3-Clause" homepage="https://www.numpy.org/" changelog="https://github.com/numpy/numpy/releases" distfiles="${PYPI_SITE}/n/numpy/numpy-${version}.tar.gz" -checksum=a7d018bfedb375a8d979ac758b120ba846a7fe764911a64465fd87b8729f4a6a +checksum=784db1dcdab56bf0517743e746dfb0f885fc68d948aba86eeec2cba234bdf1c0 alternatives="numpy:f2py:/usr/bin/f2py3" build_options="openblas" From c3b1e94aea8249d2bcaeebb3ae8f518cd625e2ef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:51 -0500 Subject: [PATCH 0194/1664] python3-pybind11: rebuild for Python 3.14 --- srcpkgs/python3-pybind11/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pybind11/template b/srcpkgs/python3-pybind11/template index 9ba13b52d48ca0..514b991395b705 100644 --- a/srcpkgs/python3-pybind11/template +++ b/srcpkgs/python3-pybind11/template @@ -1,7 +1,7 @@ # Template file for 'python3-pybind11' pkgname=python3-pybind11 version=3.0.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-scikit-build-core ninja python3-sphinx_rtd_theme python3-breathe" From d707e4f38b72077f60339e71278619bdba72a7df Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:51 -0500 Subject: [PATCH 0195/1664] python3-cppy: rebuild for Python 3.14 --- srcpkgs/python3-cppy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cppy/template b/srcpkgs/python3-cppy/template index ad1adbb7af6fb1..049deb8d66e603 100644 --- a/srcpkgs/python3-cppy/template +++ b/srcpkgs/python3-cppy/template @@ -1,7 +1,7 @@ # Template file for 'python3-cppy' pkgname=python3-cppy version=1.3.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3" From cf059a85470699c7d06232975e9a335531fb825f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:51 -0500 Subject: [PATCH 0196/1664] python3-beniget: update to 0.5.0. --- srcpkgs/python3-beniget/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-beniget/template b/srcpkgs/python3-beniget/template index 946ade0cf46b41..6475b42ce10ea0 100644 --- a/srcpkgs/python3-beniget/template +++ b/srcpkgs/python3-beniget/template @@ -1,7 +1,7 @@ # Template file for 'python3-beniget' pkgname=python3-beniget -version=0.4.2.post1 -revision=2 +version=0.5.0 +revision=1 build_style=python3-module hostmakedepends="python3-setuptools python3-gast" depends="python3-gast" @@ -11,7 +11,7 @@ maintainer="Andrew J. Hesford " license="BSD-3-Clause" homepage="https://github.com/serge-sans-paille/beniget" distfiles="${PYPI_SITE}/b/beniget/beniget-${version}.tar.gz" -checksum=a0258537e65e7e14ec33a86802f865a667f949bb6c73646d55e42f7c45a052ae +checksum=e7af11fa8ec7de3d3eb3d98b1e722d15d44017d8b35d8aa11d54f6719b312f22 do_check() { python3 -m pytest tests/* From 9e3abc3058174763f34f322756f4523740780e42 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:51 -0500 Subject: [PATCH 0197/1664] python3-gmpy2: rebuild for Python 3.14 --- srcpkgs/python3-gmpy2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-gmpy2/template b/srcpkgs/python3-gmpy2/template index 93d82a79f67299..b8ae5547334fda 100644 --- a/srcpkgs/python3-gmpy2/template +++ b/srcpkgs/python3-gmpy2/template @@ -1,7 +1,7 @@ # Template file for 'python3-gmpy2' pkgname=python3-gmpy2 version=2.2.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" makedepends="python3-devel gmp-devel mpfr-devel libmpc-devel" From cf653b0c6d664b1dd60c8af3febbf57ebfbbb028 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:51 -0500 Subject: [PATCH 0198/1664] python3-colorama: rebuild for Python 3.14 --- srcpkgs/python3-colorama/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-colorama/template b/srcpkgs/python3-colorama/template index 5df8d6abad16f8..4574c83562384b 100644 --- a/srcpkgs/python3-colorama/template +++ b/srcpkgs/python3-colorama/template @@ -1,7 +1,7 @@ # Template file for 'python3-colorama' pkgname=python3-colorama version=0.4.6 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3" From dbb298a8969f94d212c7b38e6ba45b7e4e90744e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:52 -0500 Subject: [PATCH 0199/1664] python3-zope.proxy: rebuild for Python 3.14 --- srcpkgs/python3-zope.proxy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zope.proxy/template b/srcpkgs/python3-zope.proxy/template index f024ec1356dda5..b88ee035d04e06 100644 --- a/srcpkgs/python3-zope.proxy/template +++ b/srcpkgs/python3-zope.proxy/template @@ -1,7 +1,7 @@ # Template file for 'python3-zope.proxy' pkgname=python3-zope.proxy version=4.4.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools python3-Sphinx" makedepends="python3-devel" From 8b0b7477e0dfa36425a92dc95387cbfd2ea7206c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:52 -0500 Subject: [PATCH 0200/1664] python3-zope.event: rebuild for Python 3.14 --- srcpkgs/python3-zope.event/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zope.event/template b/srcpkgs/python3-zope.event/template index 6b1f6ba8a15ff7..cb2066b3bccd4c 100644 --- a/srcpkgs/python3-zope.event/template +++ b/srcpkgs/python3-zope.event/template @@ -1,7 +1,7 @@ # Template file for 'python3-zope.event' pkgname=python3-zope.event version=4.5.0 -revision=5 +revision=6 build_style=python3-module pycompile_module="zope/event" hostmakedepends="python3-setuptools" From d6bff91a65b72ca62311e27dd7bee9d7c0264e1a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:52 -0500 Subject: [PATCH 0201/1664] python3-Werkzeug: rebuild for Python 3.14 --- srcpkgs/python3-Werkzeug/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Werkzeug/template b/srcpkgs/python3-Werkzeug/template index 9eee5102541bec..37068dfa2a7303 100644 --- a/srcpkgs/python3-Werkzeug/template +++ b/srcpkgs/python3-Werkzeug/template @@ -1,7 +1,7 @@ # Template file for 'python3-Werkzeug' pkgname=python3-Werkzeug version=3.1.3 -revision=1 +revision=2 build_style=python3-pep517 # Some tests depend on unpackaged dependencies make_check_args=" From cb4ba1a2741d54908cb441c0da8676080be93013 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:52 -0500 Subject: [PATCH 0202/1664] python3-blinker: rebuild for Python 3.14 --- srcpkgs/python3-blinker/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-blinker/template b/srcpkgs/python3-blinker/template index c2a491d0f0939a..c583b2598e69e8 100644 --- a/srcpkgs/python3-blinker/template +++ b/srcpkgs/python3-blinker/template @@ -1,7 +1,7 @@ # Template file for 'python3-blinker' pkgname=python3-blinker version=1.9.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" makedepends="python3-devel" From 8366074ce9ea351ae8b592962ed8f4c87dd96427 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:52 -0500 Subject: [PATCH 0203/1664] python3-itsdangerous: rebuild for Python 3.14 --- srcpkgs/python3-itsdangerous/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-itsdangerous/template b/srcpkgs/python3-itsdangerous/template index 907af86b4920c5..7dbeeafa413484 100644 --- a/srcpkgs/python3-itsdangerous/template +++ b/srcpkgs/python3-itsdangerous/template @@ -1,7 +1,7 @@ # Template file for 'python3-itsdangerous' pkgname=python3-itsdangerous version=2.2.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" checkdepends="python3-freezegun python3-pytest" From be13145cf4fb6d643b1db7d2e0db4d35c7d81eff Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:52 -0500 Subject: [PATCH 0204/1664] python3-wrapt: rebuild for Python 3.14 --- srcpkgs/python3-wrapt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-wrapt/template b/srcpkgs/python3-wrapt/template index 65b775e6a54008..2d54016f26f9f6 100644 --- a/srcpkgs/python3-wrapt/template +++ b/srcpkgs/python3-wrapt/template @@ -1,7 +1,7 @@ # Template file for 'python3-wrapt' pkgname=python3-wrapt version=1.17.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" makedepends="python3-devel" From 88e6977887b28b62a6850d7a221acac7fd5dff07 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:53 -0500 Subject: [PATCH 0205/1664] python3-bcrypt: rebuild for Python 3.14 --- srcpkgs/python3-bcrypt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-bcrypt/template b/srcpkgs/python3-bcrypt/template index 6145c49102dea6..3cebc6388846ee 100644 --- a/srcpkgs/python3-bcrypt/template +++ b/srcpkgs/python3-bcrypt/template @@ -1,7 +1,7 @@ # Template file for 'python3-bcrypt' pkgname=python3-bcrypt version=4.1.2 -revision=2 +revision=3 build_style=python3-pep517 build_helper="rust" hostmakedepends="python3-setuptools-rust python3-wheel python3-cffi cargo" From 419e8e2660069c58258c157143a011cb6edaefcf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:53 -0500 Subject: [PATCH 0206/1664] python3-pynacl: rebuild for Python 3.14 --- srcpkgs/python3-pynacl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pynacl/template b/srcpkgs/python3-pynacl/template index 2dd0ea1277b5b4..7e1d69ef33bef5 100644 --- a/srcpkgs/python3-pynacl/template +++ b/srcpkgs/python3-pynacl/template @@ -1,7 +1,7 @@ # Template file for 'python3-pynacl' pkgname=python3-pynacl version=1.5.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools python3-cffi python3-wheel" makedepends="python3-devel python3-cffi libsodium-devel" From a70e34c17bdb0b63fce38aa5ee71c211c63bcdd4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:53 -0500 Subject: [PATCH 0207/1664] python3-aiosignal: rebuild for Python 3.14 --- srcpkgs/python3-aiosignal/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-aiosignal/template b/srcpkgs/python3-aiosignal/template index 2b1d743f231605..38010fe7f0c729 100644 --- a/srcpkgs/python3-aiosignal/template +++ b/srcpkgs/python3-aiosignal/template @@ -1,7 +1,7 @@ # Template file for 'python3-aiosignal' pkgname=python3-aiosignal version=1.3.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-frozenlist" From b7bbccb4cac2eab845e92d5d417d3f8221fd97d5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:53 -0500 Subject: [PATCH 0208/1664] python3-yarl: rebuild for Python 3.14 --- srcpkgs/python3-yarl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-yarl/template b/srcpkgs/python3-yarl/template index ee13843a190d6b..000991cc6a09f0 100644 --- a/srcpkgs/python3-yarl/template +++ b/srcpkgs/python3-yarl/template @@ -1,7 +1,7 @@ # Template file for 'python3-yarl' pkgname=python3-yarl version=1.22.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel python3-Cython" makedepends="python3-devel" From 1cb0457ed19b8daf95ce99bf5932dd821cb20c46 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:53 -0500 Subject: [PATCH 0209/1664] python3-gobject: rebuild for Python 3.14 --- srcpkgs/python3-gobject/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-gobject/template b/srcpkgs/python3-gobject/template index 1d07bba9717d28..07d1fa8400cc6a 100644 --- a/srcpkgs/python3-gobject/template +++ b/srcpkgs/python3-gobject/template @@ -1,7 +1,7 @@ # Template file for 'python3-gobject' pkgname=python3-gobject version=3.54.2 -revision=1 +revision=2 build_style=meson build_helper="gir" configure_args="-Dpython=python${py3_ver}" From 991be8c0e862e24cf4fad58685bc433b85b5b2e1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:53 -0500 Subject: [PATCH 0210/1664] llvm21: rebuild for Python 3.14 --- srcpkgs/llvm21/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/llvm21/template b/srcpkgs/llvm21/template index 8ecb54b85a5736..de7441177e3f61 100644 --- a/srcpkgs/llvm21/template +++ b/srcpkgs/llvm21/template @@ -1,7 +1,7 @@ # Template file for 'llvm21' pkgname=llvm21 version=21.1.4 -revision=1 +revision=2 build_wrksrc=llvm build_style=cmake _major="${version%%.*}" From b55bd7bf989b4a93aa96c5ce50322bfdc21f27a6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:53 -0500 Subject: [PATCH 0211/1664] python3-PyQt-builder: rebuild for Python 3.14 --- srcpkgs/python3-PyQt-builder/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-PyQt-builder/template b/srcpkgs/python3-PyQt-builder/template index a4a06a93260b29..76f814e63de323 100644 --- a/srcpkgs/python3-PyQt-builder/template +++ b/srcpkgs/python3-PyQt-builder/template @@ -1,7 +1,7 @@ # Template file for 'python3-PyQt-builder' pkgname=python3-PyQt-builder version=1.19.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-setuptools_scm sip python3-wheel" depends="sip>=6.7" From b93af6475d34f5b2f1c9fc1f08d6e27e80c6eff2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:54 -0500 Subject: [PATCH 0212/1664] python3-sip-PyQt5: rebuild for Python 3.14 --- srcpkgs/python3-sip-PyQt5/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sip-PyQt5/template b/srcpkgs/python3-sip-PyQt5/template index 3d7bad91872b4d..349f187120927e 100644 --- a/srcpkgs/python3-sip-PyQt5/template +++ b/srcpkgs/python3-sip-PyQt5/template @@ -1,7 +1,7 @@ # Template file for 'python3-sip-PyQt5' pkgname=python3-sip-PyQt5 version=12.17.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-devel python3-setuptools sip" makedepends="python3-devel" From c7cbf9916b1a82e9c3d0af4276d8e81944c23235 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:54 -0500 Subject: [PATCH 0213/1664] python3-google-auth: rebuild for Python 3.14 --- srcpkgs/python3-google-auth/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-google-auth/template b/srcpkgs/python3-google-auth/template index 16c66fdc47a932..dd7b9c8cee780d 100644 --- a/srcpkgs/python3-google-auth/template +++ b/srcpkgs/python3-google-auth/template @@ -1,7 +1,7 @@ # Template file for 'python3-google-auth' pkgname=python3-google-auth version=2.16.2 -revision=3 +revision=4 build_style=python3-module # upstream restricts python3-cryptography to lower versions # for tests; causing them to fail with the version in repo From 116a383fa8b46de69ef8b9585a97a3550e307107 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:54 -0500 Subject: [PATCH 0214/1664] python3-googleapis-common-protos: rebuild for Python 3.14 --- srcpkgs/python3-googleapis-common-protos/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-googleapis-common-protos/template b/srcpkgs/python3-googleapis-common-protos/template index 1fdf795f81bd44..280ac173c1b4eb 100644 --- a/srcpkgs/python3-googleapis-common-protos/template +++ b/srcpkgs/python3-googleapis-common-protos/template @@ -1,7 +1,7 @@ # Template file for 'python3-googleapis-common-protos' pkgname=python3-googleapis-common-protos version=1.58.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-protobuf" From 28f2b443c9c381f4553220dfccc8ec2b74ebf832 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:54 -0500 Subject: [PATCH 0215/1664] python3-httplib2: rebuild for Python 3.14 --- srcpkgs/python3-httplib2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-httplib2/template b/srcpkgs/python3-httplib2/template index 2a63cd3309f247..04710f8bc28b94 100644 --- a/srcpkgs/python3-httplib2/template +++ b/srcpkgs/python3-httplib2/template @@ -1,7 +1,7 @@ # Template file for 'python3-httplib2' pkgname=python3-httplib2 version=0.22.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 ca-certificates python3-parsing" From 4b17a0be183122c8fc1f25a5226e1d4df93b327e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:54 -0500 Subject: [PATCH 0216/1664] python3-dnspython: rebuild for Python 3.14 --- srcpkgs/python3-dnspython/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-dnspython/template b/srcpkgs/python3-dnspython/template index 7621d6bef22bea..71921bb7b01865 100644 --- a/srcpkgs/python3-dnspython/template +++ b/srcpkgs/python3-dnspython/template @@ -1,7 +1,7 @@ # Template file for 'python3-dnspython' pkgname=python3-dnspython version=2.6.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3" From 1c11b6553e32f29e3771e67d13f74beac5bb3303 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:54 -0500 Subject: [PATCH 0217/1664] python3-openssl: rebuild for Python 3.14 --- srcpkgs/python3-openssl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-openssl/template b/srcpkgs/python3-openssl/template index 656fa85b8f3ac7..a68ad20b78d006 100644 --- a/srcpkgs/python3-openssl/template +++ b/srcpkgs/python3-openssl/template @@ -1,7 +1,7 @@ # Template file for 'python3-openssl' pkgname=python3-openssl version=25.3.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3-cryptography" From 14af216dbecc22a706089e500b5450213950411f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:55 -0500 Subject: [PATCH 0218/1664] python3-jmespath: rebuild for Python 3.14 --- srcpkgs/python3-jmespath/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jmespath/template b/srcpkgs/python3-jmespath/template index abdc3ac3b730a1..214a46852b51af 100644 --- a/srcpkgs/python3-jmespath/template +++ b/srcpkgs/python3-jmespath/template @@ -1,7 +1,7 @@ # Template file for 'python3-jmespath' pkgname=python3-jmespath version=1.0.1 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 1e58af3c34be7073ca527fdacc625db6616d07e5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:55 -0500 Subject: [PATCH 0219/1664] python3-jeepney: rebuild for Python 3.14 --- srcpkgs/python3-jeepney/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jeepney/template b/srcpkgs/python3-jeepney/template index 5aefc40ef5b0ce..31f1627860873d 100644 --- a/srcpkgs/python3-jeepney/template +++ b/srcpkgs/python3-jeepney/template @@ -1,7 +1,7 @@ # Template file for 'python3-jeepney' pkgname=python3-jeepney version=0.9.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-flit_core" depends="python3" From 942f17eb2a71aae4021772505b59d2bf91f2e3aa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:55 -0500 Subject: [PATCH 0220/1664] python3-importlib_metadata: rebuild for Python 3.14 --- srcpkgs/python3-importlib_metadata/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-importlib_metadata/template b/srcpkgs/python3-importlib_metadata/template index 0370f55458fb5e..d14d005aef4229 100644 --- a/srcpkgs/python3-importlib_metadata/template +++ b/srcpkgs/python3-importlib_metadata/template @@ -1,7 +1,7 @@ # Template file for 'python3-importlib_metadata' pkgname=python3-importlib_metadata version=8.5.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3-zipp" From 65ebad129c39203372eaa5de4e8ec13d10036e07 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:55 -0500 Subject: [PATCH 0221/1664] python3-notify2: rebuild for Python 3.14 --- srcpkgs/python3-notify2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-notify2/template b/srcpkgs/python3-notify2/template index 425262bc9fcba1..cb1144284ecfb8 100644 --- a/srcpkgs/python3-notify2/template +++ b/srcpkgs/python3-notify2/template @@ -1,7 +1,7 @@ # Template file for 'python3-notify2' pkgname=python3-notify2 version=0.3.1 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-dbus" From 2b9aa0cf1d8af9fb2f35eeeb882a7224954170eb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:55 -0500 Subject: [PATCH 0222/1664] glusterfs: rebuild for Python 3.14 --- srcpkgs/glusterfs/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/glusterfs/template b/srcpkgs/glusterfs/template index c6baa514edc36b..09781954e40370 100644 --- a/srcpkgs/glusterfs/template +++ b/srcpkgs/glusterfs/template @@ -1,7 +1,7 @@ # Template file for 'glusterfs' pkgname=glusterfs version=9.6 -revision=2 +revision=3 build_style=gnu-configure configure_args=" --with-mountutildir=/usr/bin From 6a11c04c494f53bda240c0a40abd5a566a8ca308 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:55 -0500 Subject: [PATCH 0223/1664] ldb: rebuild for Python 3.14 --- srcpkgs/ldb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ldb/template b/srcpkgs/ldb/template index 6a697c7822f22c..a9d82a1be69bf2 100644 --- a/srcpkgs/ldb/template +++ b/srcpkgs/ldb/template @@ -1,7 +1,7 @@ # Template file for 'ldb' pkgname=ldb version=2.9.0 -revision=2 +revision=3 build_style=waf3 build_helper="qemu" configure_script="buildtools/bin/waf" From 42dc74938ada6ac590f188d043f7ba20e07fb22f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:56 -0500 Subject: [PATCH 0224/1664] python3-elementpath: rebuild for Python 3.14 --- srcpkgs/python3-elementpath/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-elementpath/template b/srcpkgs/python3-elementpath/template index 50822cbb089e39..2c8d244e8c59df 100644 --- a/srcpkgs/python3-elementpath/template +++ b/srcpkgs/python3-elementpath/template @@ -1,7 +1,7 @@ # Template file for 'python3-elementpath' pkgname=python3-elementpath version=3.0.2 -revision=4 +revision=5 build_style=python3-module # depends on xmlschema and memory_profiling make_check_args="--ignore tests/memory_profiling.py \ From 9dff01f56d7581491585c3375bf18aa705a5a749 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:56 -0500 Subject: [PATCH 0225/1664] python3-automat: rebuild for Python 3.14 --- srcpkgs/python3-automat/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-automat/template b/srcpkgs/python3-automat/template index 258a0e02cc2549..204cead05afb00 100644 --- a/srcpkgs/python3-automat/template +++ b/srcpkgs/python3-automat/template @@ -1,7 +1,7 @@ # Template file for 'python3-automat' pkgname=python3-automat version=24.8.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-setuptools_scm python3-wheel" depends="python3-setuptools python3-attrs python3-six" From 9a9c679ae94960fc93ef4dfae3dbca9a317b7480 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:56 -0500 Subject: [PATCH 0226/1664] python3-constantly: rebuild for Python 3.14 --- srcpkgs/python3-constantly/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-constantly/template b/srcpkgs/python3-constantly/template index 2d60e07786108f..fda7e06dd298f9 100644 --- a/srcpkgs/python3-constantly/template +++ b/srcpkgs/python3-constantly/template @@ -1,7 +1,7 @@ # Template file for 'python3-constantly' pkgname=python3-constantly version=23.10.4 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools python3-versioneer" depends="python3" From d7f2f448dc3d901731a2bca85da48e56be7ce8bc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:56 -0500 Subject: [PATCH 0227/1664] python3-hyperlink: rebuild for Python 3.14 --- srcpkgs/python3-hyperlink/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-hyperlink/template b/srcpkgs/python3-hyperlink/template index 38167b7eda9079..65896976e599af 100644 --- a/srcpkgs/python3-hyperlink/template +++ b/srcpkgs/python3-hyperlink/template @@ -1,7 +1,7 @@ # Template file for 'python3-hyperlink' pkgname=python3-hyperlink version=21.0.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-idna" From babd3ddbe6c13da15767af283b096c0ddad6f819 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:56 -0500 Subject: [PATCH 0228/1664] python3-incremental: rebuild for Python 3.14 --- srcpkgs/python3-incremental/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-incremental/template b/srcpkgs/python3-incremental/template index 1eb99e0f45536b..a8fe004896550e 100644 --- a/srcpkgs/python3-incremental/template +++ b/srcpkgs/python3-incremental/template @@ -1,7 +1,7 @@ # Template file for 'python3-incremental' pkgname=python3-incremental version=24.7.2 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3" From b85d9714e289ebe5339c910f9be072bbf8a9af94 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:56 -0500 Subject: [PATCH 0229/1664] python3-service_identity: rebuild for Python 3.14 --- srcpkgs/python3-service_identity/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-service_identity/template b/srcpkgs/python3-service_identity/template index 3ff5fd7c1d633e..6ca31ef0e6d135 100644 --- a/srcpkgs/python3-service_identity/template +++ b/srcpkgs/python3-service_identity/template @@ -1,7 +1,7 @@ # Template file for 'python3-service_identity' pkgname=python3-service_identity version=24.2.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs hatch-fancy-pypi-readme" depends="python3-attrs python3-cryptography python3-pyasn1 python3-pyasn1-modules" From b53926f7b0b9e3ed292e2f65e0551c4c92422a82 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:57 -0500 Subject: [PATCH 0230/1664] python3-jaraco.classes: rebuild for Python 3.14 --- srcpkgs/python3-jaraco.classes/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jaraco.classes/template b/srcpkgs/python3-jaraco.classes/template index b30914c10611ec..12574f495128c6 100644 --- a/srcpkgs/python3-jaraco.classes/template +++ b/srcpkgs/python3-jaraco.classes/template @@ -1,7 +1,7 @@ # Template file for 'python3-jaraco.classes' pkgname=python3-jaraco.classes version=3.4.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" depends="python3-more-itertools" From 03af968b2c7e31086209c82b9f4651021a4c01fb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:57 -0500 Subject: [PATCH 0231/1664] python3-jaraco.text: rebuild for Python 3.14 --- srcpkgs/python3-jaraco.text/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jaraco.text/template b/srcpkgs/python3-jaraco.text/template index 5e942c5e6d03a1..0560a04378f205 100644 --- a/srcpkgs/python3-jaraco.text/template +++ b/srcpkgs/python3-jaraco.text/template @@ -1,7 +1,7 @@ # Template file for 'python3-jaraco.text' pkgname=python3-jaraco.text version=4.0.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" depends="python3-jaraco.functools python3-jaraco.context python3-autocommand From 6cd602449fa3a8d85ef3c2cb0407b9472c02494a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:57 -0500 Subject: [PATCH 0232/1664] python3-tempora: rebuild for Python 3.14 --- srcpkgs/python3-tempora/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tempora/template b/srcpkgs/python3-tempora/template index 773300cba2fa6f..f1b0f7125b6f10 100644 --- a/srcpkgs/python3-tempora/template +++ b/srcpkgs/python3-tempora/template @@ -1,7 +1,7 @@ # Template file for 'python3-tempora' pkgname=python3-tempora version=5.2.1 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" depends="python3-pytz python3-jaraco.functools" From 40e9a78905ee5973959385fa2d7267a3ebad01ba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:57 -0500 Subject: [PATCH 0233/1664] python3-cysignals: rebuild for Python 3.14 --- srcpkgs/python3-cysignals/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cysignals/template b/srcpkgs/python3-cysignals/template index c260730e0c652c..eff940c8c2fc2d 100644 --- a/srcpkgs/python3-cysignals/template +++ b/srcpkgs/python3-cysignals/template @@ -1,7 +1,7 @@ # Template file for 'python3-cysignals' pkgname=python3-cysignals version=1.12.4 -revision=1 +revision=2 build_style=python3-pep517 build_helper=meson hostmakedepends="python3-meson-python python3-Cython" From 6d62f3261b75504e23a0515c05b0c77a0866ec32 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:57 -0500 Subject: [PATCH 0234/1664] python3-jupyter_widgetsnbextension: rebuild for Python 3.14 --- srcpkgs/python3-jupyter_widgetsnbextension/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jupyter_widgetsnbextension/template b/srcpkgs/python3-jupyter_widgetsnbextension/template index 068b3364560be1..70dca0baccc8cd 100644 --- a/srcpkgs/python3-jupyter_widgetsnbextension/template +++ b/srcpkgs/python3-jupyter_widgetsnbextension/template @@ -1,7 +1,7 @@ # Template file for 'python3-jupyter_widgetsnbextension' pkgname=python3-jupyter_widgetsnbextension version=4.0.14 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-jupyter_packaging" short_desc="Interactive HTML widgets for Jupyter notebooks" From 59c14face929dce181286c261ef1cddc690e7e9a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:57 -0500 Subject: [PATCH 0235/1664] python3-jupyterlab_widgets: update to 3.0.16. --- srcpkgs/python3-jupyterlab_widgets/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-jupyterlab_widgets/template b/srcpkgs/python3-jupyterlab_widgets/template index 938fe6f7b0e591..023415420f1ee6 100644 --- a/srcpkgs/python3-jupyterlab_widgets/template +++ b/srcpkgs/python3-jupyterlab_widgets/template @@ -1,6 +1,6 @@ # Template file for 'python3-jupyterlab_widgets' pkgname=python3-jupyterlab_widgets -version=3.0.15 +version=3.0.16 revision=1 build_style=python3-pep517 hostmakedepends="hatchling hatch-jupyter-builder jupyterlab" @@ -10,7 +10,7 @@ maintainer="Gonzalo Tornaría " license="BSD-3-Clause" homepage="https://github.com/jupyter-widgets/ipywidgets/tree/main/python/jupyterlab_widgets" distfiles="${PYPI_SITE}/j/jupyterlab_widgets/jupyterlab_widgets-${version}.tar.gz" -checksum=2920888a0c2922351a9202817957a68c07d99673504d6cd37345299e971bb08b +checksum=423da05071d55cf27a9e602216d35a3a65a3e41cdf9c5d3b643b814ce38c19e0 make_check=no # Upstream defines no tests post_install() { From 109bb16d5adad602b2b43233167b2b79e13f8ee7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:57 -0500 Subject: [PATCH 0236/1664] fonttools: rebuild for Python 3.14 --- srcpkgs/fonttools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/fonttools/template b/srcpkgs/fonttools/template index 7ea78ece465320..ac03433ce06e9e 100644 --- a/srcpkgs/fonttools/template +++ b/srcpkgs/fonttools/template @@ -1,7 +1,7 @@ # Template file for 'fonttools' pkgname=fonttools version=4.59.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3" From 09efe51910464cf8521998b5525b520c6e58c0cf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:58 -0500 Subject: [PATCH 0237/1664] python3-Pillow: update to 12.0.0. --- srcpkgs/python3-Pillow/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-Pillow/template b/srcpkgs/python3-Pillow/template index ebafbeed187b07..d8f69aac6cf154 100644 --- a/srcpkgs/python3-Pillow/template +++ b/srcpkgs/python3-Pillow/template @@ -1,9 +1,9 @@ # Template file for 'python3-Pillow' pkgname=python3-Pillow -version=11.3.0 +version=12.0.0 revision=1 build_style=python3-module -hostmakedepends="python3-setuptools" +hostmakedepends="python3-setuptools python3-pybind11" makedepends="python3-devel libjpeg-turbo-devel libopenjpeg2-devel tiff-devel freetype-devel lcms2-devel libwebp-devel libimagequant-devel" depends="python3" @@ -14,7 +14,7 @@ license="custom:PIL" homepage="https://python-pillow.org" changelog="https://raw.githubusercontent.com/python-pillow/Pillow/master/CHANGES.rst" distfiles="${PYPI_SITE}/p/pillow/pillow-${version}.tar.gz" -checksum=3828ee7586cd0b2091b6209e5ad53e20d0649bbe87164a459d0676e035e8f523 +checksum=87d4f8125c9988bfbed67af47dd7a953e2fc7b0cc1e7800ec6d2080d490bb353 post_install() { vlicense LICENSE From 7aed9af9cf05324ca5fda4ed1d68772016077808 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:58 -0500 Subject: [PATCH 0238/1664] python3-contourpy: rebuild for Python 3.14 --- srcpkgs/python3-contourpy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-contourpy/template b/srcpkgs/python3-contourpy/template index 12f4ccbd1a8266..18d264f02c16e6 100644 --- a/srcpkgs/python3-contourpy/template +++ b/srcpkgs/python3-contourpy/template @@ -1,7 +1,7 @@ # Template file for 'python3-contourpy' pkgname=python3-contourpy version=1.3.3 -revision=1 +revision=2 build_style=python3-pep517 build_helper=meson hostmakedepends="python3-meson-python python3-pybind11 pkg-config" From b709c5a17e62942974c2d203cd7c58af6e0912f0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:58 -0500 Subject: [PATCH 0239/1664] python3-cycler: rebuild for Python 3.14 --- srcpkgs/python3-cycler/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cycler/template b/srcpkgs/python3-cycler/template index 82075d19186c43..99d0e6683654e1 100644 --- a/srcpkgs/python3-cycler/template +++ b/srcpkgs/python3-cycler/template @@ -1,7 +1,7 @@ # Template file for 'python3-cycler' pkgname=python3-cycler version=0.12.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From cf7faca327ed705e8410ac0c1864fd8ce895ad24 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:58 -0500 Subject: [PATCH 0240/1664] python3-kiwisolver: rebuild for Python 3.14 --- srcpkgs/python3-kiwisolver/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-kiwisolver/template b/srcpkgs/python3-kiwisolver/template index 9a215d72a21587..d1d8fe50873ee8 100644 --- a/srcpkgs/python3-kiwisolver/template +++ b/srcpkgs/python3-kiwisolver/template @@ -1,7 +1,7 @@ # Template file for 'python3-kiwisolver' pkgname=python3-kiwisolver version=1.4.9 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel python3-cppy" makedepends="python3-devel python3-cppy" From 087c5e15de1d6b80aa7b8fc086443c64009fa1a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:58 -0500 Subject: [PATCH 0241/1664] pythran: update to 0.18.1. --- srcpkgs/pythran/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/pythran/template b/srcpkgs/pythran/template index d6859622a812b6..866e8c5ba70f47 100644 --- a/srcpkgs/pythran/template +++ b/srcpkgs/pythran/template @@ -1,6 +1,6 @@ # Template file for 'pythran' pkgname=pythran -version=0.18.0 +version=0.18.1 revision=1 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" @@ -11,7 +11,7 @@ maintainer="Andrew J. Hesford " license="BSD-3-Clause" homepage="https://pythran.readthedocs.io/" distfiles="${PYPI_SITE}/p/pythran/pythran-${version}.tar.gz" -checksum=5c003e8cbedf6dbb68c2869c49fc110ce8b5e8982993078a4a819f1dadc4fc6a +checksum=8803ed948bf841a11bbbb10472a8ff6ea24ebd70e67c3f77b77be3db900eccfe # Upstream defines no tests make_check=no From c04e0c1a109555458e5e27a33d0e944c84e58e9d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:58 -0500 Subject: [PATCH 0242/1664] python3-mpmath: rebuild for Python 3.14 --- srcpkgs/python3-mpmath/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mpmath/template b/srcpkgs/python3-mpmath/template index 5bae4012c56109..fccf8b7881929a 100644 --- a/srcpkgs/python3-mpmath/template +++ b/srcpkgs/python3-mpmath/template @@ -1,7 +1,7 @@ # Template file for 'python3-mpmath' pkgname=python3-mpmath version=1.3.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 python3-gmpy2" From 8d07f4eaab9817238ae391be20fad3d856f6ee8e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:59 -0500 Subject: [PATCH 0243/1664] python3-oauthlib: rebuild for Python 3.14 --- srcpkgs/python3-oauthlib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-oauthlib/template b/srcpkgs/python3-oauthlib/template index 33e724d05ada80..f71174857c5d07 100644 --- a/srcpkgs/python3-oauthlib/template +++ b/srcpkgs/python3-oauthlib/template @@ -1,7 +1,7 @@ # Template file for 'python3-oauthlib' pkgname=python3-oauthlib version=3.1.0 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From b08b9f443867f9e4bf527cb614856288571722ea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:59 -0500 Subject: [PATCH 0244/1664] python3-pyqt6-sip: rebuild for Python 3.14 --- srcpkgs/python3-pyqt6-sip/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyqt6-sip/template b/srcpkgs/python3-pyqt6-sip/template index 78ccfafae6443c..bafeb47929d53b 100644 --- a/srcpkgs/python3-pyqt6-sip/template +++ b/srcpkgs/python3-pyqt6-sip/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyqt6-sip' pkgname=python3-pyqt6-sip version=13.10.2 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-devel python3-setuptools sip" makedepends="python3-devel" From 0bb2ed6efe3657fda922116749a611323032f742 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:59 -0500 Subject: [PATCH 0245/1664] python3-log_symbols: rebuild for Python 3.14 --- srcpkgs/python3-log_symbols/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-log_symbols/template b/srcpkgs/python3-log_symbols/template index 7c2e28c96b7bf6..11ce13d6fc6d7d 100644 --- a/srcpkgs/python3-log_symbols/template +++ b/srcpkgs/python3-log_symbols/template @@ -1,7 +1,7 @@ # Template file for 'python3-log_symbols' pkgname=python3-log_symbols version=0.0.14 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-colorama" From db6b5e45a9d9b001bbe3a57ee1dbe8174e8d2690 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:59 -0500 Subject: [PATCH 0246/1664] python3-spinners: rebuild for Python 3.14 --- srcpkgs/python3-spinners/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-spinners/template b/srcpkgs/python3-spinners/template index c1b518ebf296ce..268e7920386fae 100644 --- a/srcpkgs/python3-spinners/template +++ b/srcpkgs/python3-spinners/template @@ -1,7 +1,7 @@ # Template file for 'python3-spinners' pkgname=python3-spinners version=0.0.24 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 2f916d50e075e575a8a2f7420552873e6deeb242 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:59 -0500 Subject: [PATCH 0247/1664] python3-termcolor: rebuild for Python 3.14 --- srcpkgs/python3-termcolor/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-termcolor/template b/srcpkgs/python3-termcolor/template index f5b2d8aad82c65..eb8418d0171729 100644 --- a/srcpkgs/python3-termcolor/template +++ b/srcpkgs/python3-termcolor/template @@ -1,7 +1,7 @@ # Template file for 'python3-termcolor' pkgname=python3-termcolor version=1.1.0 -revision=13 +revision=14 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="${hostmakedepends}" From 8cb735ec2bb182456ae8244f52b1dc93244b0d56 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:59 -0500 Subject: [PATCH 0248/1664] python3-zope.deferredimport: rebuild for Python 3.14 --- srcpkgs/python3-zope.deferredimport/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zope.deferredimport/template b/srcpkgs/python3-zope.deferredimport/template index 2f667f28f301bf..59dc83ada19a37 100644 --- a/srcpkgs/python3-zope.deferredimport/template +++ b/srcpkgs/python3-zope.deferredimport/template @@ -1,7 +1,7 @@ # Template file for 'python3-zope.deferredimport' pkgname=python3-zope.deferredimport version=4.3.1 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-zope.proxy" From b495e840b5dae12f5af4952107a9adfc61e3696e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:59 -0500 Subject: [PATCH 0249/1664] python3-zope.deprecation: rebuild for Python 3.14 --- srcpkgs/python3-zope.deprecation/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zope.deprecation/template b/srcpkgs/python3-zope.deprecation/template index 2e204ae88e0977..5bbc7cd947aa18 100644 --- a/srcpkgs/python3-zope.deprecation/template +++ b/srcpkgs/python3-zope.deprecation/template @@ -1,7 +1,7 @@ # Template file for 'python3-zope.deprecation' pkgname=python3-zope.deprecation version=4.4.0 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends=python3 From 045a5e4ef05d7c4d1297d6d20364a08004c21453 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:00 -0500 Subject: [PATCH 0250/1664] python3-zope.hookable: rebuild for Python 3.14 --- srcpkgs/python3-zope.hookable/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zope.hookable/template b/srcpkgs/python3-zope.hookable/template index baa7e06d66c6c9..65e6da5c67886c 100644 --- a/srcpkgs/python3-zope.hookable/template +++ b/srcpkgs/python3-zope.hookable/template @@ -1,7 +1,7 @@ # Template file for 'python3-zope.hookable' pkgname=python3-zope.hookable version=5.2 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From b5ee3ab7a2959fe36faade14fac741ffd8c5b933 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:00 -0500 Subject: [PATCH 0251/1664] python3-zope.i18nmessageid: rebuild for Python 3.14 --- srcpkgs/python3-zope.i18nmessageid/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zope.i18nmessageid/template b/srcpkgs/python3-zope.i18nmessageid/template index 503d1f578ac82d..e0b785554a5999 100644 --- a/srcpkgs/python3-zope.i18nmessageid/template +++ b/srcpkgs/python3-zope.i18nmessageid/template @@ -1,7 +1,7 @@ # Template file for 'python3-zope.i18nmessageid' pkgname=python3-zope.i18nmessageid version=5.0.1 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools python3-Sphinx" makedepends="python3-devel" From e61e966493fdb8d6cb2eba84698a1aebc96b2687 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:00 -0500 Subject: [PATCH 0252/1664] python3-zope.schema: rebuild for Python 3.14 --- srcpkgs/python3-zope.schema/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zope.schema/template b/srcpkgs/python3-zope.schema/template index 58fff19b0f24e3..4b8813c7c40872 100644 --- a/srcpkgs/python3-zope.schema/template +++ b/srcpkgs/python3-zope.schema/template @@ -1,7 +1,7 @@ # Template file for 'python3-zope.schema' pkgname=python3-zope.schema version=6.0.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-zope.interface python3-zope.event" From 825a40c0bc46bc2aec1d986bc2b02fc6bdedd7e3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:00 -0500 Subject: [PATCH 0253/1664] python3-repoze.sphinx.autointerface: rebuild for Python 3.14 --- srcpkgs/python3-repoze.sphinx.autointerface/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-repoze.sphinx.autointerface/template b/srcpkgs/python3-repoze.sphinx.autointerface/template index 3de8d0302f959a..855f94b45e9d1c 100644 --- a/srcpkgs/python3-repoze.sphinx.autointerface/template +++ b/srcpkgs/python3-repoze.sphinx.autointerface/template @@ -1,7 +1,7 @@ # Template file for 'python3-repoze.sphinx.autointerface' pkgname=python3-repoze.sphinx.autointerface version=0.8 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-zope.interface python3-Sphinx python3-setuptools" From fef4c0b45b65fd731d32c968e42ec067322c074d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:00 -0500 Subject: [PATCH 0254/1664] python3-pkgconfig: rebuild for Python 3.14 --- srcpkgs/python3-pkgconfig/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pkgconfig/template b/srcpkgs/python3-pkgconfig/template index a36a8ea18158af..84a2fadc777860 100644 --- a/srcpkgs/python3-pkgconfig/template +++ b/srcpkgs/python3-pkgconfig/template @@ -1,7 +1,7 @@ # Template file for 'python3-pkgconfig' pkgname=python3-pkgconfig version=1.5.5 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 pkg-config" From b29254af4684e1ce1ae635389e3615ac295a0678 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:00 -0500 Subject: [PATCH 0255/1664] python3-xcffib: rebuild for Python 3.14 --- srcpkgs/python3-xcffib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-xcffib/template b/srcpkgs/python3-xcffib/template index d5ace824c44c88..89f54d3a21a4c0 100644 --- a/srcpkgs/python3-xcffib/template +++ b/srcpkgs/python3-xcffib/template @@ -1,7 +1,7 @@ # Template file for 'python3-xcffib' pkgname=python3-xcffib version=1.9.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel python3-cffi" depends="python3-cffi libxcb" From ea4a7c71c6ddc449842f93669e47c780b93679b1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:01 -0500 Subject: [PATCH 0256/1664] python3-pywayland: rebuild for Python 3.14 --- srcpkgs/python3-pywayland/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pywayland/template b/srcpkgs/python3-pywayland/template index 3b41a1ed8d90ee..81bc1ccf291906 100644 --- a/srcpkgs/python3-pywayland/template +++ b/srcpkgs/python3-pywayland/template @@ -1,7 +1,7 @@ # Template file for 'python3-pywayland' pkgname=python3-pywayland version=0.4.17 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools wayland-protocols pkg-config python3-wheel python3-cffi wayland-devel" From 915294327a5d148296cda649cfb43694408e052d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:01 -0500 Subject: [PATCH 0257/1664] python3-xkbcommon: rebuild for Python 3.14 --- srcpkgs/python3-xkbcommon/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-xkbcommon/template b/srcpkgs/python3-xkbcommon/template index 8acd43919b00e4..cb44b02f644456 100644 --- a/srcpkgs/python3-xkbcommon/template +++ b/srcpkgs/python3-xkbcommon/template @@ -1,7 +1,7 @@ # Template file for 'python3-xkbcommon' pkgname=python3-xkbcommon version=0.8 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-cffi python3-setuptools python3-wheel" makedepends="libxkbcommon-devel python3-devel" From 3668b89530342d8d577440950fd09ab751554091 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:01 -0500 Subject: [PATCH 0258/1664] python3-pyspnego: rebuild for Python 3.14 --- srcpkgs/python3-pyspnego/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyspnego/template b/srcpkgs/python3-pyspnego/template index 7f64f26f3d081d..f4fe4de41964ed 100644 --- a/srcpkgs/python3-pyspnego/template +++ b/srcpkgs/python3-pyspnego/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyspnego' pkgname=python3-pyspnego version=0.12.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3 python3-cryptography" From 2cf4c14633582b726115eaebfeb9f81500ccddce Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:01 -0500 Subject: [PATCH 0259/1664] python3-iniconfig: rebuild for Python 3.14 --- srcpkgs/python3-iniconfig/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-iniconfig/template b/srcpkgs/python3-iniconfig/template index 2b3f215977c5f6..836fe6a68b88fa 100644 --- a/srcpkgs/python3-iniconfig/template +++ b/srcpkgs/python3-iniconfig/template @@ -1,7 +1,7 @@ # Template file for 'python3-iniconfig' pkgname=python3-iniconfig version=1.1.1 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3" From 910b888c93f5d9abac288890c85b2e27fd498a3b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:01 -0500 Subject: [PATCH 0260/1664] python3-Flask: rebuild for Python 3.14 --- srcpkgs/python3-Flask/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Flask/template b/srcpkgs/python3-Flask/template index 99eac6e5fc71c9..1b7a8f7d3e6d29 100644 --- a/srcpkgs/python3-Flask/template +++ b/srcpkgs/python3-Flask/template @@ -1,7 +1,7 @@ # Template file for 'python3-Flask' pkgname=python3-Flask version=3.1.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3-Werkzeug python3-Jinja2 python3-itsdangerous From 5498111ac719a020fad7cdcde705d61f9f76537b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:01 -0500 Subject: [PATCH 0261/1664] python3-pyscard: rebuild for Python 3.14 --- srcpkgs/python3-pyscard/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyscard/template b/srcpkgs/python3-pyscard/template index 1074eb80e71519..f8dbb04de14113 100644 --- a/srcpkgs/python3-pyscard/template +++ b/srcpkgs/python3-pyscard/template @@ -2,7 +2,7 @@ pkgname=python3-pyscard _pkgname=pyscard version=2.2.2 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools swig" makedepends="python3-devel pcsclite-devel" From 2739992cdc83a8da2dd845941f5b22e5ca9df078 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:02 -0500 Subject: [PATCH 0262/1664] python3-ultrajson: rebuild for Python 3.14 --- srcpkgs/python3-ultrajson/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ultrajson/template b/srcpkgs/python3-ultrajson/template index 8b66cd124425cd..a423e8d091efe1 100644 --- a/srcpkgs/python3-ultrajson/template +++ b/srcpkgs/python3-ultrajson/template @@ -1,7 +1,7 @@ # Template file for 'python3-ultrajson' pkgname=python3-ultrajson version=5.11.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools_scm" makedepends="python3-devel" From 8ff2cb832043e633b674de314db5c445af6077e2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:02 -0500 Subject: [PATCH 0263/1664] python3-pathable: rebuild for Python 3.14 --- srcpkgs/python3-pathable/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pathable/template b/srcpkgs/python3-pathable/template index 58b2c746d8edea..db125db4557229 100644 --- a/srcpkgs/python3-pathable/template +++ b/srcpkgs/python3-pathable/template @@ -1,7 +1,7 @@ # Template file for 'python3-pathable' pkgname=python3-pathable version=0.4.4 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3" From 38b55fdd4884c222b9270988b3635e16c8c72fb6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:02 -0500 Subject: [PATCH 0264/1664] python3-deprecated: update to 1.3.1. --- srcpkgs/python3-deprecated/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-deprecated/template b/srcpkgs/python3-deprecated/template index e8706c5c6207a7..b8e6a7c4f7d60e 100644 --- a/srcpkgs/python3-deprecated/template +++ b/srcpkgs/python3-deprecated/template @@ -1,6 +1,6 @@ # Template file for 'python3-deprecated' pkgname=python3-deprecated -version=1.2.18 +version=1.3.1 revision=1 build_style=python3-module hostmakedepends="python3-setuptools" @@ -12,7 +12,7 @@ license="MIT" homepage="https://github.com/tantale/deprecated" changelog="https://raw.githubusercontent.com/tantale/deprecated/master/CHANGELOG.rst" distfiles="${homepage}/archive/v${version}.tar.gz" -checksum=8e5ad74b6a3a47b079b37425f46c54674668f3d4c9de7afd576574bb332dd5bd +checksum=5bfaa49b1edadd5599b2117baf2bf037f493eeda686d6b2c004d55e8ace6f988 post_install() { vlicense LICENSE.rst From 5ef2bab2675fb82f0530c9bff3984d1c3a8a7558 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:02 -0500 Subject: [PATCH 0265/1664] python3-lxml: rebuild for Python 3.14 --- srcpkgs/python3-lxml/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-lxml/template b/srcpkgs/python3-lxml/template index 9fe4b81cb75fc8..06e1c964b52ff2 100644 --- a/srcpkgs/python3-lxml/template +++ b/srcpkgs/python3-lxml/template @@ -1,7 +1,7 @@ # Template file for 'python3-lxml' pkgname=python3-lxml version=6.0.0 -revision=1 +revision=2 build_style=python3-pep517 make_build_args="-C--build-option=--with-cython" hostmakedepends="python3-Cython python3-setuptools python3-wheel" From 9cd6744505fac55a22e1b15ba363d67ddfc31a0c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:02 -0500 Subject: [PATCH 0266/1664] python3-paramiko: rebuild for Python 3.14 --- srcpkgs/python3-paramiko/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-paramiko/template b/srcpkgs/python3-paramiko/template index c63c19c9be4626..5b21ff238e79ad 100644 --- a/srcpkgs/python3-paramiko/template +++ b/srcpkgs/python3-paramiko/template @@ -1,7 +1,7 @@ # Template file for 'python3-paramiko' pkgname=python3-paramiko version=3.4.1 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-bcrypt python3-cryptography python3-pynacl" From 33c1734ce80fb98511067a12203e2888dd2e9eb0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:02 -0500 Subject: [PATCH 0267/1664] python3-resolvelib: rebuild for Python 3.14 --- srcpkgs/python3-resolvelib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-resolvelib/template b/srcpkgs/python3-resolvelib/template index c25b50b3c2c782..5fae7b5a543939 100644 --- a/srcpkgs/python3-resolvelib/template +++ b/srcpkgs/python3-resolvelib/template @@ -1,7 +1,7 @@ # Template file for 'python3-resolvelib' pkgname=python3-resolvelib version=1.0.1 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 3d5a77c23d40a7d635b4fbfa70c14bb5478a8bb9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:03 -0500 Subject: [PATCH 0268/1664] python3-straight.plugin: rebuild for Python 3.14 --- srcpkgs/python3-straight.plugin/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-straight.plugin/template b/srcpkgs/python3-straight.plugin/template index e88d63c8c74047..d359d5b06f35b8 100644 --- a/srcpkgs/python3-straight.plugin/template +++ b/srcpkgs/python3-straight.plugin/template @@ -1,7 +1,7 @@ # Template file for 'python3-straight.plugin' pkgname=python3-straight.plugin version=1.5.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From bdd016eef835d7f83aa60b3d50d8b516f0bfc213 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:03 -0500 Subject: [PATCH 0269/1664] python3-pycares: rebuild for Python 3.14 --- srcpkgs/python3-pycares/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pycares/template b/srcpkgs/python3-pycares/template index ba3aaf41baa34c..e5943ef57e8b01 100644 --- a/srcpkgs/python3-pycares/template +++ b/srcpkgs/python3-pycares/template @@ -1,7 +1,7 @@ # Template file for 'python3-pycares' pkgname=python3-pycares version=3.1.1 -revision=7 +revision=8 build_style=python3-module # using bundled c-ares which is patched for TTL support hostmakedepends="python3-setuptools python3-cffi" From 8d6b64505e801badb45608f1e7e0b4d87ba33f8d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:03 -0500 Subject: [PATCH 0270/1664] python3-olefile: rebuild for Python 3.14 --- srcpkgs/python3-olefile/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-olefile/template b/srcpkgs/python3-olefile/template index d31430a1586a0b..a8c2c8ccba51b5 100644 --- a/srcpkgs/python3-olefile/template +++ b/srcpkgs/python3-olefile/template @@ -1,7 +1,7 @@ # Template file for 'python3-olefile' pkgname=python3-olefile version=0.46 -revision=9 +revision=10 build_style=python3-module hostmakedepends="unzip python3-setuptools" depends="python3" From 6b7afd7e55e7257702eb11914efe131403439903 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:03 -0500 Subject: [PATCH 0271/1664] python3-future: rebuild for Python 3.14 --- srcpkgs/python3-future/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-future/template b/srcpkgs/python3-future/template index 66807c0c6d2816..45fe1908637074 100644 --- a/srcpkgs/python3-future/template +++ b/srcpkgs/python3-future/template @@ -1,7 +1,7 @@ # Template file for 'python3-future' pkgname=python3-future version=0.18.3 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 6ed0b8ebfa0866081e1683e6e55cd07e48d1ccff Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:03 -0500 Subject: [PATCH 0272/1664] python3-aiohttp: rebuild for Python 3.14 --- srcpkgs/python3-aiohttp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-aiohttp/template b/srcpkgs/python3-aiohttp/template index 899d07b85d85b7..e5cae5ce670e08 100644 --- a/srcpkgs/python3-aiohttp/template +++ b/srcpkgs/python3-aiohttp/template @@ -1,7 +1,7 @@ # Template file for 'python3-aiohttp' pkgname=python3-aiohttp version=3.9.5 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" makedepends="python3-devel" From 9c675e94dbf6c4927bf890c8f59ff50d2769ce1b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:03 -0500 Subject: [PATCH 0273/1664] python3-socks: rebuild for Python 3.14 --- srcpkgs/python3-socks/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-socks/template b/srcpkgs/python3-socks/template index 3ff85627752bf9..4c9362a29424ea 100644 --- a/srcpkgs/python3-socks/template +++ b/srcpkgs/python3-socks/template @@ -1,7 +1,7 @@ # Template file for 'python3-socks' pkgname=python3-socks version=2.7.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 9415fa389c954d69903dcc4f9e9d9d860477afcb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:03 -0500 Subject: [PATCH 0274/1664] xapps: rebuild for Python 3.14 --- srcpkgs/xapps/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xapps/template b/srcpkgs/xapps/template index 70bf1b5588e0fc..91c08dfae42405 100644 --- a/srcpkgs/xapps/template +++ b/srcpkgs/xapps/template @@ -1,7 +1,7 @@ # Template file for 'xapps' pkgname=xapps version=2.8.8 -revision=1 +revision=2 build_style=meson build_helper="gir" hostmakedepends="glib-devel pkg-config vala python3 gettext" From 34461238a8fb405a7a2ddbeb65b76d10c3e08eb3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:04 -0500 Subject: [PATCH 0275/1664] boost: rebuild for Python 3.14 --- common/shlibs | 2 +- srcpkgs/boost/template | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/shlibs b/common/shlibs index 6c440f899eaab5..edfa20aace72f4 100644 --- a/common/shlibs +++ b/common/shlibs @@ -622,7 +622,7 @@ libboost_type_erasure.so.1.89.0 libboost_type_erasure-1.89.0_1 libboost_fiber.so.1.89.0 libboost_fiber-1.89.0_1 libboost_mpi.so.1.89.0 libboost_mpi-1.89.0_1 libboost_mpi_python313.so.1.89.0 libboost_mpi-python3-1.89.0_1 -libboost_python313.so.1.89.0 boost-python3-1.89.0_1 +libboost_python314.so.1.89.0 boost-python3-1.89.0_2 libexempi.so.8 exempi-2.5.0_1 libatasmart.so.4 libatasmart-0.17_1 libsgutils2-1.45.so.2 libsgutils-1.45_1 diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template index e4ab36176d91b8..c13921d47bd4bb 100644 --- a/srcpkgs/boost/template +++ b/srcpkgs/boost/template @@ -1,7 +1,7 @@ # Template file for 'boost' pkgname=boost version=1.89.0 -revision=1 +revision=2 hostmakedepends="which bzip2-devel icu-devel python3-devel pkg-config" makedepends="zlib-devel bzip2-devel icu-devel python3-devel liblzma-devel libzstd-devel" checkdepends="openssl-devel libpng-devel libjpeg-turbo-devel" From ccb7b7fb6f3d32847dec71ccce91fe81a83a4a45 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:04 -0500 Subject: [PATCH 0276/1664] python3-pyside6: rebuild for Python 3.14 --- srcpkgs/python3-pyside6/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyside6/template b/srcpkgs/python3-pyside6/template index a024ef2116c19c..1f50a5c17f6b8b 100644 --- a/srcpkgs/python3-pyside6/template +++ b/srcpkgs/python3-pyside6/template @@ -2,7 +2,7 @@ # NOTE: keep in sync with Qt6 pkgname=python3-pyside6 version=6.10.0 -revision=3 +revision=4 build_style=cmake _llvmver=21 configure_args="-DBUILD_TESTS=OFF -DFORCE_LIMITED_API=no -DNO_QT_TOOLS=yes From 30665681b3e85d36c433696c5022692fdf57bbc2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:04 -0500 Subject: [PATCH 0277/1664] python3-PyOpenGL: rebuild for Python 3.14 --- srcpkgs/python3-PyOpenGL/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-PyOpenGL/template b/srcpkgs/python3-PyOpenGL/template index 24f764feb237de..0fafa82adfdc64 100644 --- a/srcpkgs/python3-PyOpenGL/template +++ b/srcpkgs/python3-PyOpenGL/template @@ -1,7 +1,7 @@ # Template file for 'python3-PyOpenGL' pkgname=python3-PyOpenGL version=3.1.9 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From b4825fff16d6967fdf943ac870ca6f968b114b38 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:04 -0500 Subject: [PATCH 0278/1664] python3-PyQt5: rebuild for Python 3.14 --- srcpkgs/python3-PyQt5/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-PyQt5/template b/srcpkgs/python3-PyQt5/template index 3e5fb4fb485fd2..d83d99697b1075 100644 --- a/srcpkgs/python3-PyQt5/template +++ b/srcpkgs/python3-PyQt5/template @@ -1,7 +1,7 @@ # Template file for 'python3-PyQt5' pkgname=python3-PyQt5 version=5.15.11 -revision=1 +revision=2 build_style=sip-build build_helper=qemu configure_args="--confirm-license" From 75c37bd51bad0b7b6afc44120255ac76842e0164 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:04 -0500 Subject: [PATCH 0279/1664] python3-cheetah3: rebuild for Python 3.14 --- srcpkgs/python3-cheetah3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cheetah3/template b/srcpkgs/python3-cheetah3/template index c559a487d832ca..12d63b604b89aa 100644 --- a/srcpkgs/python3-cheetah3/template +++ b/srcpkgs/python3-cheetah3/template @@ -1,7 +1,7 @@ # Template file for 'python3-cheetah3' pkgname=python3-cheetah3 version=3.4.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From 6c056145d14fd69530135bacd660a563473df623 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:04 -0500 Subject: [PATCH 0280/1664] python3-smmap: rebuild for Python 3.14 --- srcpkgs/python3-smmap/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-smmap/template b/srcpkgs/python3-smmap/template index 377470d86c50e5..6a015252e040ab 100644 --- a/srcpkgs/python3-smmap/template +++ b/srcpkgs/python3-smmap/template @@ -1,7 +1,7 @@ # Template file for 'python3-smmap' pkgname=python3-smmap version=5.0.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From f83facd077fec7d9450d3572018857ca150167aa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:05 -0500 Subject: [PATCH 0281/1664] python3-google-api-core: rebuild for Python 3.14 --- srcpkgs/python3-google-api-core/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-google-api-core/template b/srcpkgs/python3-google-api-core/template index ae9f56926b5cdb..e1fbcc27f04384 100644 --- a/srcpkgs/python3-google-api-core/template +++ b/srcpkgs/python3-google-api-core/template @@ -1,7 +1,7 @@ # Template file for 'python3-google-api-core' pkgname=python3-google-api-core version=2.11.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-googleapis-common-protos python3-protobuf python3-google-auth From 7c47a5af46d6edb82e5fed5306ab5339fecfd851 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:05 -0500 Subject: [PATCH 0282/1664] python3-google-auth-httplib2: rebuild for Python 3.14 --- srcpkgs/python3-google-auth-httplib2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-google-auth-httplib2/template b/srcpkgs/python3-google-auth-httplib2/template index 8761667fbab31c..801c3886d3dfc9 100644 --- a/srcpkgs/python3-google-auth-httplib2/template +++ b/srcpkgs/python3-google-auth-httplib2/template @@ -1,7 +1,7 @@ # Template file for 'python3-google-auth-httplib2' pkgname=python3-google-auth-httplib2 version=0.1.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-google-auth python3-httplib2" From 00829844f032b9b68e72f73d9d08b962cee39adf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:05 -0500 Subject: [PATCH 0283/1664] python3-uritemplate: rebuild for Python 3.14 --- srcpkgs/python3-uritemplate/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-uritemplate/template b/srcpkgs/python3-uritemplate/template index 747fb439f15f21..d3f67b11257540 100644 --- a/srcpkgs/python3-uritemplate/template +++ b/srcpkgs/python3-uritemplate/template @@ -1,7 +1,7 @@ # Template file for 'python3-uritemplate' pkgname=python3-uritemplate version=3.0.1 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 49cf92e5cfc6818501c672b9d891c21ec07132f4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:05 -0500 Subject: [PATCH 0284/1664] python3-email-validator: rebuild for Python 3.14 --- srcpkgs/python3-email-validator/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-email-validator/template b/srcpkgs/python3-email-validator/template index bce887234e3556..d2f5573fbc5818 100644 --- a/srcpkgs/python3-email-validator/template +++ b/srcpkgs/python3-email-validator/template @@ -1,7 +1,7 @@ # Template file for 'python3-email-validator' pkgname=python3-email-validator version=2.2.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3" From 4f670499faa0f434356838872ca9d967e292924d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:05 -0500 Subject: [PATCH 0285/1664] python3-orderedmultidict: rebuild for Python 3.14 --- srcpkgs/python3-orderedmultidict/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-orderedmultidict/template b/srcpkgs/python3-orderedmultidict/template index b04df9cbe329cc..9ac9c84b8c1589 100644 --- a/srcpkgs/python3-orderedmultidict/template +++ b/srcpkgs/python3-orderedmultidict/template @@ -1,7 +1,7 @@ # Template file for 'python3-orderedmultidict' pkgname=python3-orderedmultidict version=1.0.1 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 python3-six" From 55d7f982f7eae6131cd3d95144a8cc025fa41640 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:05 -0500 Subject: [PATCH 0286/1664] python3-WebOb: rebuild for Python 3.14 --- srcpkgs/python3-WebOb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-WebOb/template b/srcpkgs/python3-WebOb/template index 0b91f1be58ee9b..1657dba419c771 100644 --- a/srcpkgs/python3-WebOb/template +++ b/srcpkgs/python3-WebOb/template @@ -1,7 +1,7 @@ # Template file for 'python3-WebOb' pkgname=python3-WebOb version=1.8.5 -revision=7 +revision=8 build_style=python3-module pycompile_module="webob" hostmakedepends="python3-setuptools" From f9254677a57edd2850682a6573afccc05f5c0b91 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:06 -0500 Subject: [PATCH 0287/1664] python3-anytree: rebuild for Python 3.14 --- srcpkgs/python3-anytree/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-anytree/template b/srcpkgs/python3-anytree/template index 02c4f4ef354387..92155b60bae180 100644 --- a/srcpkgs/python3-anytree/template +++ b/srcpkgs/python3-anytree/template @@ -1,7 +1,7 @@ # Template file for 'python3-anytree' pkgname=python3-anytree version=2.12.1 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-six" From 1d9580f1223a5261baddea2978047f83632ecbac Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:06 -0500 Subject: [PATCH 0288/1664] python3-cattrs: rebuild for Python 3.14 --- srcpkgs/python3-cattrs/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cattrs/template b/srcpkgs/python3-cattrs/template index 392f5e1281133d..a4427943d017f6 100644 --- a/srcpkgs/python3-cattrs/template +++ b/srcpkgs/python3-cattrs/template @@ -1,7 +1,7 @@ # Template file for 'python3-cattrs' pkgname=python3-cattrs version=25.3.0 -revision=1 +revision=2 build_style=python3-pep517 # Initial ignores require unpackaged dependencies; # deselections and subsequent ignores do invalid NaN comparisons From cd928f2c51d8f6a33fc569ff3e1610915023dc17 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:06 -0500 Subject: [PATCH 0289/1664] python3-josepy: rebuild for Python 3.14 --- srcpkgs/python3-josepy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-josepy/template b/srcpkgs/python3-josepy/template index 50f7fee89ff273..ed351cf5f6c172 100644 --- a/srcpkgs/python3-josepy/template +++ b/srcpkgs/python3-josepy/template @@ -1,7 +1,7 @@ # Template file for 'python3-josepy' pkgname=python3-josepy version=2.2.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools pkg-config python3-wheel python3-poetry-core" makedepends="python3-devel" From 8a6dadfd91b704f23f33858b36cb4ed3834edb2a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:06 -0500 Subject: [PATCH 0290/1664] python3-pyrfc3339: rebuild for Python 3.14 --- srcpkgs/python3-pyrfc3339/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyrfc3339/template b/srcpkgs/python3-pyrfc3339/template index 03854ff53d1f0e..fa23303c199eba 100644 --- a/srcpkgs/python3-pyrfc3339/template +++ b/srcpkgs/python3-pyrfc3339/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyrfc3339' pkgname=python3-pyrfc3339 version=1.1 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pytz" From a32a96a203f60f385693c21c172c307a57c06299 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:06 -0500 Subject: [PATCH 0291/1664] python3-requests-toolbelt: rebuild for Python 3.14 --- srcpkgs/python3-requests-toolbelt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-requests-toolbelt/template b/srcpkgs/python3-requests-toolbelt/template index 8d26375a482cb1..9d59610ee330b5 100644 --- a/srcpkgs/python3-requests-toolbelt/template +++ b/srcpkgs/python3-requests-toolbelt/template @@ -1,7 +1,7 @@ # Template file for 'python3-requests-toolbelt' pkgname=python3-requests-toolbelt version=1.0.0 -revision=3 +revision=4 build_style=python3-pep517 make_check_args="--ignore tests/test_x509_adapter.py" hostmakedepends="python3-wheel python3-setuptools" From 43ea89e4fdd2f24cb07f16989407d38021e44ccc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:06 -0500 Subject: [PATCH 0292/1664] python3-greenlet: update to 3.2.4. --- srcpkgs/python3-greenlet/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-greenlet/template b/srcpkgs/python3-greenlet/template index ba0efc4a787e6e..033e3594d6295b 100644 --- a/srcpkgs/python3-greenlet/template +++ b/srcpkgs/python3-greenlet/template @@ -1,6 +1,6 @@ # Template file for 'python3-greenlet' pkgname=python3-greenlet -version=3.1.1 +version=3.2.4 revision=1 build_style=python3-module hostmakedepends="python3-setuptools" @@ -13,7 +13,7 @@ license="MIT" homepage="https://github.com/python-greenlet/greenlet" changelog="https://raw.githubusercontent.com/python-greenlet/greenlet/master/CHANGES.rst" distfiles="${PYPI_SITE}/g/greenlet/greenlet-${version}.tar.gz" -checksum=4ce3ac6cdb6adf7946475d7ef31777c26d94bccc377e070a7986bd2d5c515467 +checksum=0dca0d95ff849f9a364385f36ab49f50065d76964944638be9691e1832e9f86d do_check() { python3 setup.py build_ext --inplace From 2202be1d9f87fc12de2a93291d679a43e07f9f01 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:07 -0500 Subject: [PATCH 0293/1664] python3-sgmllib: rebuild for Python 3.14 --- srcpkgs/python3-sgmllib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sgmllib/template b/srcpkgs/python3-sgmllib/template index a6ec8042b18ab7..a8df0d00c71779 100644 --- a/srcpkgs/python3-sgmllib/template +++ b/srcpkgs/python3-sgmllib/template @@ -1,7 +1,7 @@ # Template file for 'python3-sgmllib' pkgname=python3-sgmllib version=1.0.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From f4922f2578dd8560a01073f4287925e5597f6a59 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:07 -0500 Subject: [PATCH 0294/1664] python3-isodate: rebuild for Python 3.14 --- srcpkgs/python3-isodate/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-isodate/template b/srcpkgs/python3-isodate/template index 0f88660f733c73..6079a1400a330f 100644 --- a/srcpkgs/python3-isodate/template +++ b/srcpkgs/python3-isodate/template @@ -1,7 +1,7 @@ # Template file for 'python3-isodate' pkgname=python3-isodate version=0.7.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm" depends="python3" From 649663b7763a251bacba54a1dffbafc783b7eb97 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:07 -0500 Subject: [PATCH 0295/1664] python3-botocore: rebuild for Python 3.14 --- srcpkgs/python3-botocore/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-botocore/template b/srcpkgs/python3-botocore/template index e8a51b3facf5f3..27266f6c1c73bc 100644 --- a/srcpkgs/python3-botocore/template +++ b/srcpkgs/python3-botocore/template @@ -1,7 +1,7 @@ # Template file for 'python3-botocore' pkgname=python3-botocore version=1.32.6 -revision=2 +revision=3 build_style=python3-module # integration tests want aws credentials make_check_target="tests/functional tests/unit" From 418752813cbdb7cec1a96665dc25ab2412e776d0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:07 -0500 Subject: [PATCH 0296/1664] python3-urwid: rebuild for Python 3.14 --- srcpkgs/python3-urwid/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-urwid/template b/srcpkgs/python3-urwid/template index 36f96976eac5ba..337f68a7781e01 100644 --- a/srcpkgs/python3-urwid/template +++ b/srcpkgs/python3-urwid/template @@ -1,7 +1,7 @@ # Template file for 'python3-urwid' pkgname=python3-urwid version=2.6.16 -revision=1 +revision=2 build_style=python3-pep517 # "vterm" tests do pipe writes that hang make_check_args="--ignore=tests/test_vterm.py" From 477d6ce498496c4b599c230b8ea0350558c4f0de Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:07 -0500 Subject: [PATCH 0297/1664] python3-distro: rebuild for Python 3.14 --- srcpkgs/python3-distro/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-distro/template b/srcpkgs/python3-distro/template index 12734e936379c5..9cc7d13decc8ff 100644 --- a/srcpkgs/python3-distro/template +++ b/srcpkgs/python3-distro/template @@ -1,7 +1,7 @@ # Template file for 'python3-distro' pkgname=python3-distro version=1.9.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3" From edf594dda7eaabc2e057f52e554c486c99677b8c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:07 -0500 Subject: [PATCH 0298/1664] python3-SecretStorage: rebuild for Python 3.14 --- srcpkgs/python3-SecretStorage/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-SecretStorage/template b/srcpkgs/python3-SecretStorage/template index 0a178cc3f7ae42..c8e237d233319b 100644 --- a/srcpkgs/python3-SecretStorage/template +++ b/srcpkgs/python3-SecretStorage/template @@ -1,7 +1,7 @@ # Template file for 'python3-SecretStorage' pkgname=python3-SecretStorage version=3.3.3 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-jeepney python3-cryptography" From e481eb284e86b2823c8abfaedaf71f86d044e9d5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:07 -0500 Subject: [PATCH 0299/1664] python3-pycountry: rebuild for Python 3.14 --- srcpkgs/python3-pycountry/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pycountry/template b/srcpkgs/python3-pycountry/template index 42e900b41c6db3..5d92826de16c09 100644 --- a/srcpkgs/python3-pycountry/template +++ b/srcpkgs/python3-pycountry/template @@ -1,7 +1,7 @@ # Template file for 'python3-pycountry' pkgname=python3-pycountry version=23.12.11 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3 python3-importlib_metadata" From ecf7c8be225a1e9b69cfbcb2889fc8f06b79defd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:08 -0500 Subject: [PATCH 0300/1664] python3-redis: update to 7.1.0. --- srcpkgs/python3-redis/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-redis/template b/srcpkgs/python3-redis/template index ff95f2a4ced5df..bf18353c755310 100644 --- a/srcpkgs/python3-redis/template +++ b/srcpkgs/python3-redis/template @@ -1,6 +1,6 @@ # Template file for 'python3-redis' pkgname=python3-redis -version=6.4.0 +version=7.1.0 revision=1 build_style=python3-pep517 hostmakedepends="hatchling" @@ -11,7 +11,7 @@ license="MIT" homepage="https://github.com/redis/redis-py" changelog="https://raw.githubusercontent.com/redis/redis-py/master/CHANGES" distfiles="${homepage}/archive/v${version}.tar.gz" -checksum=7ce2a05bc9888af3bb7c4c11f3dcccefe8b66136d3248c0ef86eb6d412660419 +checksum=fe6da6eaf76c0c5ed0f89eac5f0d5e2b38de3c6e547209329779b74b6cf31b96 replaces="python3-aioredis<=2.0.1_1" make_check=no # tests require a running redis server From 1607d8be30b85725f7835d66f8c50041986951d6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:08 -0500 Subject: [PATCH 0301/1664] python3-mutagen: rebuild for Python 3.14 --- srcpkgs/python3-mutagen/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mutagen/template b/srcpkgs/python3-mutagen/template index e5e10c3250ec73..008abc8854c83f 100644 --- a/srcpkgs/python3-mutagen/template +++ b/srcpkgs/python3-mutagen/template @@ -1,7 +1,7 @@ # Template file for 'python3-mutagen' pkgname=python3-mutagen version=1.46.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-devel python3-setuptools" makedepends="$hostmakedepends" From 458b711885d957d96797c65da6706d226ec58f3c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:08 -0500 Subject: [PATCH 0302/1664] python3-pycryptodomex: rebuild for Python 3.14 --- srcpkgs/python3-pycryptodomex/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pycryptodomex/template b/srcpkgs/python3-pycryptodomex/template index 883d4620e7e5e1..b8f64270c79048 100644 --- a/srcpkgs/python3-pycryptodomex/template +++ b/srcpkgs/python3-pycryptodomex/template @@ -1,7 +1,7 @@ # Template file for 'python3-pycryptodomex' pkgname=python3-pycryptodomex version=3.16.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From 742180a78dbabd9971a4b7d6fb75134982007716 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:08 -0500 Subject: [PATCH 0303/1664] python3-websockets: rebuild for Python 3.14 --- srcpkgs/python3-websockets/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-websockets/template b/srcpkgs/python3-websockets/template index b5679df2c499eb..2390c444ecb390 100644 --- a/srcpkgs/python3-websockets/template +++ b/srcpkgs/python3-websockets/template @@ -1,7 +1,7 @@ # Template file for 'python3-websockets' pkgname=python3-websockets version=15.0.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From e1fa9f995238a970e59c27921185c1c5d260b238 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:08 -0500 Subject: [PATCH 0304/1664] python3-yt-dlp-ejs: rebuild for Python 3.14 --- srcpkgs/python3-yt-dlp-ejs/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-yt-dlp-ejs/template b/srcpkgs/python3-yt-dlp-ejs/template index d31c8dcf7c47f5..7476e3a05f990d 100644 --- a/srcpkgs/python3-yt-dlp-ejs/template +++ b/srcpkgs/python3-yt-dlp-ejs/template @@ -1,7 +1,7 @@ # Template file for 'python3-yt-dlp-ejs' pkgname=python3-yt-dlp-ejs version=0.3.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs nodejs" short_desc="External JavaScript for yt-dlp supporting many runtimes" From 46eb591e10b2d0935dcb63d207eb4c6627586826 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:08 -0500 Subject: [PATCH 0305/1664] python3-Pyphen: rebuild for Python 3.14 --- srcpkgs/python3-Pyphen/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Pyphen/template b/srcpkgs/python3-Pyphen/template index 4c7f1521ea10ba..0c0d57909a5a69 100644 --- a/srcpkgs/python3-Pyphen/template +++ b/srcpkgs/python3-Pyphen/template @@ -1,7 +1,7 @@ # Template file for 'python3-Pyphen' pkgname=python3-Pyphen version=0.17.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-flit_core" checkdepends="python3-pytest-isort python3-pytest-cov python3-pytest-flake8 From dcd2b205d87dc9b1f5010ff72f0a8a7114d0b0cd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:09 -0500 Subject: [PATCH 0306/1664] python3-cssselect2: rebuild for Python 3.14 --- srcpkgs/python3-cssselect2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cssselect2/template b/srcpkgs/python3-cssselect2/template index ba9911620fa268..e64f95294a30f1 100644 --- a/srcpkgs/python3-cssselect2/template +++ b/srcpkgs/python3-cssselect2/template @@ -1,7 +1,7 @@ # Template file for 'python3-cssselect2' pkgname=python3-cssselect2 version=0.8.0 -revision=1 +revision=2 build_style=python3-pep517 _runtime_deps="python3-tinycss2 python3-webencodings" hostmakedepends="python3-poetry-core python3-flit_core ${_runtime_deps}" From 989606b42f9b34d2ba8851256c573cf888e1e68e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:09 -0500 Subject: [PATCH 0307/1664] python3-html5lib: rebuild for Python 3.14 --- .../patches/fix-version-detection.patch | 24 +++++++++++++++++++ srcpkgs/python3-html5lib/template | 6 ++++- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/python3-html5lib/patches/fix-version-detection.patch diff --git a/srcpkgs/python3-html5lib/patches/fix-version-detection.patch b/srcpkgs/python3-html5lib/patches/fix-version-detection.patch new file mode 100644 index 00000000000000..3bd88f6a1f5b72 --- /dev/null +++ b/srcpkgs/python3-html5lib/patches/fix-version-detection.patch @@ -0,0 +1,24 @@ +--- ./setup.py.orig 2025-11-17 12:52:02.877296764 -0500 ++++ ./setup.py 2025-11-17 12:52:38.313389062 -0500 +@@ -81,20 +81,8 @@ + with codecs.open(join(here, 'CHANGES.rst'), 'r', 'utf8') as changes_file: + long_description = readme_file.read() + '\n' + changes_file.read() + +-version = None +-with open(join(here, "html5lib", "__init__.py"), "rb") as init_file: +- t = ast.parse(init_file.read(), filename="__init__.py", mode="exec") +- assert isinstance(t, ast.Module) +- assignments = filter(lambda x: isinstance(x, ast.Assign), t.body) +- for a in assignments: +- if (len(a.targets) == 1 and +- isinstance(a.targets[0], ast.Name) and +- a.targets[0].id == "__version__" and +- isinstance(a.value, ast.Str)): +- version = a.value.s +- + setup(name='html5lib', +- version=version, ++ version='@@VERSION@@', + url='https://github.com/html5lib/html5lib-python', + license="MIT License", + description='HTML parser based on the WHATWG HTML specification', diff --git a/srcpkgs/python3-html5lib/template b/srcpkgs/python3-html5lib/template index 98b955adcce415..1d0aa57a8d9cc9 100644 --- a/srcpkgs/python3-html5lib/template +++ b/srcpkgs/python3-html5lib/template @@ -1,7 +1,7 @@ # Template file for 'python3-html5lib' pkgname=python3-html5lib version=1.1 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-six python3-webencodings" @@ -13,6 +13,10 @@ distfiles="${PYPI_SITE}/h/html5lib/html5lib-${version}.tar.gz" checksum=b2e5b40261e20f354d198eae92afc10d750afb487ed5e50f9c4eaf07c184146f make_check=no # tests fail, should be fixed upstream in a new release +post_patch() { + vsed -e "s/@@VERSION@@/${version}/" -i setup.py +} + post_install() { vlicense LICENSE } From 502a379ef881e405b3fcf72b5775f6ec291d4314 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:09 -0500 Subject: [PATCH 0308/1664] python3-pydyf: rebuild for Python 3.14 --- srcpkgs/python3-pydyf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pydyf/template b/srcpkgs/python3-pydyf/template index cfb67d00ba33f3..8830fffd570161 100644 --- a/srcpkgs/python3-pydyf/template +++ b/srcpkgs/python3-pydyf/template @@ -1,7 +1,7 @@ # Template file for 'python3-pydyf' pkgname=python3-pydyf version=0.11.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-flit_core" checkdepends="python3-pytest-cov python3-pytest-isort python3-pytest-flake8 From 11e8f8385068bfb61bf943af000f1c31fbf97c9d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:09 -0500 Subject: [PATCH 0309/1664] python3-tinyhtml5: rebuild for Python 3.14 --- srcpkgs/python3-tinyhtml5/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tinyhtml5/template b/srcpkgs/python3-tinyhtml5/template index b7cb21c18c47eb..44e5527ebfc7c8 100644 --- a/srcpkgs/python3-tinyhtml5/template +++ b/srcpkgs/python3-tinyhtml5/template @@ -1,7 +1,7 @@ # Template file for 'python3-tinyhtml5' pkgname=python3-tinyhtml5 version=2.0.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-flit_core" depends="python3-webencodings" From b3a8ac40125fe45da330c1507093d5b95d0f30f1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:09 -0500 Subject: [PATCH 0310/1664] python3-ruamel.yaml.clib: rebuild for Python 3.14 --- srcpkgs/python3-ruamel.yaml.clib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ruamel.yaml.clib/template b/srcpkgs/python3-ruamel.yaml.clib/template index 0ac3bae54c6b5a..8a720f7400a89b 100644 --- a/srcpkgs/python3-ruamel.yaml.clib/template +++ b/srcpkgs/python3-ruamel.yaml.clib/template @@ -1,7 +1,7 @@ # Template file for 'python3-ruamel.yaml.clib' pkgname=python3-ruamel.yaml.clib version=0.2.14 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From f4be9f19617c1185687fd7edcba374b0745d6ed3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:09 -0500 Subject: [PATCH 0311/1664] python3-XlsxWriter: rebuild for Python 3.14 --- srcpkgs/python3-XlsxWriter/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-XlsxWriter/template b/srcpkgs/python3-XlsxWriter/template index 1474b46f0b9747..5b9998e9cf2f65 100644 --- a/srcpkgs/python3-XlsxWriter/template +++ b/srcpkgs/python3-XlsxWriter/template @@ -1,7 +1,7 @@ # Template file for 'python3-XlsxWriter' pkgname=python3-XlsxWriter version=1.3.7 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 24c1ea133b46d7e496859c8fc1b40f19abe5c70a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:10 -0500 Subject: [PATCH 0312/1664] python3-click-plugins: rebuild for Python 3.14 --- srcpkgs/python3-click-plugins/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-click-plugins/template b/srcpkgs/python3-click-plugins/template index 2787cc95c6c202..1e7234e33f375d 100644 --- a/srcpkgs/python3-click-plugins/template +++ b/srcpkgs/python3-click-plugins/template @@ -1,7 +1,7 @@ # Template file for 'python3-click-plugins' pkgname=python3-click-plugins version=1.1.1 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-click" From 4aeb9750a9f170816b4f346fec9db227d9e20deb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:10 -0500 Subject: [PATCH 0313/1664] python3-tzlocal: rebuild for Python 3.14 --- srcpkgs/python3-tzlocal/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tzlocal/template b/srcpkgs/python3-tzlocal/template index 63e7005f354e4a..92f0d03c03b1e8 100644 --- a/srcpkgs/python3-tzlocal/template +++ b/srcpkgs/python3-tzlocal/template @@ -1,7 +1,7 @@ # Template file for 'python3-tzlocal' pkgname=python3-tzlocal version=5.0.1 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3" From 75806e50c055a043c30ae82b0f3390b9477d971d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:10 -0500 Subject: [PATCH 0314/1664] python3-pbr: rebuild for Python 3.14 --- srcpkgs/python3-pbr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pbr/template b/srcpkgs/python3-pbr/template index f2e559a50ae3f0..53cb1f10419fc8 100644 --- a/srcpkgs/python3-pbr/template +++ b/srcpkgs/python3-pbr/template @@ -1,7 +1,7 @@ # Template file for 'python3-pbr' pkgname=python3-pbr version=5.6.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 34589805d4a8df6a285829803b3b9f4a4aaff417 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:10 -0500 Subject: [PATCH 0315/1664] python3-distlib: rebuild for Python 3.14 --- srcpkgs/python3-distlib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-distlib/template b/srcpkgs/python3-distlib/template index 5f5296f4f3f0bc..717368cc11c5b7 100644 --- a/srcpkgs/python3-distlib/template +++ b/srcpkgs/python3-distlib/template @@ -1,7 +1,7 @@ # Template file for 'python3-distlib' pkgname=python3-distlib version=0.3.9 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 3b3466237ba47ba2f15238d4b472af9e527d4ddc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:10 -0500 Subject: [PATCH 0316/1664] python3-filelock: rebuild for Python 3.14 --- srcpkgs/python3-filelock/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-filelock/template b/srcpkgs/python3-filelock/template index d693699b8de367..42d2f6207e0449 100644 --- a/srcpkgs/python3-filelock/template +++ b/srcpkgs/python3-filelock/template @@ -1,7 +1,7 @@ # Template file for 'python3-filelock' pkgname=python3-filelock version=3.18.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3" From 39449dfc561a7a29fcc88e533728880339c331b1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:10 -0500 Subject: [PATCH 0317/1664] apparmor: rebuild for Python 3.14 --- srcpkgs/apparmor/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template index ec0912c4af507a..bef91ada3fd568 100644 --- a/srcpkgs/apparmor/template +++ b/srcpkgs/apparmor/template @@ -2,7 +2,7 @@ pkgname=apparmor reverts="4.0.2_1" version=3.1.7 -revision=5 +revision=6 build_wrksrc=libraries/libapparmor build_style=gnu-configure conf_files="/etc/apparmor.d/local/* /etc/apparmor/*" From e690aba6758f322bde47fbcd9c9dca2167784455 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:11 -0500 Subject: [PATCH 0318/1664] python3-rapidfuzz: rebuild for Python 3.14 --- srcpkgs/python3-rapidfuzz/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-rapidfuzz/template b/srcpkgs/python3-rapidfuzz/template index 29c73d04209eef..9bea174311b58c 100644 --- a/srcpkgs/python3-rapidfuzz/template +++ b/srcpkgs/python3-rapidfuzz/template @@ -1,7 +1,7 @@ # Template file for 'python3-rapidfuzz' pkgname=python3-rapidfuzz version=3.13.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-scikit-build-core ninja" makedepends="python3-devel rapidfuzz-cpp" From 2df9ba5ff269490633fbfd30e465123da1a3d328 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:11 -0500 Subject: [PATCH 0319/1664] python3-telegram_text: rebuild for Python 3.14 --- srcpkgs/python3-telegram_text/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-telegram_text/template b/srcpkgs/python3-telegram_text/template index c2dc7b2bc590b8..c71ad685c80758 100644 --- a/srcpkgs/python3-telegram_text/template +++ b/srcpkgs/python3-telegram_text/template @@ -1,7 +1,7 @@ # Template file for 'python3-telegram_text' pkgname=python3-telegram_text version=0.2.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core" short_desc="Python markup module for Telegram messenger" From 8ea846ffecab1a197ddfcdb05d2c2a10b4f9593c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:11 -0500 Subject: [PATCH 0320/1664] python3-pyudev: rebuild for Python 3.14 --- srcpkgs/python3-pyudev/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyudev/template b/srcpkgs/python3-pyudev/template index e4975397859315..f2954828e61347 100644 --- a/srcpkgs/python3-pyudev/template +++ b/srcpkgs/python3-pyudev/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyudev' pkgname=python3-pyudev version=0.24.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 python3-six eudev-libudev" From 214d1892184603a9c6860cca73bc6b6659325537 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:11 -0500 Subject: [PATCH 0321/1664] samba: rebuild for Python 3.14 --- srcpkgs/samba/template | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/srcpkgs/samba/template b/srcpkgs/samba/template index 870e9b4575bafc..978953724fcbef 100644 --- a/srcpkgs/samba/template +++ b/srcpkgs/samba/template @@ -1,7 +1,7 @@ # Template file for 'samba' pkgname=samba version=4.20.1 -revision=3 +revision=4 build_style=waf3 build_helper="qemu" configure_script="buildtools/bin/waf" @@ -52,6 +52,11 @@ else fi fi +# Multi-process configure hangs unpredictably on i686 +if [ "$XBPS_TARGET_MACHINE" = "i686" ]; then + configure_args+=" -j1" +fi + export PYTHON_CONFIG="${XBPS_CROSS_BASE}/usr/bin/python3-config" export PYTHONHASHSEED=1 From 2a4a1ec1fe75e94742164e70d6b03d20015dfedc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:11 -0500 Subject: [PATCH 0322/1664] postgresql17: rebuild for Python 3.14 --- srcpkgs/postgresql17/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/postgresql17/template b/srcpkgs/postgresql17/template index 045998377ce02e..6ec181c15f6f76 100644 --- a/srcpkgs/postgresql17/template +++ b/srcpkgs/postgresql17/template @@ -1,7 +1,7 @@ # Template file for 'postgresql17' pkgname=postgresql17 version=17.6 -revision=1 +revision=2 build_style=gnu-configure make_build_target=world _major="${version%%.*}" From 4c64e2e2c84d8bc50f86ce23ada6a8e58f5c5f5f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:11 -0500 Subject: [PATCH 0323/1664] python3-annotated-types: rebuild for Python 3.14 --- srcpkgs/python3-annotated-types/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-annotated-types/template b/srcpkgs/python3-annotated-types/template index b5c71d8beff3bc..809586d810445a 100644 --- a/srcpkgs/python3-annotated-types/template +++ b/srcpkgs/python3-annotated-types/template @@ -1,7 +1,7 @@ # Template file for 'python3-annotated-types' pkgname=python3-annotated-types version=0.6.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3" From d9c8d4779b083f4ab1a19d1e2105cf1f2f47ad56 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:11 -0500 Subject: [PATCH 0324/1664] python3-pydantic-core: update to 2.41.5. --- srcpkgs/python3-pydantic-core/template | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/srcpkgs/python3-pydantic-core/template b/srcpkgs/python3-pydantic-core/template index 38ba2f5f5dc453..42e24f024f8517 100644 --- a/srcpkgs/python3-pydantic-core/template +++ b/srcpkgs/python3-pydantic-core/template @@ -1,22 +1,21 @@ # Template file for 'python3-pydantic-core' pkgname=python3-pydantic-core -version=2.21.0 -revision=2 +version=2.41.5 +revision=1 build_style=python3-pep517 build_helper="rust" hostmakedepends="maturin cargo python3-typing_extensions" makedepends="rust-std python3-devel" depends="python3-typing_extensions" -checkdepends="${depends} python3-pytest python3-pytest-benchmark - python3-pytest-timeout python3-pytest-mock python3-hypothesis - python3-dirty-equals" +checkdepends="${depends} python3-pytest-benchmark python3-pytest-timeout + python3-pytest-mock python3-hypothesis python3-dirty-equals" short_desc="Core functionality for pydantic-core validation and serialization" maintainer="Joel Beckmeyer " license="MIT" homepage="https://github.com/pydantic/pydantic-core" changelog="https://github.com/pydantic/pydantic-core/releases" distfiles="${PYPI_SITE}/p/pydantic_core/pydantic_core-${version}.tar.gz" -checksum=79c747f9916e5b6cb588dfd994d9ac15a93e43eb07467d9e6f24d892c176bbf5 +checksum=08daa51ea16ad373ffd5e7606252cc32f07bc72b28284b6bc9c6df804816476e do_build() { maturin build -i /usr/bin/python3 -o . \ From 5cae9922d9dde165da22b19e6ca34e7351bb43f3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:12 -0500 Subject: [PATCH 0325/1664] python3-xmlschema: rebuild for Python 3.14 --- srcpkgs/python3-xmlschema/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-xmlschema/template b/srcpkgs/python3-xmlschema/template index 0b6ac358c91b31..62663e0cdea75a 100644 --- a/srcpkgs/python3-xmlschema/template +++ b/srcpkgs/python3-xmlschema/template @@ -1,7 +1,7 @@ # Template file for 'python3-xmlschema' pkgname=python3-xmlschema version=2.5.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools python3-elementpath" depends="python3-elementpath" From e221d954ddd5501ca53dbfa497d16f34caf219d6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:12 -0500 Subject: [PATCH 0326/1664] python3-canonicaljson: rebuild for Python 3.14 --- srcpkgs/python3-canonicaljson/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-canonicaljson/template b/srcpkgs/python3-canonicaljson/template index 6e37e74a91e650..3a259fb3c6bae6 100644 --- a/srcpkgs/python3-canonicaljson/template +++ b/srcpkgs/python3-canonicaljson/template @@ -1,7 +1,7 @@ # Template file for 'python3-canonicaljson' pkgname=python3-canonicaljson version=2.0.0 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 42167da3980789f8ffe8a9f52ca2a9ec73b8055a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:12 -0500 Subject: [PATCH 0327/1664] python3-unpaddedbase64: rebuild for Python 3.14 --- srcpkgs/python3-unpaddedbase64/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-unpaddedbase64/template b/srcpkgs/python3-unpaddedbase64/template index 3a680701d20c4d..cd1e26167c58c8 100644 --- a/srcpkgs/python3-unpaddedbase64/template +++ b/srcpkgs/python3-unpaddedbase64/template @@ -1,7 +1,7 @@ # Template file for 'python3-unpaddedbase64' pkgname=python3-unpaddedbase64 version=2.1.0 -revision=4 +revision=5 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3" From f1df76ef3ecf782e51763a4d32c6472b1c3af498 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:12 -0500 Subject: [PATCH 0328/1664] python3-Twisted: rebuild for Python 3.14 --- srcpkgs/python3-Twisted/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Twisted/template b/srcpkgs/python3-Twisted/template index 88399fd538a714..51d2ac4c4c4dcb 100644 --- a/srcpkgs/python3-Twisted/template +++ b/srcpkgs/python3-Twisted/template @@ -1,7 +1,7 @@ # Template file for 'python3-Twisted' pkgname=python3-Twisted version=24.11.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling hatch-fancy-pypi-readme python3-incremental python3-setuptools" From e0e9ebffcf0dce1c283e77c405f137a0e659f722 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:12 -0500 Subject: [PATCH 0329/1664] python3-babelfish: rebuild for Python 3.14 --- srcpkgs/python3-babelfish/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-babelfish/template b/srcpkgs/python3-babelfish/template index 837efb858fbb36..d93b9788597e64 100644 --- a/srcpkgs/python3-babelfish/template +++ b/srcpkgs/python3-babelfish/template @@ -1,7 +1,7 @@ # Template file for 'python3-babelfish' pkgname=python3-babelfish version=0.6.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 05681fbd6cc782c6296c5ed899260ca224f01c1b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:12 -0500 Subject: [PATCH 0330/1664] python3-rebulk: rebuild for Python 3.14 --- srcpkgs/python3-rebulk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-rebulk/template b/srcpkgs/python3-rebulk/template index 9aeb3fbd4196fa..b41309dd14fee3 100644 --- a/srcpkgs/python3-rebulk/template +++ b/srcpkgs/python3-rebulk/template @@ -1,7 +1,7 @@ # Template file for 'python3-rebulk' pkgname=python3-rebulk version=2.0.1 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 python3-six" From b8908989ce0094fa2c2eb2c85755b75b563177ff Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:13 -0500 Subject: [PATCH 0331/1664] python3-chardet: rebuild for Python 3.14 --- srcpkgs/python3-chardet/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-chardet/template b/srcpkgs/python3-chardet/template index 23425818a68526..36a7bfb45cc5e7 100644 --- a/srcpkgs/python3-chardet/template +++ b/srcpkgs/python3-chardet/template @@ -1,7 +1,7 @@ # Template file for 'python3-chardet' pkgname=python3-chardet version=5.2.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 328077f7a584d462486f6ff7516bd463add6cf5c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:13 -0500 Subject: [PATCH 0332/1664] python3-wsproto: rebuild for Python 3.14 --- srcpkgs/python3-wsproto/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-wsproto/template b/srcpkgs/python3-wsproto/template index 45b6fb59cfd95c..c19a9485185f4c 100644 --- a/srcpkgs/python3-wsproto/template +++ b/srcpkgs/python3-wsproto/template @@ -1,7 +1,7 @@ # Template file for 'python3-wsproto' pkgname=python3-wsproto version=1.2.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-h11" From acf81110b35e2f57c85e7419aca9cb27fbc1327b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:13 -0500 Subject: [PATCH 0333/1664] python3-Cheroot: rebuild for Python 3.14 --- srcpkgs/python3-Cheroot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Cheroot/template b/srcpkgs/python3-Cheroot/template index 83ea54aa498b83..fcc532fda752c4 100644 --- a/srcpkgs/python3-Cheroot/template +++ b/srcpkgs/python3-Cheroot/template @@ -1,7 +1,7 @@ # Template file for 'python3-Cheroot' pkgname=python3-Cheroot version=8.4.5 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3-setuptools python3-six From 4fbe351f38932f58a2e4953076e67e1661049cfa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:13 -0500 Subject: [PATCH 0334/1664] python3-jaraco.collections: rebuild for Python 3.14 --- srcpkgs/python3-jaraco.collections/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jaraco.collections/template b/srcpkgs/python3-jaraco.collections/template index fc0850720afc92..f71fa275d58893 100644 --- a/srcpkgs/python3-jaraco.collections/template +++ b/srcpkgs/python3-jaraco.collections/template @@ -1,7 +1,7 @@ # Template file for 'python3-jaraco.collections' pkgname=python3-jaraco.collections version=5.1.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" depends="python3-jaraco.classes python3-jaraco.text" From 5e7249ffbc6343785ba9f9c660da0ca881caff84 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:13 -0500 Subject: [PATCH 0335/1664] python3-portend: rebuild for Python 3.14 --- srcpkgs/python3-portend/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-portend/template b/srcpkgs/python3-portend/template index 1d44b724d7fafa..6f538e457ae9ed 100644 --- a/srcpkgs/python3-portend/template +++ b/srcpkgs/python3-portend/template @@ -1,7 +1,7 @@ # Template file for 'python3-portend' pkgname=python3-portend version=3.2.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" depends="python3-tempora" From 2047fd0f1b9f9f1948dfaaf63ad351b976150ebf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:13 -0500 Subject: [PATCH 0336/1664] python3-zc.lockfile: rebuild for Python 3.14 --- srcpkgs/python3-zc.lockfile/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zc.lockfile/template b/srcpkgs/python3-zc.lockfile/template index 6f1da85238e34f..3874ffae64f807 100644 --- a/srcpkgs/python3-zc.lockfile/template +++ b/srcpkgs/python3-zc.lockfile/template @@ -1,7 +1,7 @@ # Template file for 'python3-zc.lockfile' pkgname=python3-zc.lockfile version=2.0 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools" From 329ac0cf76f9db11371d1a21fdce523df680d991 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:14 -0500 Subject: [PATCH 0337/1664] python3-conway-polynomials: rebuild for Python 3.14 --- srcpkgs/python3-conway-polynomials/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-conway-polynomials/template b/srcpkgs/python3-conway-polynomials/template index af679f82026517..f13c06bcec357e 100644 --- a/srcpkgs/python3-conway-polynomials/template +++ b/srcpkgs/python3-conway-polynomials/template @@ -1,7 +1,7 @@ # Template file for 'python3-conway-polynomials' pkgname=python3-conway-polynomials version=0.10 -revision=2 +revision=3 build_style=python3-pep517 make_check_args="--doctest-modules --doctest-glob=README.rst" hostmakedepends="python3-setuptools python3-wheel" From 2c77a732670fbceda35ecbabf14ad7cd218407a8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:14 -0500 Subject: [PATCH 0338/1664] python3-cypari2: rebuild for Python 3.14 --- srcpkgs/python3-cypari2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cypari2/template b/srcpkgs/python3-cypari2/template index dcb8d631c0cc48..a39cec2b155d3a 100644 --- a/srcpkgs/python3-cypari2/template +++ b/srcpkgs/python3-cypari2/template @@ -1,7 +1,7 @@ # Template file for 'python3-cypari2' pkgname=python3-cypari2 version=2.2.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel python3-Cython python3-cysignals pari perl" From 1d654270ae8e9a50ba0107f6fe7a355a127227b6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:14 -0500 Subject: [PATCH 0339/1664] python3-fpylll: rebuild for Python 3.14 --- srcpkgs/python3-fpylll/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-fpylll/template b/srcpkgs/python3-fpylll/template index 0d5d8bb0e42b18..7e07598a620807 100644 --- a/srcpkgs/python3-fpylll/template +++ b/srcpkgs/python3-fpylll/template @@ -1,7 +1,7 @@ # Template file for 'python3-fpylll' pkgname=python3-fpylll version=0.6.4 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel python3-Cython python3-cysignals python3-numpy" From ef6c11ef4eb1276b1e9d309b81150c3155b402f9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:14 -0500 Subject: [PATCH 0340/1664] python3-jupyter_ipywidgets: update to 8.1.8. --- srcpkgs/python3-jupyter_ipywidgets/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-jupyter_ipywidgets/template b/srcpkgs/python3-jupyter_ipywidgets/template index ecaf9dead1ffa1..86d367767f79c4 100644 --- a/srcpkgs/python3-jupyter_ipywidgets/template +++ b/srcpkgs/python3-jupyter_ipywidgets/template @@ -1,6 +1,6 @@ # Template file for 'python3-jupyter_ipywidgets' pkgname=python3-jupyter_ipywidgets -version=8.1.7 +version=8.1.8 revision=1 build_style=python3-pep517 hostmakedepends="python3-wheel" @@ -14,7 +14,7 @@ license="BSD-3-Clause" homepage="https://github.com/jupyter-widgets/ipywidgets" changelog="https://raw.githubusercontent.com/jupyter-widgets/ipywidgets/main/docs/source/changelog.md" distfiles="${PYPI_SITE}/i/ipywidgets/ipywidgets-${version}.tar.gz" -checksum=15f1ac050b9ccbefd45dccfbb2ef6bed0029d8278682d569d71b8dd96bee0376 +checksum=61f969306b95f85fba6b6986b7fe45d73124d1d9e3023a8068710d47a22ea668 # main repo `.../python/ipywidgets/ipywidgets/` is `.../ipywidgets/` here patch_args=-Np3 From e6747e9135a7afe2a538db403b417aa9baefca35 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:14 -0500 Subject: [PATCH 0341/1664] python3-lrcalc: rebuild for Python 3.14 --- srcpkgs/python3-lrcalc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-lrcalc/template b/srcpkgs/python3-lrcalc/template index f975b6ea5c02fd..59644953332fc2 100644 --- a/srcpkgs/python3-lrcalc/template +++ b/srcpkgs/python3-lrcalc/template @@ -1,7 +1,7 @@ # Template file for 'python3-lrcalc' pkgname=python3-lrcalc version=2.1 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" makedepends="python3-devel lrcalc-devel" From adfc507f05d02066b08e729a4588b78bd8b88c00 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:14 -0500 Subject: [PATCH 0342/1664] python3-matplotlib: rebuild for Python 3.14 --- srcpkgs/python3-matplotlib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template index 9d85fe3c4989fd..69f72d49c5a58d 100644 --- a/srcpkgs/python3-matplotlib/template +++ b/srcpkgs/python3-matplotlib/template @@ -1,7 +1,7 @@ # Template file for 'python3-matplotlib' pkgname=python3-matplotlib version=3.10.7 -revision=1 +revision=2 build_style=python3-pep517 build_helper="meson numpy" make_build_args="-Csetup-args=-Dsystem-freetype=true From 958625ca09a31b860212e141c15e30e608fad758 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:15 -0500 Subject: [PATCH 0343/1664] python3-memory_allocator: rebuild for Python 3.14 --- srcpkgs/python3-memory_allocator/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-memory_allocator/template b/srcpkgs/python3-memory_allocator/template index 1c1e1c1581865a..c7cd49c2bb9b98 100644 --- a/srcpkgs/python3-memory_allocator/template +++ b/srcpkgs/python3-memory_allocator/template @@ -1,7 +1,7 @@ # Template file for 'python3-memory_allocator' pkgname=python3-memory_allocator version=0.1.4 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel python3-Cython" makedepends="python3-devel" From 9f1d39e57aac29b462cb5725d723a19e3ad6fac9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:15 -0500 Subject: [PATCH 0344/1664] python3-networkx: rebuild for Python 3.14 --- srcpkgs/python3-networkx/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-networkx/template b/srcpkgs/python3-networkx/template index 65c8a8c03a0190..4e90de7a83c50f 100644 --- a/srcpkgs/python3-networkx/template +++ b/srcpkgs/python3-networkx/template @@ -1,7 +1,7 @@ # Template file for 'python3-networkx' pkgname=python3-networkx version=3.5 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 4477b839cec72c2dbde326f7127dbf51b07defe1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:15 -0500 Subject: [PATCH 0345/1664] python3-pip: rebuild for Python 3.14 --- srcpkgs/python3-pip/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pip/template b/srcpkgs/python3-pip/template index 6fba66b14fe17a..cd90954a472f3b 100644 --- a/srcpkgs/python3-pip/template +++ b/srcpkgs/python3-pip/template @@ -1,7 +1,7 @@ # Template file for 'python3-pip' pkgname=python3-pip version=25.3 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3" From cd41a0728c79b82c204052e7c9f80c429fda86bf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:15 -0500 Subject: [PATCH 0346/1664] python3-pplpy: rebuild for Python 3.14 --- srcpkgs/python3-pplpy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pplpy/template b/srcpkgs/python3-pplpy/template index 7eb86be2305866..7e3c50646bf096 100644 --- a/srcpkgs/python3-pplpy/template +++ b/srcpkgs/python3-pplpy/template @@ -1,7 +1,7 @@ # Template file for 'python3-pplpy' pkgname=python3-pplpy version=0.8.10 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel python3-Cython python3-cysignals python3-gmpy2" From a3c2f7b8ecf6c2992bfce3372657c36b74e10e07 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:15 -0500 Subject: [PATCH 0347/1664] python3-primecountpy: rebuild for Python 3.14 --- srcpkgs/python3-primecountpy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-primecountpy/template b/srcpkgs/python3-primecountpy/template index 45208ff4bde6bf..eff1f2fddd55b6 100644 --- a/srcpkgs/python3-primecountpy/template +++ b/srcpkgs/python3-primecountpy/template @@ -1,7 +1,7 @@ # Template file for 'python3-primecountpy' pkgname=python3-primecountpy version=0.1.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel python3-Cython python3-cysignals" From 5ec0eb549404aaa664eb58e5f3866e2c4afc5ab3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:15 -0500 Subject: [PATCH 0348/1664] python3-scipy: rebuild for Python 3.14 --- srcpkgs/python3-scipy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-scipy/template b/srcpkgs/python3-scipy/template index 0706d9a8a77f55..7e3fd738fdf3d2 100644 --- a/srcpkgs/python3-scipy/template +++ b/srcpkgs/python3-scipy/template @@ -1,7 +1,7 @@ # Template file for 'python3-scipy' pkgname=python3-scipy version=1.16.3 -revision=1 +revision=2 build_style=python3-pep517 build_helper="meson numpy" # SciPy imposes strict and unnecessary restrictions on build dependencies From 936e4e4dd35aae717fff97dba65a944b74786690 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:15 -0500 Subject: [PATCH 0349/1664] python3-sympy: rebuild for Python 3.14 --- srcpkgs/python3-sympy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sympy/template b/srcpkgs/python3-sympy/template index ce5bf0fb295983..116d184de077ab 100644 --- a/srcpkgs/python3-sympy/template +++ b/srcpkgs/python3-sympy/template @@ -1,7 +1,7 @@ # Template file for 'python3-sympy' pkgname=python3-sympy version=1.14.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-mpmath" From 1bec3066f892c593d479866876ca15cdf47beab1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:16 -0500 Subject: [PATCH 0350/1664] python3-requests-oauthlib: rebuild for Python 3.14 --- srcpkgs/python3-requests-oauthlib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-requests-oauthlib/template b/srcpkgs/python3-requests-oauthlib/template index b93c3acf2b9812..305a41ca9fb090 100644 --- a/srcpkgs/python3-requests-oauthlib/template +++ b/srcpkgs/python3-requests-oauthlib/template @@ -1,7 +1,7 @@ # Template file for 'python3-requests-oauthlib' pkgname=python3-requests-oauthlib version=1.3.0 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests python3-oauthlib" From 66c07782014b602c8f3a9c2f1dc58ee381731bab Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:16 -0500 Subject: [PATCH 0351/1664] python3-distutils-extra: rebuild for Python 3.14 --- srcpkgs/python3-distutils-extra/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-distutils-extra/template b/srcpkgs/python3-distutils-extra/template index 06a5a93e53fd07..07c1742f358716 100644 --- a/srcpkgs/python3-distutils-extra/template +++ b/srcpkgs/python3-distutils-extra/template @@ -1,7 +1,7 @@ # Template file for 'python3-distutils-extra' pkgname=python3-distutils-extra version=2.39 -revision=11 +revision=12 build_style=python3-module hostmakedepends="intltool python3-setuptools" depends="python3-setuptools" From 603facd8db98c4a05024a7dab4ab6ba13ce9fa9e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:16 -0500 Subject: [PATCH 0352/1664] python3-socketIO-client: rebuild for Python 3.14 --- srcpkgs/python3-socketIO-client/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-socketIO-client/template b/srcpkgs/python3-socketIO-client/template index 54721378653b9e..9c04c2c3a7dec0 100644 --- a/srcpkgs/python3-socketIO-client/template +++ b/srcpkgs/python3-socketIO-client/template @@ -1,7 +1,7 @@ # Template file for 'python3-socketIO-client' pkgname=python3-socketIO-client version=0.7.2 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests python3-six python3-websocket-client" From 4a06923a0db1731fda17ce00eb45a58f386a5bcb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:16 -0500 Subject: [PATCH 0353/1664] libplist: rebuild for Python 3.14 --- srcpkgs/libplist/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libplist/template b/srcpkgs/libplist/template index 12c8423fa9f4ae..8c8dbc423aad0c 100644 --- a/srcpkgs/libplist/template +++ b/srcpkgs/libplist/template @@ -1,7 +1,7 @@ # Template file for 'libplist' pkgname=libplist version=2.2.0 -revision=6 +revision=7 build_style=gnu-configure configure_args="--disable-static" hostmakedepends="automake libtool pkgconf python3 python3-Cython" From 33d6ff91a2450dd20de050decf41cbf69705f7c0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:16 -0500 Subject: [PATCH 0354/1664] python3-boolean.py: rebuild for Python 3.14 --- srcpkgs/python3-boolean.py/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-boolean.py/template b/srcpkgs/python3-boolean.py/template index d25b71a5159fe8..2e5facda88a1df 100644 --- a/srcpkgs/python3-boolean.py/template +++ b/srcpkgs/python3-boolean.py/template @@ -1,7 +1,7 @@ # Template file for 'python3-boolean.py' pkgname=python3-boolean.py version=3.8 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From b1693eb1ea8a29748a5fc7aa70264af5fe68f39f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:16 -0500 Subject: [PATCH 0355/1664] python3-pyqt6: rebuild for Python 3.14 --- srcpkgs/python3-pyqt6/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyqt6/template b/srcpkgs/python3-pyqt6/template index cb9a32adb5e834..a01c6ddad81459 100644 --- a/srcpkgs/python3-pyqt6/template +++ b/srcpkgs/python3-pyqt6/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyqt6' pkgname=python3-pyqt6 version=6.10.0 -revision=1 +revision=2 build_style=sip-build build_helper=qemu configure_args="--confirm-license --dbus $XBPS_CROSS_BASE/usr/include/dbus-1.0 From 23263e027e89415ac83b039044d9391dd634b96a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:17 -0500 Subject: [PATCH 0356/1664] python3-argcomplete: rebuild for Python 3.14 --- srcpkgs/python3-argcomplete/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-argcomplete/template b/srcpkgs/python3-argcomplete/template index b1bcd2b0a310ce..0bea1b28afc977 100644 --- a/srcpkgs/python3-argcomplete/template +++ b/srcpkgs/python3-argcomplete/template @@ -1,7 +1,7 @@ # Template file for 'python3-argcomplete' pkgname=python3-argcomplete version=3.6.3 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3" From 496838b9399d06144db495f334cf999fe9bd6425 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:17 -0500 Subject: [PATCH 0357/1664] python3-halo: rebuild for Python 3.14 --- srcpkgs/python3-halo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-halo/template b/srcpkgs/python3-halo/template index 8cdedc290fbb33..476098362da2aa 100644 --- a/srcpkgs/python3-halo/template +++ b/srcpkgs/python3-halo/template @@ -1,7 +1,7 @@ # Template file for 'python3-halo' pkgname=python3-halo version=0.0.31 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-log_symbols python3-spinners python3-termcolor From 20375ba1c640782202e455e2c2d1363e7bd34c1c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:17 -0500 Subject: [PATCH 0358/1664] python3-zope.component: rebuild for Python 3.14 --- srcpkgs/python3-zope.component/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zope.component/template b/srcpkgs/python3-zope.component/template index a780cc6b8dafab..b863c6cf18b267 100644 --- a/srcpkgs/python3-zope.component/template +++ b/srcpkgs/python3-zope.component/template @@ -1,7 +1,7 @@ # Template file for 'python3-zope.component' pkgname=python3-zope.component version=5.0.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-zope.deferredimport python3-zope.deprecation From 1240746dcaa9d00d146df1221a9fc379ba56f9ec Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:17 -0500 Subject: [PATCH 0359/1664] python3-zope.configuration: rebuild for Python 3.14 --- srcpkgs/python3-zope.configuration/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zope.configuration/template b/srcpkgs/python3-zope.configuration/template index e6b97943da7c46..3ec74a95347839 100644 --- a/srcpkgs/python3-zope.configuration/template +++ b/srcpkgs/python3-zope.configuration/template @@ -1,7 +1,7 @@ # Template file for 'python3-zope.configuration' pkgname=python3-zope.configuration version=4.4.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools python3-Sphinx" depends="python3-zope.i18nmessageid python3-zope.interface python3-zope.schema" From 89f138a1b9cf493c8c3d1b4f0c855c0ac7e5bc29 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:17 -0500 Subject: [PATCH 0360/1664] python3-sphinxcontrib: rebuild for Python 3.14 --- srcpkgs/python3-sphinxcontrib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sphinxcontrib/template b/srcpkgs/python3-sphinxcontrib/template index 337ca4c10ef052..4afc3e49139e49 100644 --- a/srcpkgs/python3-sphinxcontrib/template +++ b/srcpkgs/python3-sphinxcontrib/template @@ -1,7 +1,7 @@ # Template file for 'python3-sphinxcontrib' pkgname=python3-sphinxcontrib version=1.0 -revision=9 +revision=10 create_wrksrc=yes hostmakedepends="python3-setuptools" depends="python3-setuptools" From a786238a3978ac3a0801e76785532ae0d9f15f1a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:17 -0500 Subject: [PATCH 0361/1664] python3-zope.exceptions: rebuild for Python 3.14 --- srcpkgs/python3-zope.exceptions/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zope.exceptions/template b/srcpkgs/python3-zope.exceptions/template index c8bef07b86528a..4f8b2b97b836bc 100644 --- a/srcpkgs/python3-zope.exceptions/template +++ b/srcpkgs/python3-zope.exceptions/template @@ -1,7 +1,7 @@ # Template file for 'python3-zope.exceptions' pkgname=python3-zope.exceptions version=4.4 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools python3-repoze.sphinx.autointerface python3-Sphinx" From 98f88274640aaa168c89bae0d1eb657e8e9d2c2d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:18 -0500 Subject: [PATCH 0362/1664] python3-lz4: rebuild for Python 3.14 --- srcpkgs/python3-lz4/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-lz4/template b/srcpkgs/python3-lz4/template index e53b43e903b122..cd3e738577249b 100644 --- a/srcpkgs/python3-lz4/template +++ b/srcpkgs/python3-lz4/template @@ -1,7 +1,7 @@ # Template file for 'python3-lz4' pkgname=python3-lz4 version=4.3.3 -revision=2 +revision=3 build_style=python3-pep517 # Module lz4.stream is experimental and not built by default make_check_args="--ignore=tests/stream" From 961f6e75892b80a323aad786f56a50d56d456b65 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:18 -0500 Subject: [PATCH 0363/1664] python3-priority: rebuild for Python 3.14 --- srcpkgs/python3-priority/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-priority/template b/srcpkgs/python3-priority/template index 560991dd8dc12b..fc3cd167e22d44 100644 --- a/srcpkgs/python3-priority/template +++ b/srcpkgs/python3-priority/template @@ -1,7 +1,7 @@ # Template file for 'python3-priority' pkgname=python3-priority version=2.0.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 68de338c9dba7a2d94103a8439d474515cf43826 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:18 -0500 Subject: [PATCH 0364/1664] python3-cairocffi: rebuild for Python 3.14 --- srcpkgs/python3-cairocffi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cairocffi/template b/srcpkgs/python3-cairocffi/template index 0560d9cfa00291..da59ce433658d4 100644 --- a/srcpkgs/python3-cairocffi/template +++ b/srcpkgs/python3-cairocffi/template @@ -1,7 +1,7 @@ # Template file for 'python3-cairocffi' pkgname=python3-cairocffi version=1.7.1 -revision=2 +revision=3 build_style=python3-pep517 make_check_args="--pyargs cairocffi" hostmakedepends="python3-setuptools python3-cffi python3-wheel From 282d711787a031bc8ccadc2f904f7de8d7d8b4da Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:18 -0500 Subject: [PATCH 0365/1664] python3-pywlroots: rebuild for Python 3.14 --- srcpkgs/python3-pywlroots/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pywlroots/template b/srcpkgs/python3-pywlroots/template index d7c8b6e68d9346..1f7be02a92a803 100644 --- a/srcpkgs/python3-pywlroots/template +++ b/srcpkgs/python3-pywlroots/template @@ -1,7 +1,7 @@ # Template file for 'python3-pywlroots' pkgname=python3-pywlroots version=0.17.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-cffi python3-pywayland python3-xkbcommon python3-wheel python3-devel wlroots${version%.*}-devel" From 4dd8f609538d04f1ffff29c825b4896f9a2a5fb0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:18 -0500 Subject: [PATCH 0366/1664] python3-EasyProcess: rebuild for Python 3.14 --- srcpkgs/python3-EasyProcess/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-EasyProcess/template b/srcpkgs/python3-EasyProcess/template index 6eaee1e99807b8..43d3756c47d94c 100644 --- a/srcpkgs/python3-EasyProcess/template +++ b/srcpkgs/python3-EasyProcess/template @@ -1,7 +1,7 @@ # Template file for 'python3-EasyProcess' pkgname=python3-EasyProcess version=1.1 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 9d89bc4e21325479152b2a3f589ea19891c12cce Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:18 -0500 Subject: [PATCH 0367/1664] python3-requests-ntlm: rebuild for Python 3.14 --- srcpkgs/python3-requests-ntlm/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-requests-ntlm/template b/srcpkgs/python3-requests-ntlm/template index b341a045eace40..f1d1542cb4e1fe 100644 --- a/srcpkgs/python3-requests-ntlm/template +++ b/srcpkgs/python3-requests-ntlm/template @@ -1,7 +1,7 @@ # Template file for 'python3-requests-ntlm' pkgname=python3-requests-ntlm version=1.3.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3 python3-requests python3-pyspnego" From d8bbf418b3903b2eb5e16154593afbff61fdf08e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:19 -0500 Subject: [PATCH 0368/1664] python3-xmltodict: rebuild for Python 3.14 --- srcpkgs/python3-xmltodict/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-xmltodict/template b/srcpkgs/python3-xmltodict/template index abe56821b12a5e..34948f82b386ca 100644 --- a/srcpkgs/python3-xmltodict/template +++ b/srcpkgs/python3-xmltodict/template @@ -1,7 +1,7 @@ # Template file for 'python3-xmltodict' pkgname=python3-xmltodict version=0.14.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3" From 7caf34da55863447d988faee5f46431f42f34b2c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:19 -0500 Subject: [PATCH 0369/1664] python3-pytest: rebuild for Python 3.14 --- srcpkgs/python3-pytest/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest/template b/srcpkgs/python3-pytest/template index 8e646d60b03ba2..7471cdae8abd97 100644 --- a/srcpkgs/python3-pytest/template +++ b/srcpkgs/python3-pytest/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest' pkgname=python3-pytest version=8.3.4 -revision=1 +revision=2 build_style=python3-pep517 _common_deps="python3-iniconfig python3-pluggy" hostmakedepends="python3-setuptools_scm python3-Sphinx ${_common_deps}" From 429c207badb5e062450609559b8330ce7c712320 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:19 -0500 Subject: [PATCH 0370/1664] python3-flasgger: rebuild for Python 3.14 --- srcpkgs/python3-flasgger/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-flasgger/template b/srcpkgs/python3-flasgger/template index a9d2161b684754..0357d121ea1a30 100644 --- a/srcpkgs/python3-flasgger/template +++ b/srcpkgs/python3-flasgger/template @@ -1,7 +1,7 @@ # Template file for 'python3-flasgger' pkgname=python3-flasgger version=0.9.7.1 -revision=2 +revision=3 build_style=python3-module # Examples require unpackaged "flex" make_check_args="--ignore tests/test_examples.py" From f8b3f333873ec217d0667f71d69ce869e426713c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:19 -0500 Subject: [PATCH 0371/1664] python3-mccabe: rebuild for Python 3.14 --- srcpkgs/python3-mccabe/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mccabe/template b/srcpkgs/python3-mccabe/template index 38c6fbab92dba3..c364238c2025e0 100644 --- a/srcpkgs/python3-mccabe/template +++ b/srcpkgs/python3-mccabe/template @@ -1,7 +1,7 @@ # Template file for 'python3-mccabe' pkgname=python3-mccabe version=0.7.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 1d27d83498c385ececf831f9dc40696882ca3fd3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:19 -0500 Subject: [PATCH 0372/1664] python3-pycodestyle: rebuild for Python 3.14 --- srcpkgs/python3-pycodestyle/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pycodestyle/template b/srcpkgs/python3-pycodestyle/template index 68a3f69ba13189..5a1fd6a144ff29 100644 --- a/srcpkgs/python3-pycodestyle/template +++ b/srcpkgs/python3-pycodestyle/template @@ -1,7 +1,7 @@ # Template file for 'python3-pycodestyle' pkgname=python3-pycodestyle version=2.12.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 83670b26aa82ca0b70b626d2cc66cc4e1528283b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:19 -0500 Subject: [PATCH 0373/1664] python3-pyflakes: rebuild for Python 3.14 --- srcpkgs/python3-pyflakes/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyflakes/template b/srcpkgs/python3-pyflakes/template index bacf98c1ae897f..4aa65776635e75 100644 --- a/srcpkgs/python3-pyflakes/template +++ b/srcpkgs/python3-pyflakes/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyflakes' pkgname=python3-pyflakes version=3.2.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From ac0d480b7fe5acc42b8a81e12f0a200d30610791 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:19 -0500 Subject: [PATCH 0374/1664] python3-mypy_extensions: rebuild for Python 3.14 --- srcpkgs/python3-mypy_extensions/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mypy_extensions/template b/srcpkgs/python3-mypy_extensions/template index 99cfe062302d2a..02661471404978 100644 --- a/srcpkgs/python3-mypy_extensions/template +++ b/srcpkgs/python3-mypy_extensions/template @@ -1,7 +1,7 @@ # Template file for 'python3-mypy_extensions' pkgname=python3-mypy_extensions version=1.0.0 -revision=3 +revision=4 build_style=python3-module make_check_target="tests/testextensions.py" hostmakedepends="python3-setuptools" From 182044f354423ad1d0bb6057acdf0bc338275df0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:20 -0500 Subject: [PATCH 0375/1664] python3-pytokens: rebuild for Python 3.14 --- srcpkgs/python3-pytokens/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytokens/template b/srcpkgs/python3-pytokens/template index 4293caba01cdaf..e68effecf649a1 100644 --- a/srcpkgs/python3-pytokens/template +++ b/srcpkgs/python3-pytokens/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytokens' pkgname=python3-pytokens version=0.1.10 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 9287fb099f3cea3e661c57e1320b724d8f957929 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:20 -0500 Subject: [PATCH 0376/1664] python3-siphash24: rebuild for Python 3.14 --- srcpkgs/python3-siphash24/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-siphash24/template b/srcpkgs/python3-siphash24/template index 0163fa01087628..3d9539643bab09 100644 --- a/srcpkgs/python3-siphash24/template +++ b/srcpkgs/python3-siphash24/template @@ -1,7 +1,7 @@ # Template file for 'python3-siphash24' pkgname=python3-siphash24 version=1.8 -revision=1 +revision=2 _c_siphash_ver="1.1.0" _c_stdaux_ver="1.5.0" build_style=python3-pep517 From aa8208c558283e3bf3aac68fc6ad139142d8b246 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:20 -0500 Subject: [PATCH 0377/1664] python3-crcmod: rebuild for Python 3.14 --- srcpkgs/python3-crcmod/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-crcmod/template b/srcpkgs/python3-crcmod/template index b49a473f8ea656..9f97e339c04ac3 100644 --- a/srcpkgs/python3-crcmod/template +++ b/srcpkgs/python3-crcmod/template @@ -1,7 +1,7 @@ # Template file for 'python3-crcmod' pkgname=python3-crcmod version=1.7 -revision=8 +revision=9 build_style=python3-module pycompile_module="crcmod" hostmakedepends="python3-setuptools" From c22ce46564b4b47e493d08834f70a2cc23af8a50 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:20 -0500 Subject: [PATCH 0378/1664] python3-fido2: rebuild for Python 3.14 --- srcpkgs/python3-fido2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-fido2/template b/srcpkgs/python3-fido2/template index 49f158b62d3b98..6ea131ae4b6dfd 100644 --- a/srcpkgs/python3-fido2/template +++ b/srcpkgs/python3-fido2/template @@ -1,7 +1,7 @@ # Template file for 'python3-fido2' pkgname=python3-fido2 version=2.0.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-six python3-cryptography python3-pyscard" From ac53a817f6fdd61ab4a3c1077183348097b1cd7f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:20 -0500 Subject: [PATCH 0379/1664] python3-hidapi: rebuild for Python 3.14 --- srcpkgs/python3-hidapi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-hidapi/template b/srcpkgs/python3-hidapi/template index 1d2d9c5572e7e4..091e2c032053b1 100644 --- a/srcpkgs/python3-hidapi/template +++ b/srcpkgs/python3-hidapi/template @@ -1,7 +1,7 @@ # Template file for 'python3-hidapi' pkgname=python3-hidapi version=0.14.0.post4 -revision=1 +revision=2 build_style=python3-module make_build_args="--with-libusb" hostmakedepends="python3-setuptools python3-wheel python3-Cython pkg-config" From b801d0bce1786323985401fd0db87d1647df5bce Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:20 -0500 Subject: [PATCH 0380/1664] python3-pyserial: rebuild for Python 3.14 --- srcpkgs/python3-pyserial/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyserial/template b/srcpkgs/python3-pyserial/template index 26b41623aabdda..150ed02b9a7143 100644 --- a/srcpkgs/python3-pyserial/template +++ b/srcpkgs/python3-pyserial/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyserial' pkgname=python3-pyserial version=3.5 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 8500efc2de5e3d8f4d5ada707064839b546c4899 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:21 -0500 Subject: [PATCH 0381/1664] python3-semver: rebuild for Python 3.14 --- srcpkgs/python3-semver/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-semver/template b/srcpkgs/python3-semver/template index aca405a098edf8..d44bea1836674f 100644 --- a/srcpkgs/python3-semver/template +++ b/srcpkgs/python3-semver/template @@ -1,7 +1,7 @@ # Template file for 'python3-semver' pkgname=python3-semver version=3.0.4 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" depends="python3" From b024cb56b5b70635d725408f2a7322259b51ea01 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:21 -0500 Subject: [PATCH 0382/1664] python3-tlv8: rebuild for Python 3.14 --- srcpkgs/python3-tlv8/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tlv8/template b/srcpkgs/python3-tlv8/template index e218fa5684ac1c..bf54feb9651da0 100644 --- a/srcpkgs/python3-tlv8/template +++ b/srcpkgs/python3-tlv8/template @@ -1,7 +1,7 @@ # Template file for 'python3-tlv8' pkgname=python3-tlv8 version=0.10.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3" From 1c725637b8b34e768fbb49f64401aacb0f892ef4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:21 -0500 Subject: [PATCH 0383/1664] python3-fire: rebuild for Python 3.14 --- srcpkgs/python3-fire/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-fire/template b/srcpkgs/python3-fire/template index b898d7539d295f..041525f3907a07 100644 --- a/srcpkgs/python3-fire/template +++ b/srcpkgs/python3-fire/template @@ -1,7 +1,7 @@ # Template file for 'python3-fire' pkgname=python3-fire version=0.7.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-termcolor" From 9cda7e850cd6c32afa284df07957a35548f23136 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:21 -0500 Subject: [PATCH 0384/1664] python3-intelhex: rebuild for Python 3.14 --- srcpkgs/python3-intelhex/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-intelhex/template b/srcpkgs/python3-intelhex/template index 88ffc7b7a827c5..dc952e9623b6bf 100644 --- a/srcpkgs/python3-intelhex/template +++ b/srcpkgs/python3-intelhex/template @@ -1,7 +1,7 @@ # Template file for 'python3-intelhex' pkgname=python3-intelhex version=2.3.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 608bf3cf89139c5a25e2d3e3e0722d1c5cdd0fe8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:21 -0500 Subject: [PATCH 0385/1664] python3-libusb1: rebuild for Python 3.14 --- srcpkgs/python3-libusb1/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-libusb1/template b/srcpkgs/python3-libusb1/template index ee106e4ddcc310..62a7eedf717acb 100644 --- a/srcpkgs/python3-libusb1/template +++ b/srcpkgs/python3-libusb1/template @@ -1,7 +1,7 @@ # Template file for 'python3-libusb1' pkgname=python3-libusb1 version=3.1.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools_scm" makedepends="libusb-devel" From d1f98fcfeb7e1866dfa94d238cbfa625108cc7de Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:21 -0500 Subject: [PATCH 0386/1664] python3-tqdm: rebuild for Python 3.14 --- srcpkgs/python3-tqdm/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tqdm/template b/srcpkgs/python3-tqdm/template index 89fedc3aa30560..22f10541e16e27 100644 --- a/srcpkgs/python3-tqdm/template +++ b/srcpkgs/python3-tqdm/template @@ -1,7 +1,7 @@ # Template file for 'python3-tqdm' pkgname=python3-tqdm version=4.67.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" depends="python3" From fe37ef111a7687ff1dbf3e6e09d940c5a9fbeb0f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:22 -0500 Subject: [PATCH 0387/1664] python3-usb: rebuild for Python 3.14 --- srcpkgs/python3-usb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-usb/template b/srcpkgs/python3-usb/template index d003798c0154bb..8308ff1dbdeea5 100644 --- a/srcpkgs/python3-usb/template +++ b/srcpkgs/python3-usb/template @@ -1,7 +1,7 @@ # Template file for 'python3-usb' pkgname=python3-usb version=1.3.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3 libusb" From 9b6b6b47b5d5bdecb2114ba7bd1290ff4bf0fb68 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:22 -0500 Subject: [PATCH 0388/1664] python3-docstring-to-markdown: rebuild for Python 3.14 --- srcpkgs/python3-docstring-to-markdown/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-docstring-to-markdown/template b/srcpkgs/python3-docstring-to-markdown/template index ee43bfa81fc6e0..7d785bd5302c5b 100644 --- a/srcpkgs/python3-docstring-to-markdown/template +++ b/srcpkgs/python3-docstring-to-markdown/template @@ -1,7 +1,7 @@ # Template file for 'python3-docstring-to-markdown' pkgname=python3-docstring-to-markdown version=0.12 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3" From 51afd8625677197672ffa036ecdda9c5f0158c37 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:22 -0500 Subject: [PATCH 0389/1664] python3-lsp-jsonrpc: rebuild for Python 3.14 --- srcpkgs/python3-lsp-jsonrpc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-lsp-jsonrpc/template b/srcpkgs/python3-lsp-jsonrpc/template index 77b280d7cb3996..f841259ef261de 100644 --- a/srcpkgs/python3-lsp-jsonrpc/template +++ b/srcpkgs/python3-lsp-jsonrpc/template @@ -1,7 +1,7 @@ # Template file for 'python3-lsp-jsonrpc' pkgname=python3-lsp-jsonrpc version=1.1.1 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3-ultrajson" From 52e2b23ab1681cda697bd563ccf0b2401ff46837 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:22 -0500 Subject: [PATCH 0390/1664] python3-yapf: rebuild for Python 3.14 --- srcpkgs/python3-yapf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-yapf/template b/srcpkgs/python3-yapf/template index f7a4e1b39ec851..65044eb419a38e 100644 --- a/srcpkgs/python3-yapf/template +++ b/srcpkgs/python3-yapf/template @@ -1,7 +1,7 @@ # Template file for 'python3-yapf' pkgname=python3-yapf version=0.43.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-importlib_metadata python3-platformdirs python3-tomli" From 418c48ed4dcdd60c85dcec1b9b08e76f5de11286 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:22 -0500 Subject: [PATCH 0391/1664] capstone: rebuild for Python 3.14 --- srcpkgs/capstone/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/capstone/template b/srcpkgs/capstone/template index 8f6e551a2c17c4..6c260027649d80 100644 --- a/srcpkgs/capstone/template +++ b/srcpkgs/capstone/template @@ -1,7 +1,7 @@ # Template file for 'capstone' pkgname=capstone version=5.0.6 -revision=1 +revision=2 build_style=gnu-makefile make_use_env=yes hostmakedepends="python3-setuptools python3-packaging-bootstrap" From 47e093d2b9971a6f3138d751d2e0dd6c7cfd623e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:22 -0500 Subject: [PATCH 0392/1664] python3-jsonschema-path: rebuild for Python 3.14 --- srcpkgs/python3-jsonschema-path/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jsonschema-path/template b/srcpkgs/python3-jsonschema-path/template index e419b12274a91f..c17f276ddbe423 100644 --- a/srcpkgs/python3-jsonschema-path/template +++ b/srcpkgs/python3-jsonschema-path/template @@ -1,7 +1,7 @@ # Template file for 'python3-jsonschema-path' pkgname=python3-jsonschema-path version=0.3.4 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-pathable python3-referencing python3-yaml python3-requests" From 6c21c0c7b43dba273988ac3513c6a9e4371ba6fc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:23 -0500 Subject: [PATCH 0393/1664] python3-lazy-object-proxy: rebuild for Python 3.14 --- srcpkgs/python3-lazy-object-proxy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-lazy-object-proxy/template b/srcpkgs/python3-lazy-object-proxy/template index 629456be5b57e6..8a861b95366a92 100644 --- a/srcpkgs/python3-lazy-object-proxy/template +++ b/srcpkgs/python3-lazy-object-proxy/template @@ -1,7 +1,7 @@ # Template file for 'python3-lazy-object-proxy' pkgname=python3-lazy-object-proxy version=1.11.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm" makedepends="python3-devel" From 52051c36e844ed5fe7ddc3ae8d2238092ea649cf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:23 -0500 Subject: [PATCH 0394/1664] python3-openapi-schema-validator: rebuild for Python 3.14 --- srcpkgs/python3-openapi-schema-validator/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-openapi-schema-validator/template b/srcpkgs/python3-openapi-schema-validator/template index d5e1e0aa543404..d32bafb5f796c5 100644 --- a/srcpkgs/python3-openapi-schema-validator/template +++ b/srcpkgs/python3-openapi-schema-validator/template @@ -1,7 +1,7 @@ # Template file for 'python3-openapi-schema-validator' pkgname=python3-openapi-schema-validator version=0.6.3 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-jsonschema python3-jsonschema-specifications From b3a14edf883632e4f4b74301ed2d14a383979cf7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:23 -0500 Subject: [PATCH 0395/1664] python3-et-xmlfile: rebuild for Python 3.14 --- srcpkgs/python3-et-xmlfile/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-et-xmlfile/template b/srcpkgs/python3-et-xmlfile/template index c7543a19ec9169..d6329295c7c138 100644 --- a/srcpkgs/python3-et-xmlfile/template +++ b/srcpkgs/python3-et-xmlfile/template @@ -1,7 +1,7 @@ # Template file for 'python3-et-xmlfile' pkgname=python3-et-xmlfile version=1.1 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends=python3 From cfea0c9f111b9f0a6a2f8c3379bc8f4b25e7ab10 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:23 -0500 Subject: [PATCH 0396/1664] python3-pdfrw: rebuild for Python 3.14 --- srcpkgs/python3-pdfrw/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pdfrw/template b/srcpkgs/python3-pdfrw/template index a25b6233e6150a..21a0cebb373bc8 100644 --- a/srcpkgs/python3-pdfrw/template +++ b/srcpkgs/python3-pdfrw/template @@ -1,7 +1,7 @@ # Template file for 'python3-pdfrw' pkgname=python3-pdfrw version=0.4 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 5cda5aaef95ead0c9175b98683f9e99b158cad04 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:23 -0500 Subject: [PATCH 0397/1664] python3-pikepdf: rebuild for Python 3.14 --- srcpkgs/python3-pikepdf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pikepdf/template b/srcpkgs/python3-pikepdf/template index 24a8ea96886bad..7518fe8a7f97df 100644 --- a/srcpkgs/python3-pikepdf/template +++ b/srcpkgs/python3-pikepdf/template @@ -1,7 +1,7 @@ # Template file for 'python3-pikepdf' pkgname=python3-pikepdf version=8.13.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-pybind11 python3-wheel" makedepends="libqpdf-devel python3-pybind11" From 24f3fd4a110d12a92c09d77b62a841c343e465c9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 17 Nov 2025 10:31:08 -0500 Subject: [PATCH 0398/1664] ansible-core: update to 2.20.0. --- .../patches/relax-version-contraints.patch | 9 +++++ srcpkgs/ansible-core/template | 37 ++++++++++--------- 2 files changed, 28 insertions(+), 18 deletions(-) create mode 100644 srcpkgs/ansible-core/patches/relax-version-contraints.patch diff --git a/srcpkgs/ansible-core/patches/relax-version-contraints.patch b/srcpkgs/ansible-core/patches/relax-version-contraints.patch new file mode 100644 index 00000000000000..3b1246d702e49d --- /dev/null +++ b/srcpkgs/ansible-core/patches/relax-version-contraints.patch @@ -0,0 +1,9 @@ +--- a/pyproject.toml 2025-07-21 21:13:25.000000000 +0330 ++++ b/pyproject.toml 2025-08-05 23:39:12.083997671 +0330 +@@ -1,5 +1,5 @@ + [build-system] +-requires = ["setuptools >= 66.1.0, <= 80.9.0", "wheel == 0.45.1"] # lower bound to support controller Python versions, upper bound for latest version tested at release ++requires = ["setuptools", "wheel"] + build-backend = "setuptools.build_meta" + + [project] diff --git a/srcpkgs/ansible-core/template b/srcpkgs/ansible-core/template index 91009503e2afe6..eac6f53540901c 100644 --- a/srcpkgs/ansible-core/template +++ b/srcpkgs/ansible-core/template @@ -1,36 +1,37 @@ # Template file for 'ansible-core' pkgname=ansible-core -version=2.17.5 -revision=2 -hostmakedepends="python3-setuptools python3-wheel python3-packaging - python3-straight.plugin python3-docutils python3-Jinja2 python3-yaml" +version=2.20.0 +revision=1 +build_style=python3-pep517 +hostmakedepends="python3-setuptools python3-wheel python3-docutils + python3-Jinja2 python3-yaml" depends="python3-cryptography python3-Jinja2 python3-paramiko python3-yaml - python3-packaging python3-resolvelib python3-pytz git" -checkdepends="${depends} python3-pytest python3-pytest-xdist - python3-pytest-forked unzip openssh python3-pytest-mock libselinux - python3-passlib" + python3-resolvelib git" +checkdepends="${depends} openssh python3-bcrypt python3-botocore + python3-passlib python3-pexpect python3-pytest-mock python3-pytest-xdist + python3-pytest-forked python3-pywinrm python3-voluptuous" short_desc="Simple deployment, configuration management and execution framework" maintainer="Orphaned " license="GPL-3.0-or-later" homepage="https://www.ansible.com/" changelog="https://raw.githubusercontent.com/ansible/ansible/stable-${version%.*}/changelogs/CHANGELOG-v${version%.*}.rst" -distfiles="${PYPI_SITE}/a/ansible-core/ansible_core-${version}.tar.gz" -checksum=ae7f51fd13dc9d57c9bcd43ef23f9c255ca8f18f4b5c0011a4f9b724d92c5a8e +distfiles="${PYPI_SITE}/a/ansible_core/ansible_core-${version}.tar.gz" +checksum=cd73faf28a056c933bc1eee8f66ab597e7ec7309d42c8a6e5d6e4294c4a78b54 conflicts="ansible<2.10.1_1" replaces="ansible-base<2.11.0_1" -do_build() { - python setup.py build -} - do_check() { + # Test script is missing and exists to be in child of root + mkdir -p bin + ln -sf ../test/lib/ansible_test/_util/target/cli/ansible_test_cli_stub.py bin/ansible-test + + # needs mount + rm test/units/modules/test_mount_facts.py + bin/ansible-test units } -do_install() { - python setup.py install --root="${DESTDIR}" - - mkdir man +post_install() { ./packaging/cli-doc/build.py man --output-dir man for page in man/*.1; do vman ${page} From 42a349317c689e531980a118370ed5fbeea82f0b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:24 -0500 Subject: [PATCH 0399/1664] python3-subprocess-tee: rebuild for Python 3.14 --- srcpkgs/python3-subprocess-tee/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-subprocess-tee/template b/srcpkgs/python3-subprocess-tee/template index 02b359b57670cf..b3da9a968a7d94 100644 --- a/srcpkgs/python3-subprocess-tee/template +++ b/srcpkgs/python3-subprocess-tee/template @@ -1,7 +1,7 @@ # Template file for 'python3-subprocess-tee' pkgname=python3-subprocess-tee version=0.4.1 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" depends="python3" From 1c3cd555a46ca6e6512dd98de62c830c49edd6c2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:24 -0500 Subject: [PATCH 0400/1664] python3-bracex: rebuild for Python 3.14 --- srcpkgs/python3-bracex/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-bracex/template b/srcpkgs/python3-bracex/template index 8888bdc8741fda..1eb223c3f65068 100644 --- a/srcpkgs/python3-bracex/template +++ b/srcpkgs/python3-bracex/template @@ -1,7 +1,7 @@ # Template file for 'python3-bracex' pkgname=python3-bracex version=2.3.post1 -revision=4 +revision=5 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3" From 2473e7891d298d2c9012453a6b2fa100edd8db69 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:24 -0500 Subject: [PATCH 0401/1664] python3-audioread: rebuild for Python 3.14 --- srcpkgs/python3-audioread/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-audioread/template b/srcpkgs/python3-audioread/template index 37e1bfa5f6bcb9..54f9a72a3dd3c4 100644 --- a/srcpkgs/python3-audioread/template +++ b/srcpkgs/python3-audioread/template @@ -1,7 +1,7 @@ # Template file for 'python3-audioread' pkgname=python3-audioread version=3.0.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3" From e2399d49682a9ad24936d48cfc17a9954bbebe90 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:24 -0500 Subject: [PATCH 0402/1664] python3-pycryptodome: rebuild for Python 3.14 --- srcpkgs/python3-pycryptodome/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pycryptodome/template b/srcpkgs/python3-pycryptodome/template index 6496b80696a834..4c770ce71383da 100644 --- a/srcpkgs/python3-pycryptodome/template +++ b/srcpkgs/python3-pycryptodome/template @@ -1,7 +1,7 @@ # Template file for 'python3-pycryptodome' pkgname=python3-pycryptodome version=3.17 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From 949b1ba4ded1110eb4133973af45749ade12d0fb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:24 -0500 Subject: [PATCH 0403/1664] python3-pypng: rebuild for Python 3.14 --- srcpkgs/python3-pypng/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pypng/template b/srcpkgs/python3-pypng/template index 9e3b25b75069aa..0b4f93f4ec4d71 100644 --- a/srcpkgs/python3-pypng/template +++ b/srcpkgs/python3-pypng/template @@ -1,7 +1,7 @@ # Template file for 'python3-pypng' pkgname=python3-pypng version=0.20220715.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From a534f3c1a3349a4a1afe6ec32979b48bc425c8a1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:24 -0500 Subject: [PATCH 0404/1664] python3-aiodns: rebuild for Python 3.14 --- srcpkgs/python3-aiodns/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-aiodns/template b/srcpkgs/python3-aiodns/template index 82cfb9189eef85..e817233e78984b 100644 --- a/srcpkgs/python3-aiodns/template +++ b/srcpkgs/python3-aiodns/template @@ -1,7 +1,7 @@ # Template file for 'python3-aiodns' pkgname=python3-aiodns version=2.0.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pycares" From 6cd95d7052ee7637f176b62770a03d5dacef9b26 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:24 -0500 Subject: [PATCH 0405/1664] python3-asgiref: rebuild for Python 3.14 --- srcpkgs/python3-asgiref/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-asgiref/template b/srcpkgs/python3-asgiref/template index 623ed1a6991649..d43f9ad0ef6408 100644 --- a/srcpkgs/python3-asgiref/template +++ b/srcpkgs/python3-asgiref/template @@ -1,7 +1,7 @@ # Template file for 'python3-asgiref' pkgname=python3-asgiref version=3.5.2 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 26a88b18b251ac54c629304583db767f01e6711f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:25 -0500 Subject: [PATCH 0406/1664] python3-uvloop: rebuild for Python 3.14 --- srcpkgs/python3-uvloop/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-uvloop/template b/srcpkgs/python3-uvloop/template index 8bcdf8441d439d..c1da58c289cbc4 100644 --- a/srcpkgs/python3-uvloop/template +++ b/srcpkgs/python3-uvloop/template @@ -1,7 +1,7 @@ # Template file for 'python3-uvloop' pkgname=python3-uvloop version=0.22.1 -revision=1 +revision=2 build_style=python3-pep517 make_check_target="../tests" hostmakedepends="python3 python3-setuptools python3-wheel python3-Cython" From 09d33bf99304a63a6c1a28fb5750b179827f23ad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:25 -0500 Subject: [PATCH 0407/1664] python3-async-timeout: rebuild for Python 3.14 --- srcpkgs/python3-async-timeout/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-async-timeout/template b/srcpkgs/python3-async-timeout/template index 6e72713cb9b50a..699e34a5ee70fa 100644 --- a/srcpkgs/python3-async-timeout/template +++ b/srcpkgs/python3-async-timeout/template @@ -1,7 +1,7 @@ # Template file for 'python3-async-timeout' pkgname=python3-async-timeout version=4.0.3 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From c98cbe7f0922b57ba2c3d9d62aa2e3a146406f64 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:25 -0500 Subject: [PATCH 0408/1664] python3-ifaddr: rebuild for Python 3.14 --- srcpkgs/python3-ifaddr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ifaddr/template b/srcpkgs/python3-ifaddr/template index 24f4c9318d9c17..13865b7994c595 100644 --- a/srcpkgs/python3-ifaddr/template +++ b/srcpkgs/python3-ifaddr/template @@ -1,7 +1,7 @@ # Template file for 'python3-ifaddr' pkgname=python3-ifaddr version=0.1.7 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 75e47a9e699d594c3e7bf25918d6c859d2f6a419 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:25 -0500 Subject: [PATCH 0409/1664] python3-configobj: rebuild for Python 3.14 --- srcpkgs/python3-configobj/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-configobj/template b/srcpkgs/python3-configobj/template index 0690d5f8de0858..f5c742dff2dd84 100644 --- a/srcpkgs/python3-configobj/template +++ b/srcpkgs/python3-configobj/template @@ -1,7 +1,7 @@ # Template file for 'python3-configobj' pkgname=python3-configobj version=5.0.8 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-six" From 48d65b78b534e963d61234d82dad053d043000c9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:25 -0500 Subject: [PATCH 0410/1664] python3-tabulate: rebuild for Python 3.14 --- srcpkgs/python3-tabulate/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tabulate/template b/srcpkgs/python3-tabulate/template index afd0d21f1bd794..46b20f5e237041 100644 --- a/srcpkgs/python3-tabulate/template +++ b/srcpkgs/python3-tabulate/template @@ -1,7 +1,7 @@ # Template file for 'python3-tabulate' pkgname=python3-tabulate version=0.9.0 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3-wcwidth" From 647550577a7914cb9f170b8ff411a6f01f290966 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:25 -0500 Subject: [PATCH 0411/1664] python3-psycopg: rebuild for Python 3.14 --- srcpkgs/python3-psycopg/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-psycopg/template b/srcpkgs/python3-psycopg/template index 410e2747e63856..8ea80ede08a231 100644 --- a/srcpkgs/python3-psycopg/template +++ b/srcpkgs/python3-psycopg/template @@ -1,7 +1,7 @@ # Template file for 'python3-psycopg' pkgname=python3-psycopg version=3.2.6 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-typing_extensions" From 6e98205627ecf88b3a01de195a057230ab998d06 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:26 -0500 Subject: [PATCH 0412/1664] python3-sqlparse: rebuild for Python 3.14 --- srcpkgs/python3-sqlparse/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sqlparse/template b/srcpkgs/python3-sqlparse/template index 81f490a68ca483..66be609d377caa 100644 --- a/srcpkgs/python3-sqlparse/template +++ b/srcpkgs/python3-sqlparse/template @@ -1,7 +1,7 @@ # Template file for 'python3-sqlparse' pkgname=python3-sqlparse version=0.5.3 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3" From 057bc83868447a22db762c10f1661fffcffd222b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:26 -0500 Subject: [PATCH 0413/1664] python3-colorclass: rebuild for Python 3.14 --- srcpkgs/python3-colorclass/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-colorclass/template b/srcpkgs/python3-colorclass/template index 85e6a0acad5e7f..40552a88f0be61 100644 --- a/srcpkgs/python3-colorclass/template +++ b/srcpkgs/python3-colorclass/template @@ -1,7 +1,7 @@ # Template file for 'python3-colorclass' pkgname=python3-colorclass version=2.2.0 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 576c09c446a48658faf42c17c54254f5b4a79208 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:26 -0500 Subject: [PATCH 0414/1664] python3-easygui: rebuild for Python 3.14 --- srcpkgs/python3-easygui/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-easygui/template b/srcpkgs/python3-easygui/template index 437679fb81972f..f24b271c436762 100644 --- a/srcpkgs/python3-easygui/template +++ b/srcpkgs/python3-easygui/template @@ -1,7 +1,7 @@ # Template file for 'python3-easygui' pkgname=python3-easygui version=0.98.3 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-tkinter" From 462d56c8f237b96c2924546f860244f765694693 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:26 -0500 Subject: [PATCH 0415/1664] python3-msoffcrypto-tool: rebuild for Python 3.14 --- srcpkgs/python3-msoffcrypto-tool/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-msoffcrypto-tool/template b/srcpkgs/python3-msoffcrypto-tool/template index 0e30784e715060..af9e8667a979cd 100644 --- a/srcpkgs/python3-msoffcrypto-tool/template +++ b/srcpkgs/python3-msoffcrypto-tool/template @@ -1,7 +1,7 @@ # Template file for 'python3-msoffcrypto-tool' pkgname=python3-msoffcrypto-tool version=5.4.2 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-setuptools python3-olefile python3-cryptography" From 483ee4c8600254f3ec0fc9c650c2238b992cb202 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:26 -0500 Subject: [PATCH 0416/1664] python3-pcodedmp: rebuild for Python 3.14 --- srcpkgs/python3-pcodedmp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pcodedmp/template b/srcpkgs/python3-pcodedmp/template index 94a06b1b00d737..7179a3cc150d13 100644 --- a/srcpkgs/python3-pcodedmp/template +++ b/srcpkgs/python3-pcodedmp/template @@ -1,7 +1,7 @@ # Template file for 'python3-pcodedmp' pkgname=python3-pcodedmp version=1.2.6 -revision=7 +revision=8 build_style=python3-module pycompile_module="pcodedmp" hostmakedepends="python3-setuptools" From 63cc99a84abba3224e07eb6842182869f647db0e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:26 -0500 Subject: [PATCH 0417/1664] python3-construct: rebuild for Python 3.14 --- srcpkgs/python3-construct/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-construct/template b/srcpkgs/python3-construct/template index ea9a7178186420..2be3445a35c12a 100644 --- a/srcpkgs/python3-construct/template +++ b/srcpkgs/python3-construct/template @@ -1,7 +1,7 @@ # Template file for 'python3-construct' pkgname=python3-construct version=2.10.68 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From c0f24c1a1d8d9092ecc78c8529d6af96a6dadf0c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:27 -0500 Subject: [PATCH 0418/1664] python3-Unidecode: rebuild for Python 3.14 --- srcpkgs/python3-Unidecode/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Unidecode/template b/srcpkgs/python3-Unidecode/template index 6f0d7ed3d2e4c3..48cfcc1219b943 100644 --- a/srcpkgs/python3-Unidecode/template +++ b/srcpkgs/python3-Unidecode/template @@ -1,7 +1,7 @@ # Template file for 'python3-Unidecode' pkgname=python3-Unidecode version=1.3.7 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools" From 4c251b658bb226e4b0db56dbcb71898d211265fd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:27 -0500 Subject: [PATCH 0419/1664] python3-text-unidecode: rebuild for Python 3.14 --- srcpkgs/python3-text-unidecode/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-text-unidecode/template b/srcpkgs/python3-text-unidecode/template index 345711b30046ab..9e3f4d16960379 100644 --- a/srcpkgs/python3-text-unidecode/template +++ b/srcpkgs/python3-text-unidecode/template @@ -1,7 +1,7 @@ # Template file for 'python3-text-unidecode' pkgname=python3-text-unidecode version=1.3 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 0de1796266a2c92dc7628677b3802992bc07532e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:27 -0500 Subject: [PATCH 0420/1664] olm-python3: rebuild for Python 3.14 --- srcpkgs/olm-python3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/olm-python3/template b/srcpkgs/olm-python3/template index c11f441d37f9c3..8197b5bb7d0a81 100644 --- a/srcpkgs/olm-python3/template +++ b/srcpkgs/olm-python3/template @@ -1,7 +1,7 @@ # Template file for 'olm-python3' pkgname=olm-python3 version=3.2.16 -revision=2 +revision=3 build_wrksrc=python build_style=python3-module hostmakedepends="python3-setuptools python3-cffi" From dcfb695d11245c432601e38355a2afbe03828ee0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:27 -0500 Subject: [PATCH 0421/1664] python3-aiofiles: rebuild for Python 3.14 --- srcpkgs/python3-aiofiles/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-aiofiles/template b/srcpkgs/python3-aiofiles/template index 20c96623a72591..23c102d08035e6 100644 --- a/srcpkgs/python3-aiofiles/template +++ b/srcpkgs/python3-aiofiles/template @@ -1,7 +1,7 @@ # Template file for 'python3-aiofiles' pkgname=python3-aiofiles version=25.1.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3" From 57d1ee2b13d949a2cd3c062edeb12e18051bdcab Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:27 -0500 Subject: [PATCH 0422/1664] python3-aiohttp_socks: rebuild for Python 3.14 --- srcpkgs/python3-aiohttp_socks/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-aiohttp_socks/template b/srcpkgs/python3-aiohttp_socks/template index e77ec1e3f2780d..133f31c37d2d51 100644 --- a/srcpkgs/python3-aiohttp_socks/template +++ b/srcpkgs/python3-aiohttp_socks/template @@ -1,7 +1,7 @@ # Template file for 'python3-aiohttp_socks' pkgname=python3-aiohttp_socks version=0.8.4 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-aiohttp python3-socks" From ecaa44c44f71403121ab080350acf1770035f7a5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:27 -0500 Subject: [PATCH 0423/1664] python3-atomicwrites: rebuild for Python 3.14 --- srcpkgs/python3-atomicwrites/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-atomicwrites/template b/srcpkgs/python3-atomicwrites/template index dc14256fc0fc57..e2869b58ff881e 100644 --- a/srcpkgs/python3-atomicwrites/template +++ b/srcpkgs/python3-atomicwrites/template @@ -1,7 +1,7 @@ # Template file for 'python3-atomicwrites' pkgname=python3-atomicwrites version=1.4.1 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 759c2c59859560908aee26eb0a11387229ec47fb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:28 -0500 Subject: [PATCH 0424/1664] python3-peewee: rebuild for Python 3.14 --- srcpkgs/python3-peewee/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-peewee/template b/srcpkgs/python3-peewee/template index 669ce8207a6e28..4fece285a23c21 100644 --- a/srcpkgs/python3-peewee/template +++ b/srcpkgs/python3-peewee/template @@ -1,7 +1,7 @@ # Template file for 'python3-peewee' pkgname=python3-peewee version=3.18.3 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel python3-Cython" makedepends="python3-devel sqlite-devel" From d42771a6826b992df985861af11929a5b1ad524b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:28 -0500 Subject: [PATCH 0425/1664] python3-cssselect: rebuild for Python 3.14 --- srcpkgs/python3-cssselect/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cssselect/template b/srcpkgs/python3-cssselect/template index e9984b0abf06d6..75ec12d2da0691 100644 --- a/srcpkgs/python3-cssselect/template +++ b/srcpkgs/python3-cssselect/template @@ -1,7 +1,7 @@ # Template file for 'python3-cssselect' pkgname=python3-cssselect version=1.3.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3" From 7dc14a9e18e02afe2ba384a3d3c4f2ed5a1068d3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:28 -0500 Subject: [PATCH 0426/1664] python3-lxml_html_clean: rebuild for Python 3.14 --- srcpkgs/python3-lxml_html_clean/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-lxml_html_clean/template b/srcpkgs/python3-lxml_html_clean/template index e97a37f7255a14..9b22d38c71392a 100644 --- a/srcpkgs/python3-lxml_html_clean/template +++ b/srcpkgs/python3-lxml_html_clean/template @@ -1,7 +1,7 @@ # Template file for 'python3-lxml_html_clean' pkgname=python3-lxml_html_clean version=0.4.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3-lxml" From d0e8beb8bfd355014c3ae6b0e4a4cd3d1b66f63b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:28 -0500 Subject: [PATCH 0427/1664] python3-msgpack: rebuild for Python 3.14 --- srcpkgs/python3-msgpack/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-msgpack/template b/srcpkgs/python3-msgpack/template index 334b9e13395ca5..74dc920db76eea 100644 --- a/srcpkgs/python3-msgpack/template +++ b/srcpkgs/python3-msgpack/template @@ -2,7 +2,7 @@ # Please ensure this version works with 'borg' before bumping! pkgname=python3-msgpack version=1.1.2 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From f8478ca50afe24fd2a70b6539e74c6d03ee48ade Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:28 -0500 Subject: [PATCH 0428/1664] nemo: rebuild for Python 3.14 --- srcpkgs/nemo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nemo/template b/srcpkgs/nemo/template index 888cf748357e47..981ee6fcd54c24 100644 --- a/srcpkgs/nemo/template +++ b/srcpkgs/nemo/template @@ -1,7 +1,7 @@ # Template file for 'nemo' pkgname=nemo version=6.4.5 -revision=1 +revision=2 build_style=meson build_helper=gir pycompile_dirs="/usr/share/nemo/actions/myaction.py" From bac09d1984331925ec021f7688ab4cdd2d89e177 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:28 -0500 Subject: [PATCH 0429/1664] python3-serpent: rebuild for Python 3.14 --- srcpkgs/python3-serpent/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-serpent/template b/srcpkgs/python3-serpent/template index 63e10e3f9cc706..eeae95a5beae91 100644 --- a/srcpkgs/python3-serpent/template +++ b/srcpkgs/python3-serpent/template @@ -1,7 +1,7 @@ # Template file for 'python3-serpent' pkgname=python3-serpent version=1.41 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From fcf58c0139c941bc66b2691df8b1bc59656ff3b7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:28 -0500 Subject: [PATCH 0430/1664] gst1-python3: rebuild for Python 3.14 --- srcpkgs/gst1-python3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gst1-python3/template b/srcpkgs/gst1-python3/template index 9c74b78e837889..b9392c87fb3f70 100644 --- a/srcpkgs/gst1-python3/template +++ b/srcpkgs/gst1-python3/template @@ -1,7 +1,7 @@ # Template file for 'gst1-python3' pkgname=gst1-python3 version=1.26.5 -revision=1 +revision=2 build_style=meson hostmakedepends="pkg-config python3 python3-packaging-bootstrap" makedepends="libglib-devel python3-devel python3-gobject-devel gst-plugins-base1-devel From 60a4ec092c0b3f8ecb0687debca79ff0a7a719e4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:29 -0500 Subject: [PATCH 0431/1664] python3-pykka: rebuild for Python 3.14 --- srcpkgs/python3-pykka/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pykka/template b/srcpkgs/python3-pykka/template index b14b8985f05fcb..09730516633202 100644 --- a/srcpkgs/python3-pykka/template +++ b/srcpkgs/python3-pykka/template @@ -1,7 +1,7 @@ # Template file for 'python3-pykka' pkgname=python3-pykka version=2.0.2 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 36476cd04f0a15259cc78bde4f14b81ae0f90156 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:29 -0500 Subject: [PATCH 0432/1664] python3-url-normalize: rebuild for Python 3.14 --- srcpkgs/python3-url-normalize/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-url-normalize/template b/srcpkgs/python3-url-normalize/template index bc67ec661c64d8..4e8b7765a9a038 100644 --- a/srcpkgs/python3-url-normalize/template +++ b/srcpkgs/python3-url-normalize/template @@ -1,7 +1,7 @@ # Template file for 'python3-url-normalize' pkgname=python3-url-normalize version=2.2.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-setuptools_scm python3-wheel" depends="python3-idna" From ab43356b96412b799e666ffa73188e283d93c4c8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:29 -0500 Subject: [PATCH 0433/1664] python3-pylsqpack: rebuild for Python 3.14 --- srcpkgs/python3-pylsqpack/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pylsqpack/template b/srcpkgs/python3-pylsqpack/template index 739fd8f3377993..338b6209c0c328 100644 --- a/srcpkgs/python3-pylsqpack/template +++ b/srcpkgs/python3-pylsqpack/template @@ -1,7 +1,7 @@ # Template file for 'python3-pylsqpack' pkgname=python3-pylsqpack version=0.3.18 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" makedepends="python3-devel" From 05415aed5203cb239d70797cd26114d538c07886 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:29 -0500 Subject: [PATCH 0434/1664] libcap-ng: rebuild for Python 3.14 --- srcpkgs/libcap-ng/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libcap-ng/template b/srcpkgs/libcap-ng/template index b111c9d88780c1..853c3133570e3b 100644 --- a/srcpkgs/libcap-ng/template +++ b/srcpkgs/libcap-ng/template @@ -1,7 +1,7 @@ # Template file for 'libcap-ng' pkgname=libcap-ng version=0.8.5 -revision=2 +revision=3 build_style=gnu-configure configure_args="--without-python --without-python3" short_desc="Alternate POSIX capabilities library" From 099e5e33878ca78d3f7e6db3e5b4c7b8dd4f5779 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:29 -0500 Subject: [PATCH 0435/1664] python3-xdg: rebuild for Python 3.14 --- srcpkgs/python3-xdg/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-xdg/template b/srcpkgs/python3-xdg/template index dc0178037489ad..8d510b996053a1 100644 --- a/srcpkgs/python3-xdg/template +++ b/srcpkgs/python3-xdg/template @@ -1,7 +1,7 @@ # Template file for 'python3-xdg' pkgname=python3-xdg version=0.28 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From cb7aba26564a669fe182f73d4f332fdd589f64f9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:29 -0500 Subject: [PATCH 0436/1664] python3-txaio: rebuild for Python 3.14 --- srcpkgs/python3-txaio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-txaio/template b/srcpkgs/python3-txaio/template index fb883d071890a1..a528418edc3e61 100644 --- a/srcpkgs/python3-txaio/template +++ b/srcpkgs/python3-txaio/template @@ -1,7 +1,7 @@ # Template file for 'python3-txaio' pkgname=python3-txaio version=23.1.1 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 7b77553388f74f9ad6bb31eb6c5b93f689aca571 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:30 -0500 Subject: [PATCH 0437/1664] python3-hkdf: rebuild for Python 3.14 --- srcpkgs/python3-hkdf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-hkdf/template b/srcpkgs/python3-hkdf/template index 758fc60d97ae50..4bcbf84e3b5c96 100644 --- a/srcpkgs/python3-hkdf/template +++ b/srcpkgs/python3-hkdf/template @@ -1,7 +1,7 @@ # Template file for 'python3-hkdf' pkgname=python3-hkdf version=0.0.3 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3 python3-setuptools" depends="python3" From 15ce0be457bd0a250c20d0ca122f2b60096696d2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:30 -0500 Subject: [PATCH 0438/1664] libixion: rebuild for Python 3.14 --- srcpkgs/libixion/template | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/srcpkgs/libixion/template b/srcpkgs/libixion/template index 445977047ec6da..a98699935d15b2 100644 --- a/srcpkgs/libixion/template +++ b/srcpkgs/libixion/template @@ -1,7 +1,7 @@ # Template file for 'libixion' pkgname=libixion version=0.20.0 -revision=2 +revision=3 build_style=gnu-configure hostmakedepends="pkg-config python3 automake libtool" makedepends="boost-devel-minimal libboost_program_options libboost_filesystem @@ -16,6 +16,8 @@ distfiles="https://gitlab.com/ixion/ixion/-/archive/${version}/ixion-${version}. checksum=4a6c2c480ad40b706ecf459dfca03f39351e12b48911c7c4803b75c823a1bcb1 replaces="libixion11>=0" +export BOOST_ROOT="${XBPS_CROSS_BASE}/usr" + pre_configure() { autoreconf -fi } From ae3aac9e342d051936602c1d66b56643bf7aa2b6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:30 -0500 Subject: [PATCH 0439/1664] opencv: rebuild for Python 3.14 --- srcpkgs/opencv/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/opencv/template b/srcpkgs/opencv/template index 8b8587d37ea5ab..af369793136814 100644 --- a/srcpkgs/opencv/template +++ b/srcpkgs/opencv/template @@ -1,7 +1,7 @@ # Template file for 'opencv' pkgname=opencv version=4.12.0 -revision=1 +revision=2 create_wrksrc=yes build_wrksrc=${pkgname}-${version} build_style=cmake From 9878ed93fc52233ebab788ed8d67a4ce9baf9904 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:30 -0500 Subject: [PATCH 0440/1664] imath: rebuild for Python 3.14 --- srcpkgs/imath/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/imath/template b/srcpkgs/imath/template index a25fefda306717..2f3372a78301bc 100644 --- a/srcpkgs/imath/template +++ b/srcpkgs/imath/template @@ -1,7 +1,7 @@ # Template file for 'imath' pkgname=imath version=3.1.9 -revision=6 +revision=7 build_style=cmake configure_args="-DPYTHON=ON" hostmakedepends="python3-numpy" From 0396dcc0e3050dfd2f6858e2a0b2a85b1936a3d9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:30 -0500 Subject: [PATCH 0441/1664] kf6-kcoreaddons: rebuild for Python 3.14 --- srcpkgs/kf6-kcoreaddons/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kcoreaddons/template b/srcpkgs/kf6-kcoreaddons/template index a422ed9030fc53..7375e02625341a 100644 --- a/srcpkgs/kf6-kcoreaddons/template +++ b/srcpkgs/kf6-kcoreaddons/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kcoreaddons' pkgname=kf6-kcoreaddons version=6.19.0 -revision=1 +revision=2 build_style=cmake _llvmver=21 configure_args="-DKDE_INSTALL_QMLDIR=lib/qt6/qml From 045f53e5443b58ffeafb033750b2b43d21b73d42 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:30 -0500 Subject: [PATCH 0442/1664] kf6-kguiaddons: rebuild for Python 3.14 --- srcpkgs/kf6-kguiaddons/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kguiaddons/template b/srcpkgs/kf6-kguiaddons/template index f09be09164252c..1665407c072adc 100644 --- a/srcpkgs/kf6-kguiaddons/template +++ b/srcpkgs/kf6-kguiaddons/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kguiaddons' pkgname=kf6-kguiaddons version=6.19.0 -revision=1 +revision=2 build_style=cmake _llvmver=21 configure_args="-DKDE_INSTALL_QMLDIR=lib/qt6/qml From fa390ac232e68ad4c863d6a39f0898699156919e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:31 -0500 Subject: [PATCH 0443/1664] kf6-kwidgetsaddons: rebuild for Python 3.14 --- srcpkgs/kf6-kwidgetsaddons/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kwidgetsaddons/template b/srcpkgs/kf6-kwidgetsaddons/template index b922d64db5e60e..2ca77fd97186a8 100644 --- a/srcpkgs/kf6-kwidgetsaddons/template +++ b/srcpkgs/kf6-kwidgetsaddons/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kwidgetsaddons' pkgname=kf6-kwidgetsaddons version=6.19.0 -revision=1 +revision=2 _llvmver=21 build_style=cmake configure_args="-DBUILD_DESIGNERPLUGIN=ON -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins From ec1e5ae1f1cae17a64076a84c8b55c64a22ed858 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:31 -0500 Subject: [PATCH 0444/1664] python3-ldap3: rebuild for Python 3.14 --- srcpkgs/python3-ldap3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ldap3/template b/srcpkgs/python3-ldap3/template index 5023b8ae0b6f0c..9880fd750433b0 100644 --- a/srcpkgs/python3-ldap3/template +++ b/srcpkgs/python3-ldap3/template @@ -1,7 +1,7 @@ # Template file for 'python3-ldap3' pkgname=python3-ldap3 version=2.8.1 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pyasn1" From 611f2ab74e9b5060461a0c012faa1afa4db02deb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 25 Nov 2025 09:09:42 -0500 Subject: [PATCH 0445/1664] python3-pyroute2: rebuild for Python 3.14 --- srcpkgs/python3-pyroute2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyroute2/template b/srcpkgs/python3-pyroute2/template index 8341fb85f89978..2244cea18badbf 100644 --- a/srcpkgs/python3-pyroute2/template +++ b/srcpkgs/python3-pyroute2/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyroute2' pkgname=python3-pyroute2 version=0.9.5 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3-psutil" From 49d5c028b552db1a64a81884f7fd54a948622b66 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:31 -0500 Subject: [PATCH 0446/1664] python3-jaraco.logging: rebuild for Python 3.14 --- srcpkgs/python3-jaraco.logging/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jaraco.logging/template b/srcpkgs/python3-jaraco.logging/template index 8474dc4236f461..d2da48fa28ff87 100644 --- a/srcpkgs/python3-jaraco.logging/template +++ b/srcpkgs/python3-jaraco.logging/template @@ -1,7 +1,7 @@ # Template file for 'python3-jaraco.logging' pkgname=python3-jaraco.logging version=3.3.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" depends="python3-tempora" From 509e2b35a15c2d5c42b977c9e434b73b2bd9a036 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:31 -0500 Subject: [PATCH 0447/1664] python3-jaraco.stream: rebuild for Python 3.14 --- srcpkgs/python3-jaraco.stream/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jaraco.stream/template b/srcpkgs/python3-jaraco.stream/template index d42c0d765f1ea0..ea2fce199886bb 100644 --- a/srcpkgs/python3-jaraco.stream/template +++ b/srcpkgs/python3-jaraco.stream/template @@ -1,7 +1,7 @@ # Template file for 'python3-jaraco.stream' pkgname=python3-jaraco.stream version=3.0.4 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" depends="python3" From b62482db0da9a618486e67ac3678ef3343c7a2a2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:31 -0500 Subject: [PATCH 0448/1664] python3-magic: rebuild for Python 3.14 --- srcpkgs/python3-magic/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-magic/template b/srcpkgs/python3-magic/template index da804444dd3396..002eb87cf5bef7 100644 --- a/srcpkgs/python3-magic/template +++ b/srcpkgs/python3-magic/template @@ -1,7 +1,7 @@ # Template file for 'python3-magic' pkgname=python3-magic version=0.4.25 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="libmagic" From c6b12ab54c1ea621ef7665ec78de68e348e9d49f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:31 -0500 Subject: [PATCH 0449/1664] python3-filetype: rebuild for Python 3.14 --- srcpkgs/python3-filetype/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-filetype/template b/srcpkgs/python3-filetype/template index 9d79e58a854d60..a45acb4944878c 100644 --- a/srcpkgs/python3-filetype/template +++ b/srcpkgs/python3-filetype/template @@ -1,7 +1,7 @@ # Template file for 'python3-filetype' pkgname=python3-filetype version=1.2.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From be655c435f8a5f936ac26bfa693bf1c4ddc85dc0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:32 -0500 Subject: [PATCH 0450/1664] python3-pylast: rebuild for Python 3.14 --- srcpkgs/python3-pylast/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pylast/template b/srcpkgs/python3-pylast/template index 086859175c79cb..38db0ee3ed2a6b 100644 --- a/srcpkgs/python3-pylast/template +++ b/srcpkgs/python3-pylast/template @@ -1,7 +1,7 @@ # Template file for 'python3-pylast' pkgname=python3-pylast version=5.3.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3-httpx" From 19f9c7405e37328f55fb042536f7c3152babf79d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:32 -0500 Subject: [PATCH 0451/1664] SoapySDR: rebuild for Python 3.14 --- srcpkgs/SoapySDR/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/SoapySDR/template b/srcpkgs/SoapySDR/template index d2c71c9ce6f3cf..5ff4d2329ffa64 100644 --- a/srcpkgs/SoapySDR/template +++ b/srcpkgs/SoapySDR/template @@ -1,7 +1,7 @@ # Template file for 'SoapySDR' pkgname=SoapySDR version=0.8.1 -revision=4 +revision=5 build_style=cmake configure_args="-DPYTHON_EXECUTABLE=/usr/bin/python3" hostmakedepends="doxygen swig python3 python3-setuptools" From 9588e652366ebd5398424e3ca7fad316ceb4d0e2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:32 -0500 Subject: [PATCH 0452/1664] libiio: rebuild for Python 3.14 --- srcpkgs/libiio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libiio/template b/srcpkgs/libiio/template index 7030cf0dc3085f..a5f91d9a5e1fc6 100644 --- a/srcpkgs/libiio/template +++ b/srcpkgs/libiio/template @@ -1,7 +1,7 @@ # Template file for 'libiio' pkgname=libiio version=0.26 -revision=1 +revision=2 build_style=cmake configure_args="-DUDEV_RULES_INSTALL_DIR=/usr/lib/udev/rules.d -DWITH_DOC=YES -DWITH_SERIAL_BACKEND=YES -DHAVE_DNS_SD=YES -DPYTHON_BINDINGS=YES" From 925a1c878f4ed8bf7d280ccf9768056e75a7a1f3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:32 -0500 Subject: [PATCH 0453/1664] python3-pygccxml: rebuild for Python 3.14 --- srcpkgs/python3-pygccxml/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pygccxml/template b/srcpkgs/python3-pygccxml/template index 660d674e6a70d4..eea9f6055cc96a 100644 --- a/srcpkgs/python3-pygccxml/template +++ b/srcpkgs/python3-pygccxml/template @@ -1,7 +1,7 @@ # Template file for 'python3-pygccxml' pkgname=python3-pygccxml version=2.2.1 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools python3-Sphinx python3-sphinx_rtd_theme" depends="CastXML which" From dd24066af75c5b8ae8f418212a83c7787997e0a3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:32 -0500 Subject: [PATCH 0454/1664] python3-pyqtgraph: rebuild for Python 3.14 --- srcpkgs/python3-pyqtgraph/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyqtgraph/template b/srcpkgs/python3-pyqtgraph/template index 1a0877a0345eed..18cb959571e989 100644 --- a/srcpkgs/python3-pyqtgraph/template +++ b/srcpkgs/python3-pyqtgraph/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyqtgraph' pkgname=python3-pyqtgraph version=0.13.7 -revision=2 +revision=3 build_style=python3-module make_check_target="tests" make_install_args="--no-compile" From 23563cf9952e00b3fb27bf2dfa99af41b59c87a0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:32 -0500 Subject: [PATCH 0455/1664] volk: rebuild for Python 3.14 --- srcpkgs/volk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/volk/template b/srcpkgs/volk/template index 54d611bcfacc9b..0a55abfb95ad52 100644 --- a/srcpkgs/volk/template +++ b/srcpkgs/volk/template @@ -1,7 +1,7 @@ # Template file for 'volk' pkgname=volk version=3.1.2 -revision=2 +revision=3 _cpu_features_gitrev="188d0d3c383689cdb6bb70dc6da2469faec84f61" _sse2neon_ver=1.7.0 create_wrksrc=yes From 8c1e83bae9b9233641cae9c156b997e2eb877d95 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:33 -0500 Subject: [PATCH 0456/1664] keystone: rebuild for Python 3.14 --- srcpkgs/keystone/patches/cmake.patch | 86 ++++++++++++++++++++++++++++ srcpkgs/keystone/template | 6 +- 2 files changed, 89 insertions(+), 3 deletions(-) create mode 100644 srcpkgs/keystone/patches/cmake.patch diff --git a/srcpkgs/keystone/patches/cmake.patch b/srcpkgs/keystone/patches/cmake.patch new file mode 100644 index 00000000000000..a49cac2e19156e --- /dev/null +++ b/srcpkgs/keystone/patches/cmake.patch @@ -0,0 +1,86 @@ +diff -ur a/CMakeLists.txt b/CMakeLists.txt +--- a/CMakeLists.txt 2020-06-21 08:03:54.000000000 -0400 ++++ b/CMakeLists.txt 2025-11-17 15:28:20.983116846 -0500 +@@ -1,7 +1,7 @@ + # Keystone Assembler Engine (www.keystone-engine.org) + # By Nguyen Anh Quynh, 2016 + +-cmake_minimum_required(VERSION 2.8.7) ++cmake_minimum_required(VERSION 3.5) + project(keystone) + + set(KEYSTONE_VERSION_MAJOR 0) +@@ -18,15 +18,6 @@ + cmake_policy(SET CMP0022 NEW) # automatic when 2.8.12 is required + endif() + +-if (POLICY CMP0051) +- # CMake 3.1 and higher include generator expressions of the form +- # $ in the SOURCES property. These need to be +- # stripped everywhere that access the SOURCES property, so we just +- # defer to the OLD behavior of not including generator expressions +- # in the output for now. +- cmake_policy(SET CMP0051 OLD) +-endif() +- + if (POLICY CMP0063) + set(CMAKE_POLICY_DEFAULT_CMP0063 NEW) # automatic when 3.3.2 is required + endif() +@@ -115,4 +106,4 @@ + add_custom_target(uninstall + COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/CMakeUninstall.cmake) + +-add_subdirectory(suite/fuzz) +\ No newline at end of file ++add_subdirectory(suite/fuzz) +diff -ur a/kstool/CMakeLists.txt b/kstool/CMakeLists.txt +--- a/kstool/CMakeLists.txt 2020-06-21 08:03:54.000000000 -0400 ++++ b/kstool/CMakeLists.txt 2025-11-17 15:29:10.257260358 -0500 +@@ -1,7 +1,7 @@ + # Kstool for Keystone assembler engine. + # By Nguyen Anh Quynh, 2016 + +-cmake_minimum_required(VERSION 2.8) ++cmake_minimum_required(VERSION 3.5) + + project(kstool) + +diff -ur a/llvm/CMakeLists.txt b/llvm/CMakeLists.txt +--- a/llvm/CMakeLists.txt 2020-06-21 08:03:54.000000000 -0400 ++++ b/llvm/CMakeLists.txt 2025-11-17 15:28:26.375132550 -0500 +@@ -1,6 +1,6 @@ + # See docs/CMake.html for instructions about how to build LLVM with CMake. + +-cmake_minimum_required(VERSION 2.8.7) ++cmake_minimum_required(VERSION 3.5) + + set(LLVM_INSTALL_TOOLCHAIN_ONLY ON) + +@@ -13,15 +13,6 @@ + cmake_policy(SET CMP0022 NEW) # automatic when 2.8.12 is required + endif() + +-if (POLICY CMP0051) +- # CMake 3.1 and higher include generator expressions of the form +- # $ in the SOURCES property. These need to be +- # stripped everywhere that access the SOURCES property, so we just +- # defer to the OLD behavior of not including generator expressions +- # in the output for now. +- cmake_policy(SET CMP0051 OLD) +-endif() +- + if(CMAKE_VERSION VERSION_LESS 3.1.20141117) + set(cmake_3_2_USES_TERMINAL) + else() +diff -ur a/samples/CMakeLists.txt b/samples/CMakeLists.txt +--- a/samples/CMakeLists.txt 2020-06-21 08:03:54.000000000 -0400 ++++ b/samples/CMakeLists.txt 2025-11-17 15:29:18.207283512 -0500 +@@ -5,7 +5,7 @@ + # For Windows, be sure to copy keystone.dll or keystone.lib + # to this directory before compiling + +-cmake_minimum_required(VERSION 2.8) ++cmake_minimum_required(VERSION 3.5) + + project(sample) + diff --git a/srcpkgs/keystone/template b/srcpkgs/keystone/template index 06d55e251c1293..bfefed1063a5e6 100644 --- a/srcpkgs/keystone/template +++ b/srcpkgs/keystone/template @@ -1,10 +1,10 @@ # Template file for 'keystone' pkgname=keystone version=0.9.2 -revision=6 +revision=7 build_style=cmake -configure_args='-DBUILD_SHARED_LIBS=ON -DLLVM_TARGETS_TO_BUILD=all' -hostmakedepends="python3-setuptools" +configure_args="-DBUILD_SHARED_LIBS=ON -DLLVM_TARGETS_TO_BUILD=all" +hostmakedepends="python3-setuptools pkg-config" makedepends="python3-devel" short_desc="Lightweight multi-platform, multi-architecture assembler framework" maintainer="Orphaned " From a8fd3c257a9abc4f302917e7ed41ae34c8b9135d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:33 -0500 Subject: [PATCH 0457/1664] python3-filebytes: rebuild for Python 3.14 --- .../patches/fix-version-detection.patch | 26 +++++++++++++++++++ srcpkgs/python3-filebytes/template | 6 ++++- 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/python3-filebytes/patches/fix-version-detection.patch diff --git a/srcpkgs/python3-filebytes/patches/fix-version-detection.patch b/srcpkgs/python3-filebytes/patches/fix-version-detection.patch new file mode 100644 index 00000000000000..67ca8dbba3a53c --- /dev/null +++ b/srcpkgs/python3-filebytes/patches/fix-version-detection.patch @@ -0,0 +1,26 @@ +--- ./setup.py.orig 2025-11-17 12:04:02.690894768 -0500 ++++ ./setup.py 2025-11-17 12:04:31.274969247 -0500 +@@ -1,22 +1,2 @@ + from setuptools import setup +-import ast +-import os +-currentDir = os.path.dirname(os.path.abspath(__file__)) +-#currentDir = Path(__file__).parent +- +-def extractMetaInfo(src): +- info = {} +- a=ast.parse(src) +- for e in a.body: +- if isinstance(e, ast.Assign) and isinstance(e.value, ast.Str): +- info[e.targets[0].id] = e.value.s +- return info +- +-text = '' +-with open(currentDir +os.path.sep+"filebytes"+ os.path.sep+"__init__.py") as f: +- text = f.read() +- +-version = extractMetaInfo(text)["VERSION"] +- +- +-setup(version=version) ++setup(version='@@VERSION@@') diff --git a/srcpkgs/python3-filebytes/template b/srcpkgs/python3-filebytes/template index cf0e3484367e9b..8082af7d920eb4 100644 --- a/srcpkgs/python3-filebytes/template +++ b/srcpkgs/python3-filebytes/template @@ -1,7 +1,7 @@ # Template file for 'python3-filebytes' pkgname=python3-filebytes version=0.10.2 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" @@ -12,6 +12,10 @@ homepage="https://scoding.de/filebytes-introduction" distfiles="https://github.com/sashs/filebytes/archive/v${version}.tar.gz" checksum=6a22a6cec9065c96143f7e3acb0acaffd5eb0d2419749361cb73e40d7e10c2d4 +post_patch() { + vsed -e "s/@@VERSION@@/${version}/" -i setup.py +} + post_install() { vlicense COPYING } From a3c6a17c14c7be9e3cd373e7c45287c18d4c0686 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:33 -0500 Subject: [PATCH 0458/1664] python3-precis-i18n: rebuild for Python 3.14 --- srcpkgs/python3-precis-i18n/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-precis-i18n/template b/srcpkgs/python3-precis-i18n/template index d58520af9a9b32..aa3158cbd51c42 100644 --- a/srcpkgs/python3-precis-i18n/template +++ b/srcpkgs/python3-precis-i18n/template @@ -1,7 +1,7 @@ # Template file for 'python3-precis-i18n' pkgname=python3-precis-i18n version=1.1.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 22a7cc2ef71ee2c50a2ca26588efb41e57e43890 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:33 -0500 Subject: [PATCH 0459/1664] python3-gitdb: rebuild for Python 3.14 --- srcpkgs/python3-gitdb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-gitdb/template b/srcpkgs/python3-gitdb/template index c84ed4931ba681..65ba28ece20df8 100644 --- a/srcpkgs/python3-gitdb/template +++ b/srcpkgs/python3-gitdb/template @@ -1,7 +1,7 @@ # Template file for 'python3-gitdb' pkgname=python3-gitdb version=4.0.10 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-smmap" From 9907876ed227f4d66049d71b9cab89086130679a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:33 -0500 Subject: [PATCH 0460/1664] python3-bottle: rebuild for Python 3.14 --- srcpkgs/python3-bottle/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-bottle/template b/srcpkgs/python3-bottle/template index 760bd0e80cc822..311acd6beb509c 100644 --- a/srcpkgs/python3-bottle/template +++ b/srcpkgs/python3-bottle/template @@ -1,7 +1,7 @@ # Template file for 'python3-bottle' pkgname=python3-bottle version=0.13.2 -revision=1 +revision=2 build_style=python3-module make_check_args="--deselect test/test_sendfile.py::TestSendFile::test_invalid" hostmakedepends="python3-setuptools" From dc352a13f2f8b13668aa3f8e8db459583637edc7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:33 -0500 Subject: [PATCH 0461/1664] python3-google-api-python-client: rebuild for Python 3.14 --- srcpkgs/python3-google-api-python-client/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-google-api-python-client/template b/srcpkgs/python3-google-api-python-client/template index 19c64dc342c6bf..8a50dda7866764 100644 --- a/srcpkgs/python3-google-api-python-client/template +++ b/srcpkgs/python3-google-api-python-client/template @@ -1,7 +1,7 @@ # Template file for 'python3-google-api-python-client' pkgname=python3-google-api-python-client version=2.80.0 -revision=3 +revision=4 build_style=python3-module make_check_args="--deselect=tests/test__helpers.py::PositionalTests::test_usage --deselect=tests/test_discovery.py::DiscoveryErrors::test_tests_should_be_run_with_strict_positional_enforcement" From 8e9ac5355936bcd252abfbc68e75016928611473 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:34 -0500 Subject: [PATCH 0462/1664] kf6-knotifications: rebuild for Python 3.14 --- srcpkgs/kf6-knotifications/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-knotifications/template b/srcpkgs/kf6-knotifications/template index 271293bfbc0434..87d681a180aefa 100644 --- a/srcpkgs/kf6-knotifications/template +++ b/srcpkgs/kf6-knotifications/template @@ -1,7 +1,7 @@ # Template file for 'kf6-knotifications' pkgname=kf6-knotifications version=6.19.0 -revision=1 +revision=2 build_style=cmake _llvmver=21 configure_args="-DKDE_INSTALL_QMLDIR=lib/qt6/qml From 499dc80fe54fd5c0d36aa8cddc10d371a7167bbf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:34 -0500 Subject: [PATCH 0463/1664] python3-pyasyncore: rebuild for Python 3.14 --- srcpkgs/python3-pyasyncore/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyasyncore/template b/srcpkgs/python3-pyasyncore/template index 2ef8423567eae9..1c464902b209f5 100644 --- a/srcpkgs/python3-pyasyncore/template +++ b/srcpkgs/python3-pyasyncore/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyasyncore' pkgname=python3-pyasyncore version=1.0.2 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From e7c7d44380a576c012f7ceddc443306a2361ab33 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:34 -0500 Subject: [PATCH 0464/1664] python3-WTForms: rebuild for Python 3.14 --- srcpkgs/python3-WTForms/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-WTForms/template b/srcpkgs/python3-WTForms/template index 2680b367351755..9f20afed6f7f1b 100644 --- a/srcpkgs/python3-WTForms/template +++ b/srcpkgs/python3-WTForms/template @@ -1,7 +1,7 @@ # Template file for 'python3-WTForms' pkgname=python3-WTForms version=3.1.2 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools hatchling python3-Babel" depends="python3 python3-MarkupSafe python3-email-validator" From 6a888483f51152d6d0ff4193b873bbba21ebc37d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:34 -0500 Subject: [PATCH 0465/1664] python3-appdirs: rebuild for Python 3.14 --- srcpkgs/python3-appdirs/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-appdirs/template b/srcpkgs/python3-appdirs/template index cea8dfbdd77f13..87226725cd3bb4 100644 --- a/srcpkgs/python3-appdirs/template +++ b/srcpkgs/python3-appdirs/template @@ -1,7 +1,7 @@ # Template file for 'python3-appdirs' pkgname=python3-appdirs version=1.4.4 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 58b44352e16469ec1bbe1826538be5b38b6c1743 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:34 -0500 Subject: [PATCH 0466/1664] python3-asn1crypto: rebuild for Python 3.14 --- srcpkgs/python3-asn1crypto/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-asn1crypto/template b/srcpkgs/python3-asn1crypto/template index ce1a3fe4a8f9b2..52247005539058 100644 --- a/srcpkgs/python3-asn1crypto/template +++ b/srcpkgs/python3-asn1crypto/template @@ -1,7 +1,7 @@ # Template file for 'python3-asn1crypto' pkgname=python3-asn1crypto version=1.4.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 551cf0b245311277b508028ceee0a6c29fae7e3e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:34 -0500 Subject: [PATCH 0467/1664] python3-furl: rebuild for Python 3.14 --- srcpkgs/python3-furl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-furl/template b/srcpkgs/python3-furl/template index 88019b997fc800..2db41b3a60ac5a 100644 --- a/srcpkgs/python3-furl/template +++ b/srcpkgs/python3-furl/template @@ -1,7 +1,7 @@ # Template file for 'python3-furl' pkgname=python3-furl version=2.1.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-six python3-orderedmultidict" From 5d773196ef3342a3b8b7a7239d02dfe4d657da4b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:35 -0500 Subject: [PATCH 0468/1664] python3-py: rebuild for Python 3.14 --- srcpkgs/python3-py/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-py/template b/srcpkgs/python3-py/template index 52d243f2efea2a..056a4693054acb 100644 --- a/srcpkgs/python3-py/template +++ b/srcpkgs/python3-py/template @@ -1,7 +1,7 @@ # Template file for 'python3-py' pkgname=python3-py version=1.11.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3" From a912a2c84c2a18f3d40a72e42393d25ba554bf24 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:35 -0500 Subject: [PATCH 0469/1664] python3-scrypt: rebuild for Python 3.14 --- srcpkgs/python3-scrypt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-scrypt/template b/srcpkgs/python3-scrypt/template index a6439c27b14152..1d9e249b078bc2 100644 --- a/srcpkgs/python3-scrypt/template +++ b/srcpkgs/python3-scrypt/template @@ -1,7 +1,7 @@ # Template file for 'python3-scrypt' pkgname=python3-scrypt version=0.8.17 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel openssl-devel" From 1ad25e54ceb37ffafb086e620bdb41d31e58627d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:35 -0500 Subject: [PATCH 0470/1664] python3-vobject: rebuild for Python 3.14 --- srcpkgs/python3-vobject/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-vobject/template b/srcpkgs/python3-vobject/template index f8672757cb96da..b3eee7f7eb32aa 100644 --- a/srcpkgs/python3-vobject/template +++ b/srcpkgs/python3-vobject/template @@ -1,7 +1,7 @@ # Template file for 'python3-vobject' pkgname=python3-vobject version=0.9.6.1 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-dateutil python3-six" From ac0ad57b90b476863a7c292b05557804a856d80f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:35 -0500 Subject: [PATCH 0471/1664] python3-passlib: rebuild for Python 3.14 --- srcpkgs/python3-passlib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-passlib/template b/srcpkgs/python3-passlib/template index bb578b52f190c0..cd8ec1213bb9a3 100644 --- a/srcpkgs/python3-passlib/template +++ b/srcpkgs/python3-passlib/template @@ -1,7 +1,7 @@ # Template file for 'python3-passlib' pkgname=python3-passlib version=1.7.4 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 68048254ff3e8f57cb127338d8ca48f14503b324 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:35 -0500 Subject: [PATCH 0472/1664] python3-pika: rebuild for Python 3.14 --- srcpkgs/python3-pika/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pika/template b/srcpkgs/python3-pika/template index e9946e0a25cde8..5eaf4e7612828e 100644 --- a/srcpkgs/python3-pika/template +++ b/srcpkgs/python3-pika/template @@ -1,7 +1,7 @@ # Template file for 'python3-pika' pkgname=python3-pika version=1.3.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3" From 8be269e3687a669f1586e1a3c24fb01b6b37aee0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:35 -0500 Subject: [PATCH 0473/1664] python3-bitarray: rebuild for Python 3.14 --- srcpkgs/python3-bitarray/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-bitarray/template b/srcpkgs/python3-bitarray/template index c0aedc648cdc7f..5ee45d643ae3d4 100644 --- a/srcpkgs/python3-bitarray/template +++ b/srcpkgs/python3-bitarray/template @@ -1,7 +1,7 @@ # Template file for 'python3-bitarray' pkgname=python3-bitarray version=2.9.2 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel libcurl-devel" From 8f62a3393e127c2e88f1fbee6ed6fda04c2a62c1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:36 -0500 Subject: [PATCH 0474/1664] python3-PyBrowserID: rebuild for Python 3.14 --- srcpkgs/python3-PyBrowserID/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-PyBrowserID/template b/srcpkgs/python3-PyBrowserID/template index a20dbbd1c854aa..3d543cf72b2412 100644 --- a/srcpkgs/python3-PyBrowserID/template +++ b/srcpkgs/python3-PyBrowserID/template @@ -1,7 +1,7 @@ # Template file for 'python3-PyBrowserID' pkgname=python3-PyBrowserID version=0.14.0 -revision=8 +revision=9 build_style=python3-module pycompile_module="browserid" hostmakedepends="python3-setuptools" From 94d8c1628f788c380e239ee8032cc644c6ce034e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:36 -0500 Subject: [PATCH 0475/1664] python3-hawkauthlib: rebuild for Python 3.14 --- srcpkgs/python3-hawkauthlib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-hawkauthlib/template b/srcpkgs/python3-hawkauthlib/template index f222602af95e3f..b4dcd9952b4d3b 100644 --- a/srcpkgs/python3-hawkauthlib/template +++ b/srcpkgs/python3-hawkauthlib/template @@ -1,7 +1,7 @@ # Template file for 'python3-hawkauthlib' pkgname=python3-hawkauthlib version=2.0.0 -revision=8 +revision=9 build_style=python3-module pycompile_module="hawkauthlib" hostmakedepends="python3-setuptools" From 474cf227ba04bc5d1ce090dd613c7d364d2bbe6c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:36 -0500 Subject: [PATCH 0476/1664] electrum-ecc: rebuild for Python 3.14 --- srcpkgs/electrum-ecc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/electrum-ecc/template b/srcpkgs/electrum-ecc/template index e82451811612a3..2a2a8567d2b349 100644 --- a/srcpkgs/electrum-ecc/template +++ b/srcpkgs/electrum-ecc/template @@ -1,7 +1,7 @@ # Template file for 'electrum-ecc' pkgname=electrum-ecc version=0.0.6 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" makedepends="python3-devel libsecp256k1-devel" From 935d60ed82f96f216d1d715033b919c12cab4d85 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:36 -0500 Subject: [PATCH 0477/1664] python3-aiorpcx: rebuild for Python 3.14 --- srcpkgs/python3-aiorpcx/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-aiorpcx/template b/srcpkgs/python3-aiorpcx/template index 62ca3abe18ccc4..db2f3c283909e0 100644 --- a/srcpkgs/python3-aiorpcx/template +++ b/srcpkgs/python3-aiorpcx/template @@ -1,7 +1,7 @@ # Template file for 'python3-aiorpcx' pkgname=python3-aiorpcx version=0.25.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-attrs" From f4f0f2296a8a5ae59d110703ee8301547ccd46c1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:36 -0500 Subject: [PATCH 0478/1664] python3-jsonpointer: rebuild for Python 3.14 --- srcpkgs/python3-jsonpointer/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jsonpointer/template b/srcpkgs/python3-jsonpointer/template index 428316bf740944..2ccbd354dc69ef 100644 --- a/srcpkgs/python3-jsonpointer/template +++ b/srcpkgs/python3-jsonpointer/template @@ -1,7 +1,7 @@ # Template file for 'python3-jsonpointer' pkgname=python3-jsonpointer version=3.0.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 10341ba9727cd1863e9bfb20c1a77f217b722417 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:36 -0500 Subject: [PATCH 0479/1664] python3-pypandoc: rebuild for Python 3.14 --- srcpkgs/python3-pypandoc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pypandoc/template b/srcpkgs/python3-pypandoc/template index 7afe0ed1e8f9f1..0ae627d7e06948 100644 --- a/srcpkgs/python3-pypandoc/template +++ b/srcpkgs/python3-pypandoc/template @@ -1,7 +1,7 @@ # Template file for 'python3-pypandoc' pkgname=python3-pypandoc version=1.6.4 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="pandoc python3" From 540c5245c3e539f89c06a33e138bc2c4192483c3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:37 -0500 Subject: [PATCH 0480/1664] gtk-doc: rebuild for Python 3.14 --- srcpkgs/gtk-doc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gtk-doc/template b/srcpkgs/gtk-doc/template index e4401d70971cc3..504239cb6a19cf 100644 --- a/srcpkgs/gtk-doc/template +++ b/srcpkgs/gtk-doc/template @@ -1,7 +1,7 @@ # Template file for 'gtk-doc' pkgname=gtk-doc version=1.34.0 -revision=2 +revision=3 build_style=meson # disable tests to avoid cyclic dependency on glib configure_args="-Dtests=false" From 87f453eb55aaef80c8a5dd61ebc4b53cf5cbe628 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:37 -0500 Subject: [PATCH 0481/1664] python3-lsprotocol: rebuild for Python 3.14 --- srcpkgs/python3-lsprotocol/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-lsprotocol/template b/srcpkgs/python3-lsprotocol/template index e48355e5ef1bff..bf3d13782e2d77 100644 --- a/srcpkgs/python3-lsprotocol/template +++ b/srcpkgs/python3-lsprotocol/template @@ -1,7 +1,7 @@ # Template file for 'python3-lsprotocol' pkgname=python3-lsprotocol version=2023.0.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel python3-flit_core" depends="python3-attrs python3-cattrs" From f74de15649dfa1ae43b9bcea9d14b23a21c3e4b3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:37 -0500 Subject: [PATCH 0482/1664] python3-atspi: rebuild for Python 3.14 --- srcpkgs/python3-atspi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-atspi/template b/srcpkgs/python3-atspi/template index 4a46169b0c17ef..0c7a5133397509 100644 --- a/srcpkgs/python3-atspi/template +++ b/srcpkgs/python3-atspi/template @@ -1,7 +1,7 @@ # Template file for 'python3-atspi' pkgname=python3-atspi version=2.38.0 -revision=7 +revision=8 build_style=gnu-configure hostmakedepends="pkg-config python3" makedepends="at-spi2-core-devel python3-gobject-devel" From bbb462e50bee25d1d18161f65472fd8a1fa5b7eb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:37 -0500 Subject: [PATCH 0483/1664] python3-setproctitle: rebuild for Python 3.14 --- srcpkgs/python3-setproctitle/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-setproctitle/template b/srcpkgs/python3-setproctitle/template index ce2dbee76d4c98..00f78aedf3dafd 100644 --- a/srcpkgs/python3-setproctitle/template +++ b/srcpkgs/python3-setproctitle/template @@ -1,7 +1,7 @@ # Template file for 'python3-setproctitle' pkgname=python3-setproctitle version=1.3.3 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From 26649d32e461000aa36a1fc02258f16de81a412b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:37 -0500 Subject: [PATCH 0484/1664] python3-xapp: rebuild for Python 3.14 --- srcpkgs/python3-xapp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-xapp/template b/srcpkgs/python3-xapp/template index 0c5b879904b6fc..74a177f25cde79 100644 --- a/srcpkgs/python3-xapp/template +++ b/srcpkgs/python3-xapp/template @@ -1,7 +1,7 @@ # Template file for 'python3-xapp' pkgname=python3-xapp version=2.4.2 -revision=1 +revision=2 build_style=meson hostmakedepends="python3 python3-packaging-bootstrap" depends="python3 python3-psutil xapps" From 14eab10d52501013f3afc3417d33842d23545249 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:37 -0500 Subject: [PATCH 0485/1664] python3-ConfigArgParse: rebuild for Python 3.14 --- srcpkgs/python3-ConfigArgParse/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ConfigArgParse/template b/srcpkgs/python3-ConfigArgParse/template index a07362a6a747a4..dfa1913b23964d 100644 --- a/srcpkgs/python3-ConfigArgParse/template +++ b/srcpkgs/python3-ConfigArgParse/template @@ -1,7 +1,7 @@ # Template file for 'python3-ConfigArgParse' pkgname=python3-ConfigArgParse version=1.7 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 781c685063bd465e9809d556e679e271b1c8a45e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:38 -0500 Subject: [PATCH 0486/1664] python3-acme: rebuild for Python 3.14 --- srcpkgs/python3-acme/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-acme/template b/srcpkgs/python3-acme/template index 80438f7b0083a5..83b0183ef9c14b 100644 --- a/srcpkgs/python3-acme/template +++ b/srcpkgs/python3-acme/template @@ -1,7 +1,7 @@ # Template file for 'python3-acme' pkgname=python3-acme version=5.1.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-setuptools python3-wheel" depends="python3-cryptography python3-openssl python3-pyrfc3339 From 0f3687ee406c91d1e6968ac1de9ebe594775fd8c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:38 -0500 Subject: [PATCH 0487/1664] python3-parsedatetime: rebuild for Python 3.14 --- srcpkgs/python3-parsedatetime/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-parsedatetime/template b/srcpkgs/python3-parsedatetime/template index 531d3869a4af97..a574cea65ca683 100644 --- a/srcpkgs/python3-parsedatetime/template +++ b/srcpkgs/python3-parsedatetime/template @@ -1,7 +1,7 @@ # Template file for 'python3-parsedatetime' pkgname=python3-parsedatetime version=2.6 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-future" From 43bb6071a945f812393ebe5a1109c9128f5af3b6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:38 -0500 Subject: [PATCH 0488/1664] python3-gevent: rebuild for Python 3.14 --- srcpkgs/python3-gevent/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-gevent/template b/srcpkgs/python3-gevent/template index 84980d8acafd80..f986962edcd82e 100644 --- a/srcpkgs/python3-gevent/template +++ b/srcpkgs/python3-gevent/template @@ -1,7 +1,7 @@ # Template file for 'python3-gevent' pkgname=python3-gevent version=24.11.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" makedepends="python3-devel libev-devel libuv-devel c-ares-devel python3-greenlet-devel" From 9e76c1152aa03b205b2b2dd95eecd9638f771a67 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:38 -0500 Subject: [PATCH 0489/1664] python3-feedparser: rebuild for Python 3.14 --- srcpkgs/python3-feedparser/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-feedparser/template b/srcpkgs/python3-feedparser/template index 14c90f19d80acf..b38b027aa1b7d2 100644 --- a/srcpkgs/python3-feedparser/template +++ b/srcpkgs/python3-feedparser/template @@ -1,7 +1,7 @@ # Template file for 'python3-feedparser' pkgname=python3-feedparser version=6.0.11 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-sgmllib python3-requests" From 0d35f8b75cfa00ff16c4f8811febcfa4c1a0ad44 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:38 -0500 Subject: [PATCH 0490/1664] python3-inflate64: rebuild for Python 3.14 --- srcpkgs/python3-inflate64/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-inflate64/template b/srcpkgs/python3-inflate64/template index 0fc3cca24586f7..932993f47fa048 100644 --- a/srcpkgs/python3-inflate64/template +++ b/srcpkgs/python3-inflate64/template @@ -1,7 +1,7 @@ # Template file for 'python3-inflate64' pkgname=python3-inflate64 version=1.0.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools_scm" makedepends="python3-devel" From ebb5893dc50647d014f88f3c22a45acd47b07bae Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:38 -0500 Subject: [PATCH 0491/1664] python3-multivolumefile: rebuild for Python 3.14 --- srcpkgs/python3-multivolumefile/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-multivolumefile/template b/srcpkgs/python3-multivolumefile/template index a11b75bdbfa8c2..8bf7decd46340b 100644 --- a/srcpkgs/python3-multivolumefile/template +++ b/srcpkgs/python3-multivolumefile/template @@ -1,7 +1,7 @@ # Template file for 'python3-multivolumefile' pkgname=python3-multivolumefile version=0.2.3 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3" From bced6e7bcf274a24598fc9fe4b515d8c334eacd7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:39 -0500 Subject: [PATCH 0492/1664] python3-pybcj: rebuild for Python 3.14 --- srcpkgs/python3-pybcj/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pybcj/template b/srcpkgs/python3-pybcj/template index 90729cc86ab521..b33503b6e937cd 100644 --- a/srcpkgs/python3-pybcj/template +++ b/srcpkgs/python3-pybcj/template @@ -1,7 +1,7 @@ # Template file for 'python3-pybcj' pkgname=python3-pybcj version=1.0.6 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools_scm" makedepends="python3-devel" From f5f922c933d4c3d08c2feb14d44a083df6701250 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:39 -0500 Subject: [PATCH 0493/1664] python3-pyppmd: rebuild for Python 3.14 --- srcpkgs/python3-pyppmd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyppmd/template b/srcpkgs/python3-pyppmd/template index 53a0a6811b2700..7d8f84aae07046 100644 --- a/srcpkgs/python3-pyppmd/template +++ b/srcpkgs/python3-pyppmd/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyppmd' pkgname=python3-pyppmd version=1.2.0 -revision=1 +revision=2 build_style=python3-module make_check_args="--noconftest --ignore=tests/test_benchmark.py" hostmakedepends="python3-setuptools_scm" From 7054af814253c4646911221574dd744be98613e7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:39 -0500 Subject: [PATCH 0494/1664] python3-pyzstd: rebuild for Python 3.14 --- srcpkgs/python3-pyzstd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyzstd/template b/srcpkgs/python3-pyzstd/template index 7038468d18dad6..f7cd3a2a9e4e49 100644 --- a/srcpkgs/python3-pyzstd/template +++ b/srcpkgs/python3-pyzstd/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyzstd' pkgname=python3-pyzstd version=0.16.2 -revision=1 +revision=2 build_style=python3-module make_build_args="--dynamic-link-zstd" hostmakedepends="python3-setuptools" From 8e020691af46ab3372db88b3717bbb28a895fc23 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:39 -0500 Subject: [PATCH 0495/1664] python3-texttable: rebuild for Python 3.14 --- srcpkgs/python3-texttable/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-texttable/template b/srcpkgs/python3-texttable/template index 97225fb1e042d3..1456a007fd4924 100644 --- a/srcpkgs/python3-texttable/template +++ b/srcpkgs/python3-texttable/template @@ -1,7 +1,7 @@ # Template file for 'python3-texttable' pkgname=python3-texttable version=1.6.4 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 125da0e129b5a8b50aa490ec3f786b279dcbbb6d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:39 -0500 Subject: [PATCH 0496/1664] python3-jaconv: rebuild for Python 3.14 --- srcpkgs/python3-jaconv/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jaconv/template b/srcpkgs/python3-jaconv/template index f6b0f9b9457fa5..1cab52b4cce39d 100644 --- a/srcpkgs/python3-jaconv/template +++ b/srcpkgs/python3-jaconv/template @@ -1,7 +1,7 @@ # Template file for 'python3-jaconv' pkgname=python3-jaconv version=0.4.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 639420f2629b4dd9b54e8f762154a2de1fea9994 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:39 -0500 Subject: [PATCH 0497/1664] python3-rdflib: rebuild for Python 3.14 --- srcpkgs/python3-rdflib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-rdflib/template b/srcpkgs/python3-rdflib/template index 1807983a4893df..3e1358fdb58126 100644 --- a/srcpkgs/python3-rdflib/template +++ b/srcpkgs/python3-rdflib/template @@ -1,7 +1,7 @@ # Template file for 'python3-rdflib' pkgname=python3-rdflib version=6.2.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-setuptools python3-isodate python3-parsing" From b1c85a808cd6d0253c8ef606f7b96444cf87a7c5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:39 -0500 Subject: [PATCH 0498/1664] python3-xlib: rebuild for Python 3.14 --- srcpkgs/python3-xlib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-xlib/template b/srcpkgs/python3-xlib/template index 8a3c17c24272c2..00aa2bbf311607 100644 --- a/srcpkgs/python3-xlib/template +++ b/srcpkgs/python3-xlib/template @@ -1,7 +1,7 @@ # Template file for 'python3-xlib' pkgname=python3-xlib version=0.33 -revision=3 +revision=4 build_style=python3-module make_check_target="test" hostmakedepends="python3-setuptools_scm" From 7ee47c093160b8702a3821211c049d97158d5d94 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:40 -0500 Subject: [PATCH 0499/1664] python3-pyfuse3: rebuild for Python 3.14 --- srcpkgs/python3-pyfuse3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyfuse3/template b/srcpkgs/python3-pyfuse3/template index 81bcc8a6a0288e..70dd9dbd8f9512 100644 --- a/srcpkgs/python3-pyfuse3/template +++ b/srcpkgs/python3-pyfuse3/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyfuse3' pkgname=python3-pyfuse3 version=3.4.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="pkg-config python3-setuptools" makedepends="fuse3-devel python3-devel" From bde56877851145e0070c4d76125509d6fef79487 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:40 -0500 Subject: [PATCH 0500/1664] python3-Arrow: rebuild for Python 3.14 --- srcpkgs/python3-Arrow/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Arrow/template b/srcpkgs/python3-Arrow/template index 4239c2cfe4d54a..143653669120bc 100644 --- a/srcpkgs/python3-Arrow/template +++ b/srcpkgs/python3-Arrow/template @@ -1,7 +1,7 @@ # Template file for 'python3-Arrow' pkgname=python3-Arrow version=1.2.3 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-dateutil" From 010403de9a2c0fc4853430d91f33beb3b0d3967d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:40 -0500 Subject: [PATCH 0501/1664] python3-logfury: rebuild for Python 3.14 --- srcpkgs/python3-logfury/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-logfury/template b/srcpkgs/python3-logfury/template index 34ca425008cfda..bbf14c5a91064b 100644 --- a/srcpkgs/python3-logfury/template +++ b/srcpkgs/python3-logfury/template @@ -1,7 +1,7 @@ # Template file for 'python3-logfury' pkgname=python3-logfury version=1.0.1 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3" From 5aa3cfe3feba8e0e465598911da368a067870bda Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:40 -0500 Subject: [PATCH 0502/1664] python3-pdm-backend: rebuild for Python 3.14 --- srcpkgs/python3-pdm-backend/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pdm-backend/template b/srcpkgs/python3-pdm-backend/template index 1962adbe15f7eb..ef700e04ab0026 100644 --- a/srcpkgs/python3-pdm-backend/template +++ b/srcpkgs/python3-pdm-backend/template @@ -1,7 +1,7 @@ # Template file for 'python3-pdm-backend' pkgname=python3-pdm-backend version=2.4.6 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3 python3-build python3-packaging" short_desc="PDM-Backend" From c77bb5c22eb7dab690ea6f07f17567f914924c77 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:40 -0500 Subject: [PATCH 0503/1664] python3-s3transfer: rebuild for Python 3.14 --- srcpkgs/python3-s3transfer/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-s3transfer/template b/srcpkgs/python3-s3transfer/template index 9fdbf083028de7..e46641731f527b 100644 --- a/srcpkgs/python3-s3transfer/template +++ b/srcpkgs/python3-s3transfer/template @@ -1,7 +1,7 @@ # Template file for 'python3-s3transfer' pkgname=python3-s3transfer version=0.5.0 -revision=4 +revision=5 build_style=python3-module # integration tests want aws credentials make_check_target="tests/unit tests/functional" From 869088e61bae53af76ebccd58e8e71a8226b285b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:40 -0500 Subject: [PATCH 0504/1664] python3-authres: rebuild for Python 3.14 --- srcpkgs/python3-authres/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-authres/template b/srcpkgs/python3-authres/template index eb753352ac5d62..8b7bc80e837b6f 100644 --- a/srcpkgs/python3-authres/template +++ b/srcpkgs/python3-authres/template @@ -1,7 +1,7 @@ # Template file for 'python3-authres' pkgname=python3-authres version=1.2.0 -revision=8 +revision=9 build_style=python3-module pycompile_module=authres hostmakedepends="python3-setuptools" From 110f214d56d6b617f514da79f9e9500696be4571 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:41 -0500 Subject: [PATCH 0505/1664] python3-markdown-math: rebuild for Python 3.14 --- srcpkgs/python3-markdown-math/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-markdown-math/template b/srcpkgs/python3-markdown-math/template index 10edf65b7dc76f..152bc166374786 100644 --- a/srcpkgs/python3-markdown-math/template +++ b/srcpkgs/python3-markdown-math/template @@ -1,7 +1,7 @@ # Template file for 'python3-markdown-math' pkgname=python3-markdown-math version=0.8 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-Markdown" From 75d211e5a3e5ef02668beff6e52cb2c390def3a1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:41 -0500 Subject: [PATCH 0506/1664] python3-QtPy: rebuild for Python 3.14 --- srcpkgs/python3-QtPy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-QtPy/template b/srcpkgs/python3-QtPy/template index 20fae893da1949..b6a35de0e987dc 100644 --- a/srcpkgs/python3-QtPy/template +++ b/srcpkgs/python3-QtPy/template @@ -1,7 +1,7 @@ # Template file for 'python3-QtPy' pkgname=python3-QtPy version=2.4.3 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" # depends on either of PyQt5, PyQt6 From 1f9be5bdc3b43765dbf7837219cb1c81f9233c15 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:41 -0500 Subject: [PATCH 0507/1664] python3-SQLAlchemy: rebuild for Python 3.14 --- srcpkgs/python3-SQLAlchemy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-SQLAlchemy/template b/srcpkgs/python3-SQLAlchemy/template index 57e5c655e03a00..604dd08812cdb8 100644 --- a/srcpkgs/python3-SQLAlchemy/template +++ b/srcpkgs/python3-SQLAlchemy/template @@ -1,7 +1,7 @@ # Template file for 'python3-SQLAlchemy' pkgname=python3-SQLAlchemy version=1.4.54 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From 9e62d30524ba6a3a8a8a6a8a07008525ab84178e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:41 -0500 Subject: [PATCH 0508/1664] python3-editor: rebuild for Python 3.14 --- srcpkgs/python3-editor/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-editor/template b/srcpkgs/python3-editor/template index 9d4a2c955717d1..5b2161a925a1ce 100644 --- a/srcpkgs/python3-editor/template +++ b/srcpkgs/python3-editor/template @@ -1,7 +1,7 @@ # Template file for 'python3-editor' pkgname=python3-editor version=1.0.4 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 23fdfd296ffd71a32b32cfa3a8770dd8f418e1c1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:41 -0500 Subject: [PATCH 0509/1664] python3-regex: rebuild for Python 3.14 --- srcpkgs/python3-regex/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-regex/template b/srcpkgs/python3-regex/template index 85f96a3b0e4e89..df47b4b636018c 100644 --- a/srcpkgs/python3-regex/template +++ b/srcpkgs/python3-regex/template @@ -1,7 +1,7 @@ # Template file for 'python3-regex' pkgname=python3-regex version=2025.7.34 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-devel python3-setuptools" makedepends="python3-devel" From cfc75c2cdc39a5b72b4c90344d08ebba44a5784b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:41 -0500 Subject: [PATCH 0510/1664] python3-pyperclip: rebuild for Python 3.14 --- srcpkgs/python3-pyperclip/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyperclip/template b/srcpkgs/python3-pyperclip/template index a1dca720a65edc..575f2b7b8ebfca 100644 --- a/srcpkgs/python3-pyperclip/template +++ b/srcpkgs/python3-pyperclip/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyperclip' pkgname=python3-pyperclip version=1.8.2 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From a8dedc36d1995a95092ad919624848786c3d478f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:42 -0500 Subject: [PATCH 0511/1664] python3-urwid_readline: rebuild for Python 3.14 --- srcpkgs/python3-urwid_readline/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-urwid_readline/template b/srcpkgs/python3-urwid_readline/template index b57c6e37400507..1e4d3be2ecaaa7 100644 --- a/srcpkgs/python3-urwid_readline/template +++ b/srcpkgs/python3-urwid_readline/template @@ -1,7 +1,7 @@ # Template file for 'python3-urwid_readline' pkgname=python3-urwid_readline version=0.14 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-urwid" From b1a9d2b9a5f58c6176d7b638318244e55b5244b3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:42 -0500 Subject: [PATCH 0512/1664] python3-zulip: rebuild for Python 3.14 --- srcpkgs/python3-zulip/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zulip/template b/srcpkgs/python3-zulip/template index 7ee0b9067ef3b5..816537ebb7f5e4 100644 --- a/srcpkgs/python3-zulip/template +++ b/srcpkgs/python3-zulip/template @@ -1,7 +1,7 @@ # Template file for 'python3-zulip' pkgname=python3-zulip version=0.9.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-click python3-distro python3-requests python3-typing_extensions" From cb342729e541df6e99600c909462d627393b4fca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:42 -0500 Subject: [PATCH 0513/1664] python3-keyring: rebuild for Python 3.14 --- srcpkgs/python3-keyring/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-keyring/template b/srcpkgs/python3-keyring/template index b4f54836e7537e..2b6f1a50d04dd9 100644 --- a/srcpkgs/python3-keyring/template +++ b/srcpkgs/python3-keyring/template @@ -1,7 +1,7 @@ # Template file for 'python3-keyring' pkgname=python3-keyring version=25.6.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" depends="python3-SecretStorage python3-jeepney From 484a8d58c5402c76f821ad66bde4e33f2f7d7809 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:42 -0500 Subject: [PATCH 0514/1664] downloader-cli: rebuild for Python 3.14 --- srcpkgs/downloader-cli/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/downloader-cli/template b/srcpkgs/downloader-cli/template index eba586c0494a9a..53f347456f9226 100644 --- a/srcpkgs/downloader-cli/template +++ b/srcpkgs/downloader-cli/template @@ -1,7 +1,7 @@ # Template file for 'downloader-cli' pkgname=downloader-cli version=0.3.4 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-urllib3 python3-downloader-cli" From 4f707efe24df6ca0d5f99eaa614389eb04008cdd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:42 -0500 Subject: [PATCH 0515/1664] python3-ffmpeg-python: rebuild for Python 3.14 --- srcpkgs/python3-ffmpeg-python/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ffmpeg-python/template b/srcpkgs/python3-ffmpeg-python/template index be000d331a61b1..63f43f7bf8ccab 100644 --- a/srcpkgs/python3-ffmpeg-python/template +++ b/srcpkgs/python3-ffmpeg-python/template @@ -1,7 +1,7 @@ # Template file for 'python3-ffmpeg-python' pkgname=python3-ffmpeg-python version=0.2.0 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="ffmpeg python3-future" From cfa419f7b90333b85b6cb93afe33625639a49418 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:42 -0500 Subject: [PATCH 0516/1664] python3-itunespy: rebuild for Python 3.14 --- srcpkgs/python3-itunespy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-itunespy/template b/srcpkgs/python3-itunespy/template index 0970835f360195..28bdc21f9d106f 100644 --- a/srcpkgs/python3-itunespy/template +++ b/srcpkgs/python3-itunespy/template @@ -1,7 +1,7 @@ # Template file for 'python3-itunespy' pkgname=python3-itunespy version=1.6.1 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests python3-pycountry" From 1d2380c2e9d92723b4bfe441f20b28a82d598bf1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:43 -0500 Subject: [PATCH 0517/1664] python3-musicbrainzngs: rebuild for Python 3.14 --- srcpkgs/python3-musicbrainzngs/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-musicbrainzngs/template b/srcpkgs/python3-musicbrainzngs/template index 0f4329f7c92c8d..98fa3472e40f58 100644 --- a/srcpkgs/python3-musicbrainzngs/template +++ b/srcpkgs/python3-musicbrainzngs/template @@ -1,7 +1,7 @@ # Template file for 'python3-musicbrainzngs' pkgname=python3-musicbrainzngs version=0.7.1 -revision=5 +revision=6 build_style="python3-module" hostmakedepends="python3-setuptools" depends="python3" From 4cdee88b9c36da901f9be7026615ab294504bb50 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:43 -0500 Subject: [PATCH 0518/1664] python3-pyDes: rebuild for Python 3.14 --- srcpkgs/python3-pyDes/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyDes/template b/srcpkgs/python3-pyDes/template index a85b8ed32a44e6..30da61e8eba5a0 100644 --- a/srcpkgs/python3-pyDes/template +++ b/srcpkgs/python3-pyDes/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyDes' pkgname=python3-pyDes version=2.0.1 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 7e66b0beccaf32b786b6ebdf8a9f38d575c9c99c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:43 -0500 Subject: [PATCH 0519/1664] python3-pysocks: rebuild for Python 3.14 --- srcpkgs/python3-pysocks/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pysocks/template b/srcpkgs/python3-pysocks/template index 9ae594202b185c..463451894b9cfe 100644 --- a/srcpkgs/python3-pysocks/template +++ b/srcpkgs/python3-pysocks/template @@ -1,7 +1,7 @@ # Template file for 'python3-pysocks' pkgname=python3-pysocks version=1.7.0 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 37b4de8e5fe80a59837dd4dc8004242d0e1cca07 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:43 -0500 Subject: [PATCH 0520/1664] python3-simber: rebuild for Python 3.14 --- srcpkgs/python3-simber/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-simber/template b/srcpkgs/python3-simber/template index 8df685efa63c6d..364451d3c865b9 100644 --- a/srcpkgs/python3-simber/template +++ b/srcpkgs/python3-simber/template @@ -1,7 +1,7 @@ # Template file for 'python3-simber' pkgname=python3-simber version=0.2.6 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-colorama" From 23d0d0488688e3af7dd8229be2ccdfd2736349b4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:43 -0500 Subject: [PATCH 0521/1664] python3-spotipy: rebuild for Python 3.14 --- srcpkgs/python3-spotipy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-spotipy/template b/srcpkgs/python3-spotipy/template index 1aaa7071421123..b34d181f61774b 100644 --- a/srcpkgs/python3-spotipy/template +++ b/srcpkgs/python3-spotipy/template @@ -1,7 +1,7 @@ # Template file for 'python3-spotipy' pkgname=python3-spotipy version=2.22.1 -revision=3 +revision=4 build_style=python3-module hostmakedepends="pkg-config python3-setuptools" makedepends="python3-devel" From b12d8cd97b0d84264b109cd20b3e8ff5752de641 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:43 -0500 Subject: [PATCH 0522/1664] python3-youtube-search: rebuild for Python 3.14 --- srcpkgs/python3-youtube-search/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-youtube-search/template b/srcpkgs/python3-youtube-search/template index 0ee4dba144701f..b403d0f13af740 100644 --- a/srcpkgs/python3-youtube-search/template +++ b/srcpkgs/python3-youtube-search/template @@ -1,7 +1,7 @@ # Template file for 'python3-youtube-search' pkgname=python3-youtube-search version=2.1.2 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests" From 1159c8747692d5a70de399d84b7c9d232ef857d7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:44 -0500 Subject: [PATCH 0523/1664] python3-youtubesearch: rebuild for Python 3.14 --- srcpkgs/python3-youtubesearch/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-youtubesearch/template b/srcpkgs/python3-youtubesearch/template index 7f0138b51dc29f..0d27295a78bcfc 100644 --- a/srcpkgs/python3-youtubesearch/template +++ b/srcpkgs/python3-youtubesearch/template @@ -1,7 +1,7 @@ # Template file for 'python3-youtubesearch' pkgname=python3-youtubesearch version=1.6.6 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-httpx" From 7ffe8058b1e70c00b4fad6b8b901ec5903fc0994 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:44 -0500 Subject: [PATCH 0524/1664] python3-ytmusicapi: rebuild for Python 3.14 --- srcpkgs/python3-ytmusicapi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ytmusicapi/template b/srcpkgs/python3-ytmusicapi/template index 7cc614cfa4134e..e694d9a70cf9a0 100644 --- a/srcpkgs/python3-ytmusicapi/template +++ b/srcpkgs/python3-ytmusicapi/template @@ -1,7 +1,7 @@ # Template file for 'python3-ytmusicapi' pkgname=python3-ytmusicapi version=1.11.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3-requests" From b1cd01229f72adc0e94b23c42ac524bd33213e28 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:44 -0500 Subject: [PATCH 0525/1664] yt-dlp: rebuild for Python 3.14 --- srcpkgs/yt-dlp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/yt-dlp/template b/srcpkgs/yt-dlp/template index 39d25d74b83ac2..a88c891cda452b 100644 --- a/srcpkgs/yt-dlp/template +++ b/srcpkgs/yt-dlp/template @@ -1,7 +1,7 @@ # Template file for 'yt-dlp' pkgname=yt-dlp version=2025.11.12 -revision=1 +revision=2 # XXX: keep python3-yt-dlp-ejs in sync with pyproject.toml _ejs_ver=0.3.1 build_style=python3-pep517 From 41e485c6e6b912df9fac94faa9590a1efee5b25f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:44 -0500 Subject: [PATCH 0526/1664] python3-WeasyPrint: rebuild for Python 3.14 --- srcpkgs/python3-WeasyPrint/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-WeasyPrint/template b/srcpkgs/python3-WeasyPrint/template index db85382ce1fd84..fd5d74752037eb 100644 --- a/srcpkgs/python3-WeasyPrint/template +++ b/srcpkgs/python3-WeasyPrint/template @@ -1,7 +1,7 @@ # Template file for 'python3-WeasyPrint' pkgname=python3-WeasyPrint version=66.0 -revision=1 +revision=2 build_style=python3-pep517 _runtime_deps="fonttools python3-Pillow python3-cssselect2 python3-html5lib python3-cffi python3-Pyphen python3-pydyf python3-tinyhtml5 python3-tinycss2 From 592074c10cab26f033e6d8416f9770bde767a641 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:44 -0500 Subject: [PATCH 0527/1664] python3-google-i18n-address: rebuild for Python 3.14 --- srcpkgs/python3-google-i18n-address/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-google-i18n-address/template b/srcpkgs/python3-google-i18n-address/template index 636f8d69ca895f..895795a11644d2 100644 --- a/srcpkgs/python3-google-i18n-address/template +++ b/srcpkgs/python3-google-i18n-address/template @@ -1,7 +1,7 @@ # Template file for 'python3-google-i18n-address' pkgname=python3-google-i18n-address version=3.1.1 -revision=2 +revision=3 build_style=python3-pep517 make_check_target="tests/" hostmakedepends="python3-poetry-core hatchling" From 79f7e693414dfffa9c9d94f16ce7dfcc09a7cd4e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:44 -0500 Subject: [PATCH 0528/1664] python3-intervaltree: rebuild for Python 3.14 --- srcpkgs/python3-intervaltree/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-intervaltree/template b/srcpkgs/python3-intervaltree/template index 7f83a970c3f0a2..7825d44810ed09 100644 --- a/srcpkgs/python3-intervaltree/template +++ b/srcpkgs/python3-intervaltree/template @@ -1,7 +1,7 @@ # Template file for 'python3-intervaltree' pkgname=python3-intervaltree version=3.1.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 python3-sortedcontainers" From e84d90e5a3a863a7d6e4d6b36739f6290aadf452 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:45 -0500 Subject: [PATCH 0529/1664] python3-kitchen: rebuild for Python 3.14 --- srcpkgs/python3-kitchen/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-kitchen/template b/srcpkgs/python3-kitchen/template index 51de2f67e2b45b..f0bd138d338da8 100644 --- a/srcpkgs/python3-kitchen/template +++ b/srcpkgs/python3-kitchen/template @@ -1,7 +1,7 @@ # Template file for 'python3-kitchen' pkgname=python3-kitchen version=1.2.6 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 6d11756d219086e43c511d337d1097b8d0f888e4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:45 -0500 Subject: [PATCH 0530/1664] pywal: rebuild for Python 3.14 --- srcpkgs/pywal/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template index 66ddb4c75c30c2..4f57157f326436 100644 --- a/srcpkgs/pywal/template +++ b/srcpkgs/pywal/template @@ -1,7 +1,7 @@ # Template file for 'pywal' pkgname=pywal version=3.3.0 -revision=7 +revision=8 build_style=python3-module pycompile_module="pywal" hostmakedepends="python3-setuptools" From 340ae26ed5f2a0140d99b49329bea55e3ade599b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:45 -0500 Subject: [PATCH 0531/1664] python3-discid: rebuild for Python 3.14 --- srcpkgs/python3-discid/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-discid/template b/srcpkgs/python3-discid/template index 8c5ee5edca8e36..8056ecf506d51a 100644 --- a/srcpkgs/python3-discid/template +++ b/srcpkgs/python3-discid/template @@ -1,7 +1,7 @@ # Template file for 'python3-discid' pkgname=python3-discid version=1.2.0 -revision=8 +revision=9 build_style=python3-module pycompile_module=discid hostmakedepends="python3 python3-setuptools libdiscid" From c8ccdff7484cbb66cd3f890e686c8864b22f2a44 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:45 -0500 Subject: [PATCH 0532/1664] python3-pycdio: rebuild for Python 3.14 --- srcpkgs/python3-pycdio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pycdio/template b/srcpkgs/python3-pycdio/template index 7b7299d75aae23..435bece5409e55 100644 --- a/srcpkgs/python3-pycdio/template +++ b/srcpkgs/python3-pycdio/template @@ -1,7 +1,7 @@ # Template file for 'python3-pycdio' pkgname=python3-pycdio version=2.1.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools pkg-config swig" makedepends="libcdio-devel python3-devel" From e724641a287a811455a1ac6e9920f64986ecb3f7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:45 -0500 Subject: [PATCH 0533/1664] python3-ruamel.yaml: update to 0.18.16. --- srcpkgs/python3-ruamel.yaml/template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/srcpkgs/python3-ruamel.yaml/template b/srcpkgs/python3-ruamel.yaml/template index 291286e1525fa0..260df3521d63fd 100644 --- a/srcpkgs/python3-ruamel.yaml/template +++ b/srcpkgs/python3-ruamel.yaml/template @@ -1,8 +1,8 @@ # Template file for 'python3-ruamel.yaml' pkgname=python3-ruamel.yaml -version=0.17.21 -revision=4 -build_style=python3-module +version=0.18.16 +revision=1 +build_style=python3-pep517 hostmakedepends="python3-setuptools" makedepends="python3-devel" depends="python3-ruamel.yaml.clib" @@ -12,7 +12,7 @@ license="MIT" homepage="http://yaml.readthedocs.io/" changelog="https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree/CHANGES" distfiles="${PYPI_SITE}/r/ruamel.yaml/ruamel.yaml-${version}.tar.gz" -checksum=8b7ce697a2f212752a35c1ac414471dc16c424c9573be4926b56ff3f5d23b7af +checksum=a6e587512f3c998b2225d68aa1f35111c29fad14aed561a26e73fab729ec5e5a make_check=no # no tests included in distfiles export RUAMEL_NO_PIP_INSTALL_CHECK=1 From f0fccb22d114d984fe7ca1aeec4ef4012060ba13 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:45 -0500 Subject: [PATCH 0534/1664] python3-curl: rebuild for Python 3.14 --- srcpkgs/python3-curl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-curl/template b/srcpkgs/python3-curl/template index c02253902cf075..bf9519de8f7264 100644 --- a/srcpkgs/python3-curl/template +++ b/srcpkgs/python3-curl/template @@ -1,7 +1,7 @@ # Template file for 'python3-curl' pkgname=python3-curl version=7.45.7 -revision=1 +revision=2 build_style=python3-module # hanging/failing tests make_check_args="--ignore tests/multi_socket_select_test.py From 75e842ab2c7172a425e7b430ed786deb0794a39d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:46 -0500 Subject: [PATCH 0535/1664] python3-parse: rebuild for Python 3.14 --- srcpkgs/python3-parse/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-parse/template b/srcpkgs/python3-parse/template index 4dd745742a238a..cc6ac360db52fa 100644 --- a/srcpkgs/python3-parse/template +++ b/srcpkgs/python3-parse/template @@ -1,7 +1,7 @@ # Template file for 'python3-parse' pkgname=python3-parse version=1.20.2 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From f58afd5294cd461a23cfcb1915b39afaa6e0b1ec Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:46 -0500 Subject: [PATCH 0536/1664] python3-shodan: rebuild for Python 3.14 --- srcpkgs/python3-shodan/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-shodan/template b/srcpkgs/python3-shodan/template index 993b4adacd575f..e2c6d30862037a 100644 --- a/srcpkgs/python3-shodan/template +++ b/srcpkgs/python3-shodan/template @@ -1,7 +1,7 @@ # Template file for 'python3-shodan' pkgname=python3-shodan version=1.28.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-click python3-click-plugins python3-colorama From c1b4f0005342c364acac07206f334263e6bb4faf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:46 -0500 Subject: [PATCH 0537/1664] gbinder-python: update to 1.3.0. --- srcpkgs/gbinder-python/template | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/srcpkgs/gbinder-python/template b/srcpkgs/gbinder-python/template index ebe5ca0aa4267f..876f77c1992cde 100644 --- a/srcpkgs/gbinder-python/template +++ b/srcpkgs/gbinder-python/template @@ -1,10 +1,9 @@ # Template file for 'gbinder-python' pkgname=gbinder-python -version=1.1.2 -revision=3 +version=1.3.0 +revision=1 build_style=python3-module -make_build_args="--cython" -hostmakedepends="python3-Cython pkg-config" +hostmakedepends="python3-setuptools python3-Cython pkg-config" makedepends="libgbinder-devel python3-devel" depends="python3" short_desc="Python bindings for libgbinder" @@ -12,4 +11,4 @@ maintainer="Orphaned " license="GPL-3.0-or-later" homepage="https://github.com/erfanoabdi/gbinder-python" distfiles="https://github.com/erfanoabdi/gbinder-python/archive/refs/tags/${version}.tar.gz" -checksum=2dc424d5c2594146612e4bd752964f8928a62eec7c5ce6046f4c582079d0b537 +checksum=5a9dfabd51285950dfba5db35f98ef3b3576d4bacb95c421b09e0fdabe781acf From 929de3c76c15789953dff22e0411e61ae39b04c4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:46 -0500 Subject: [PATCH 0538/1664] nftables: rebuild for Python 3.14 --- srcpkgs/nftables/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nftables/template b/srcpkgs/nftables/template index 920e5312de383e..e925875e8e6d64 100644 --- a/srcpkgs/nftables/template +++ b/srcpkgs/nftables/template @@ -1,7 +1,7 @@ # Template file for 'nftables' pkgname=nftables version=1.1.5 -revision=1 +revision=2 build_style=gnu-configure configure_args="--sbindir=/usr/bin --with-json --with-python-bin=/bin/python3 --with-cli=readline" From 14a34e86a30be8dd4decb5e08c3f369b6d152dc9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:46 -0500 Subject: [PATCH 0539/1664] python3-pulsectl: rebuild for Python 3.14 --- srcpkgs/python3-pulsectl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pulsectl/template b/srcpkgs/python3-pulsectl/template index a9f028be5f68b3..d29655a9939015 100644 --- a/srcpkgs/python3-pulsectl/template +++ b/srcpkgs/python3-pulsectl/template @@ -1,7 +1,7 @@ # Template file for 'python3-pulsectl' pkgname=python3-pulsectl version=24.12.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools" From e0a3fbc9a777d964596673415f9b91cb1e445247 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:46 -0500 Subject: [PATCH 0540/1664] python3-tasklib: rebuild for Python 3.14 --- srcpkgs/python3-tasklib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tasklib/template b/srcpkgs/python3-tasklib/template index 025bf2162ef2d9..171f2c8a10565d 100644 --- a/srcpkgs/python3-tasklib/template +++ b/srcpkgs/python3-tasklib/template @@ -1,7 +1,7 @@ # Template file for 'python3-tasklib' pkgname=python3-tasklib version=2.5.1 -revision=3 +revision=4 build_style=python3-module make_check_target="tasklib/tests.py" hostmakedepends="python3-setuptools" From d0ab639df674a1ba11b3c3b503b507b97694704c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:47 -0500 Subject: [PATCH 0541/1664] python3-stevedore: rebuild for Python 3.14 --- srcpkgs/python3-stevedore/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-stevedore/template b/srcpkgs/python3-stevedore/template index c7e20a537d877e..70aa4da41e46d8 100644 --- a/srcpkgs/python3-stevedore/template +++ b/srcpkgs/python3-stevedore/template @@ -1,7 +1,7 @@ # Template file for 'python3-stevedore' pkgname=python3-stevedore version=5.1.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel python3-pbr" depends="python3-six" From 77cac243e691eca42b13b5cf657b5797204b4d34 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:47 -0500 Subject: [PATCH 0542/1664] python3-virtualenv: rebuild for Python 3.14 --- srcpkgs/python3-virtualenv/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-virtualenv/template b/srcpkgs/python3-virtualenv/template index dadf5479bcc07c..8247fe0ff67d71 100644 --- a/srcpkgs/python3-virtualenv/template +++ b/srcpkgs/python3-virtualenv/template @@ -1,7 +1,7 @@ # Template file for 'python3-virtualenv' pkgname=python3-virtualenv version=20.31.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3-platformdirs python3-distlib python3-filelock" From bb877ed81df1551637b9b4f56ff78d0fa6e4a29c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:47 -0500 Subject: [PATCH 0543/1664] python3-virtualenv-clone: rebuild for Python 3.14 --- srcpkgs/python3-virtualenv-clone/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-virtualenv-clone/template b/srcpkgs/python3-virtualenv-clone/template index f2ff5403565f44..f5833a45f3efa8 100644 --- a/srcpkgs/python3-virtualenv-clone/template +++ b/srcpkgs/python3-virtualenv-clone/template @@ -1,7 +1,7 @@ # Template file for 'python3-virtualenv-clone' pkgname=python3-virtualenv-clone version=0.5.4 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools" From c86bd5c701e64b03496c0daf7674ad2c02143e51 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:47 -0500 Subject: [PATCH 0544/1664] libvirt-python3: update to 11.9.0. --- srcpkgs/libvirt-python3/template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/srcpkgs/libvirt-python3/template b/srcpkgs/libvirt-python3/template index 44af179927829b..756317642205fc 100644 --- a/srcpkgs/libvirt-python3/template +++ b/srcpkgs/libvirt-python3/template @@ -1,7 +1,7 @@ # Template file for 'libvirt-python3' pkgname=libvirt-python3 -version=10.5.0 -revision=2 +version=11.9.0 +revision=1 build_style=python3-module hostmakedepends="pkg-config python3-devel python3-setuptools libvirt-devel libapparmor-devel" @@ -11,8 +11,8 @@ short_desc="Libvirt virtualization API Python3 binding" maintainer="Orphaned " license="LGPL-2.1-or-later" homepage="https://pypi.org/project/libvirt-python/" -distfiles="https://libvirt.org/sources/python/libvirt-python-${version}.tar.gz" -checksum=785023500f58d3e8e829af98647d43eee97e517aacc9d9e7ded43594ea52d032 +distfiles="${PYPI_SITE}/l/libvirt_python/libvirt_python-${version}.tar.gz" +checksum=dc54b8ab3581118af1bd64c5847d03c946e2f19b6cf8bf9d18fd8b75d7a70181 make_check=no # Tests require removed python3-nose do_check() { From f014736ae6fee42e3106b9c678f95bb58c2fb747 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:47 -0500 Subject: [PATCH 0545/1664] python3-aiostream: rebuild for Python 3.14 --- srcpkgs/python3-aiostream/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-aiostream/template b/srcpkgs/python3-aiostream/template index e38c1edae53854..e34be2f8c2b438 100644 --- a/srcpkgs/python3-aiostream/template +++ b/srcpkgs/python3-aiostream/template @@ -1,7 +1,7 @@ # Template file for 'python3-aiostream' pkgname=python3-aiostream version=0.7.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-typing_extensions" From ba5dcf075196f7a92c839853ebedfc9501003b5c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:47 -0500 Subject: [PATCH 0546/1664] python3-click-log: rebuild for Python 3.14 --- srcpkgs/python3-click-log/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-click-log/template b/srcpkgs/python3-click-log/template index 2cbfc64ae773aa..75c8b6ddb17894 100644 --- a/srcpkgs/python3-click-log/template +++ b/srcpkgs/python3-click-log/template @@ -1,7 +1,7 @@ # Template file for 'python3-click-log' pkgname=python3-click-log version=0.4.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-click" From 2d6a96c4c02cb95fad23f997e5dc1d0e167e8290 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:48 -0500 Subject: [PATCH 0547/1664] libgexiv2: rebuild for Python 3.14 --- srcpkgs/libgexiv2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libgexiv2/template b/srcpkgs/libgexiv2/template index 0994fb3ac69781..f6b4f708fcd82d 100644 --- a/srcpkgs/libgexiv2/template +++ b/srcpkgs/libgexiv2/template @@ -1,7 +1,7 @@ # Template file for 'libgexiv2' pkgname=libgexiv2 version=0.14.5 -revision=1 +revision=2 build_style=meson build_helper="gir" configure_args="$(vopt_bool gir introspection) $(vopt_bool vala vapi)" From 6d7227fb2110f21f7c7105264196b50b007d1e96 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:48 -0500 Subject: [PATCH 0548/1664] python3-minidb: rebuild for Python 3.14 --- srcpkgs/python3-minidb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-minidb/template b/srcpkgs/python3-minidb/template index 68a504535ea1c8..90728e575dab0b 100644 --- a/srcpkgs/python3-minidb/template +++ b/srcpkgs/python3-minidb/template @@ -1,7 +1,7 @@ # Template file for 'python3-minidb' pkgname=python3-minidb version=2.0.8 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From dfe060ff195d69b64c785630966ac219dcd94a0e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:48 -0500 Subject: [PATCH 0549/1664] fifengine: rebuild for Python 3.14 --- srcpkgs/fifengine/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/fifengine/template b/srcpkgs/fifengine/template index 186a1e0405eeee..4f36b1e95ef5fd 100644 --- a/srcpkgs/fifengine/template +++ b/srcpkgs/fifengine/template @@ -1,7 +1,7 @@ # Template file for 'fifengine' pkgname=fifengine version=0.4.2 -revision=17 +revision=18 build_style=cmake hostmakedepends="swig python3 python3-setuptools" makedepends="SDL2-devel SDL2_image-devel SDL2_ttf-devel boost-devel-minimal From 2fda3526820c207511788dd29481537219e7b0a5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:48 -0500 Subject: [PATCH 0550/1664] python3-Levenshtein: update to 0.27.3. --- srcpkgs/python3-Levenshtein/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-Levenshtein/template b/srcpkgs/python3-Levenshtein/template index b86a041e73d209..fe998491004ff1 100644 --- a/srcpkgs/python3-Levenshtein/template +++ b/srcpkgs/python3-Levenshtein/template @@ -1,6 +1,6 @@ # Template file for 'python3-Levenshtein' pkgname=python3-Levenshtein -version=0.26.1 +version=0.27.3 revision=1 build_style=python3-pep517 hostmakedepends="cmake python3-scikit-build-core ninja" @@ -12,6 +12,6 @@ maintainer="Orphaned " license="GPL-2.0-or-later" homepage="https://github.com/maxbachmann/Levenshtein" distfiles="${PYPI_SITE}/l/levenshtein/levenshtein-${version}.tar.gz" -checksum=0d19ba22330d50609b2349021ec3cf7d905c6fe21195a2d0d876a146e7ed2575 +checksum=1ac326b2c84215795163d8a5af471188918b8797b4953ec87aaba22c9c1f9fc0 export CMAKE_ARGS="-DPython_INCLUDE_DIR:PATH=${XBPS_CROSS_BASE}/${py3_inc}" From 4abbac9958ec2ead782a7d72fb6b93f64b27e3ba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:48 -0500 Subject: [PATCH 0551/1664] python3-inotify: rebuild for Python 3.14 --- srcpkgs/python3-inotify/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-inotify/template b/srcpkgs/python3-inotify/template index 303639e71d4bd2..7a4b632d778e32 100644 --- a/srcpkgs/python3-inotify/template +++ b/srcpkgs/python3-inotify/template @@ -1,7 +1,7 @@ # Template file for 'python3-inotify' pkgname=python3-inotify version=0.9.6 -revision=11 +revision=12 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 8e7577e0de7b7f6d76e786eef9b94d2b45906123 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:49 -0500 Subject: [PATCH 0552/1664] python3-docopt: rebuild for Python 3.14 --- srcpkgs/python3-docopt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-docopt/template b/srcpkgs/python3-docopt/template index 4e5a30511f98aa..ee7e336b238212 100644 --- a/srcpkgs/python3-docopt/template +++ b/srcpkgs/python3-docopt/template @@ -1,7 +1,7 @@ # Template file for 'python3-docopt' pkgname=python3-docopt version=0.6.2 -revision=11 +revision=12 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 6ddfc840f2dd170dc6ff3f82f1201d0f82ebf0a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:49 -0500 Subject: [PATCH 0553/1664] python3-pillow-simd: rebuild for Python 3.14 --- srcpkgs/python3-pillow-simd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pillow-simd/template b/srcpkgs/python3-pillow-simd/template index 57e65f3427991a..937df54ce09d23 100644 --- a/srcpkgs/python3-pillow-simd/template +++ b/srcpkgs/python3-pillow-simd/template @@ -1,7 +1,7 @@ # Template file for 'python3-pillow-simd' pkgname=python3-pillow-simd version=9.5.0.post2 -revision=2 +revision=3 archs="x86_64*" build_style=python3-module hostmakedepends="python3-setuptools" From 36cd716a8f7d65cd818ec7a3b833c80ea2f781e1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:49 -0500 Subject: [PATCH 0554/1664] python3-keyutils: rebuild for Python 3.14 --- srcpkgs/python3-keyutils/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-keyutils/template b/srcpkgs/python3-keyutils/template index 078c5860bed2ce..442300bf2e2aba 100644 --- a/srcpkgs/python3-keyutils/template +++ b/srcpkgs/python3-keyutils/template @@ -1,7 +1,7 @@ # Template file for 'python3-keyutils' pkgname=python3-keyutils version=0.6 -revision=10 +revision=11 build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" makedepends="python3-devel keyutils-devel" From 8b81241bc2b92306cf4fcb1d9b6182505644a115 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:49 -0500 Subject: [PATCH 0555/1664] python3-pyproject-api: rebuild for Python 3.14 --- srcpkgs/python3-pyproject-api/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyproject-api/template b/srcpkgs/python3-pyproject-api/template index 01b51f0feee124..d583c0c0bce1bc 100644 --- a/srcpkgs/python3-pyproject-api/template +++ b/srcpkgs/python3-pyproject-api/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyproject-api' pkgname=python3-pyproject-api version=1.9.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3-packaging" From b636cfd7419c21995ca9e8b6a9dfa011d000c556 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:49 -0500 Subject: [PATCH 0556/1664] gpgme-python3: rebuild for Python 3.14 --- srcpkgs/gpgme-python3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gpgme-python3/template b/srcpkgs/gpgme-python3/template index e0b6da0c4dfbb5..a9114abbc24303 100644 --- a/srcpkgs/gpgme-python3/template +++ b/srcpkgs/gpgme-python3/template @@ -1,7 +1,7 @@ # Template file for 'gpgme-python3' pkgname=gpgme-python3 version=2.0.0 -revision=1 +revision=2 build_style=gnu-configure make_build_args="-C build" make_install_args="-C build" From 1f83d295ee36820ceef9309ccabed5337f56f652 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:49 -0500 Subject: [PATCH 0557/1664] python3-term-image: rebuild for Python 3.14 --- srcpkgs/python3-term-image/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-term-image/template b/srcpkgs/python3-term-image/template index 55495d8d61f6c8..d2372e1ec8d4b4 100644 --- a/srcpkgs/python3-term-image/template +++ b/srcpkgs/python3-term-image/template @@ -1,7 +1,7 @@ # Template file for 'python3-term-image' pkgname=python3-term-image version=0.7.2 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-Pillow python3-requests python3-typing_extensions python3-urwid" From a3ebfeeb16f6ef1aa2cef4adfce715ea9cb9ae90 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:50 -0500 Subject: [PATCH 0558/1664] python3-urwidgets: rebuild for Python 3.14 --- srcpkgs/python3-urwidgets/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-urwidgets/template b/srcpkgs/python3-urwidgets/template index e41a03a882978e..91e76c82ff1ed8 100644 --- a/srcpkgs/python3-urwidgets/template +++ b/srcpkgs/python3-urwidgets/template @@ -1,7 +1,7 @@ # Template file for 'python3-urwidgets' pkgname=python3-urwidgets version=0.2.1 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-urwid" From 3f8d03f9cd9d1a499f733694681ed1b2e9792e87 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:50 -0500 Subject: [PATCH 0559/1664] python3-click-repl: rebuild for Python 3.14 --- srcpkgs/python3-click-repl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-click-repl/template b/srcpkgs/python3-click-repl/template index 62ef44d9d57b76..fa587f8ce4b4c7 100644 --- a/srcpkgs/python3-click-repl/template +++ b/srcpkgs/python3-click-repl/template @@ -1,7 +1,7 @@ # Template file for 'python3-click-repl' pkgname=python3-click-repl version=0.1.6 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-six python3-click python3-prompt_toolkit" From c98f61f930bba2040b4d43b9a47b3bda2dea535b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:50 -0500 Subject: [PATCH 0560/1664] python3-humanize: rebuild for Python 3.14 --- srcpkgs/python3-humanize/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-humanize/template b/srcpkgs/python3-humanize/template index d25a51d45184c2..2704ce84c78aa1 100644 --- a/srcpkgs/python3-humanize/template +++ b/srcpkgs/python3-humanize/template @@ -1,7 +1,7 @@ # Template file for 'python3-humanize' pkgname=python3-humanize version=4.12.3 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3" From 61410014298a498a36d08bfc06b1898fbc349a40 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:50 -0500 Subject: [PATCH 0561/1664] python3-icalendar: rebuild for Python 3.14 --- srcpkgs/python3-icalendar/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-icalendar/template b/srcpkgs/python3-icalendar/template index d21271050ec5ac..30c1451f71da73 100644 --- a/srcpkgs/python3-icalendar/template +++ b/srcpkgs/python3-icalendar/template @@ -1,7 +1,7 @@ # Template file for 'python3-icalendar' pkgname=python3-icalendar version=6.3.1 -revision=1 +revision=2 build_style=python3-pep517 make_check_target=src/icalendar/tests hostmakedepends="hatchling hatch-vcs" From 0ff7acbe27d57d4db1e0b87ead7ba57ed61c2c8a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:50 -0500 Subject: [PATCH 0562/1664] python3-art: rebuild for Python 3.14 --- srcpkgs/python3-art/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-art/template b/srcpkgs/python3-art/template index 780bb4135c2890..3248825b843d26 100644 --- a/srcpkgs/python3-art/template +++ b/srcpkgs/python3-art/template @@ -1,7 +1,7 @@ # Template file for 'python3-art' pkgname=python3-art version=6.5 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From d7b75ebdc703a2a1abaaf59943a91e2037025027 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:50 -0500 Subject: [PATCH 0563/1664] python3-pyte: rebuild for Python 3.14 --- srcpkgs/python3-pyte/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyte/template b/srcpkgs/python3-pyte/template index a3a704ada8d3f5..c9d3bd937086c5 100644 --- a/srcpkgs/python3-pyte/template +++ b/srcpkgs/python3-pyte/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyte' pkgname=python3-pyte version=0.8.0 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-wcwidth" From 8cb738ca62cca4329e71e732e39b80aa095583d5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:51 -0500 Subject: [PATCH 0564/1664] python3-pyfiglet: rebuild for Python 3.14 --- srcpkgs/python3-pyfiglet/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyfiglet/template b/srcpkgs/python3-pyfiglet/template index 2ecb317bcd85b3..d6e8a235405406 100644 --- a/srcpkgs/python3-pyfiglet/template +++ b/srcpkgs/python3-pyfiglet/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyfiglet' pkgname=python3-pyfiglet version=0.8.0 -revision=7 +revision=8 build_style="python3-module" pycompile_module="pyfiglet" hostmakedepends="python3-setuptools" From fcd1ca30eace6849f086b353772f0f9451f5255e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:51 -0500 Subject: [PATCH 0565/1664] python3-mailcap_fix: rebuild for Python 3.14 --- srcpkgs/python3-mailcap_fix/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mailcap_fix/template b/srcpkgs/python3-mailcap_fix/template index be508f760819e6..864563759b5d09 100644 --- a/srcpkgs/python3-mailcap_fix/template +++ b/srcpkgs/python3-mailcap_fix/template @@ -1,7 +1,7 @@ # Template file for 'python3-mailcap_fix' pkgname=python3-mailcap_fix version=1.0.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" short_desc="Mailcap module that conforms to RFC 1524" From f7012e04e7cc4d51bd358674944f0613ecfaf6ee Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:51 -0500 Subject: [PATCH 0566/1664] python3-telegram: rebuild for Python 3.14 --- srcpkgs/python3-telegram/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-telegram/template b/srcpkgs/python3-telegram/template index 673a779a309a7f..8e754a231f6e36 100644 --- a/srcpkgs/python3-telegram/template +++ b/srcpkgs/python3-telegram/template @@ -1,7 +1,7 @@ # Template file for 'python3-telegram' pkgname=python3-telegram version=0.19.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="libtd python3-telegram_text python3-setuptools" From 89582e72b761d646734d3d718930b7fad3f40c77 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:51 -0500 Subject: [PATCH 0567/1664] configshell-fb: rebuild for Python 3.14 --- srcpkgs/configshell-fb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/configshell-fb/template b/srcpkgs/configshell-fb/template index 71c20891844874..7d55f7020230d3 100644 --- a/srcpkgs/configshell-fb/template +++ b/srcpkgs/configshell-fb/template @@ -1,7 +1,7 @@ # Template file for 'configshell-fb' pkgname=configshell-fb version=2.0.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3-six python3-urwid python3-parsing" From 6fceb2d0ba4c9b15f40c50539f9745cca7f31eea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:51 -0500 Subject: [PATCH 0568/1664] rtslib-fb: rebuild for Python 3.14 --- srcpkgs/rtslib-fb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/rtslib-fb/template b/srcpkgs/rtslib-fb/template index b9546053d639b9..4c46464b028c7a 100644 --- a/srcpkgs/rtslib-fb/template +++ b/srcpkgs/rtslib-fb/template @@ -1,7 +1,7 @@ # Template file for 'rtslib-fb' pkgname=rtslib-fb version=2.2.3 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3-six python3-pyudev" From ce499416942a158f18d7460227d3f1229a0f5122 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:51 -0500 Subject: [PATCH 0569/1664] python3-cups: rebuild for Python 3.14 --- srcpkgs/python3-cups/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cups/template b/srcpkgs/python3-cups/template index 816ae34dd31fd5..8db49aa176c735 100644 --- a/srcpkgs/python3-cups/template +++ b/srcpkgs/python3-cups/template @@ -1,7 +1,7 @@ # Template file for 'python3-cups' pkgname=python3-cups version=2.0.4 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel cups-devel" From a564acaed984cf640caebba989e4531dc3d43170 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:52 -0500 Subject: [PATCH 0570/1664] python3-smbc: rebuild for Python 3.14 --- srcpkgs/python3-smbc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-smbc/template b/srcpkgs/python3-smbc/template index 6264f6cbc4a20a..0b931bc2c8023f 100644 --- a/srcpkgs/python3-smbc/template +++ b/srcpkgs/python3-smbc/template @@ -1,7 +1,7 @@ # Template file for 'python3-smbc' pkgname=python3-smbc version=1.0.25.1 -revision=3 +revision=4 build_style=python3-module hostmakedepends="pkg-config python3-devel python3-setuptools" makedepends="python3-devel samba-devel" From 3e2f59a8f77330a82865ea9a601abefd1bdc5d1d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:52 -0500 Subject: [PATCH 0571/1664] python3-pem: rebuild for Python 3.14 --- srcpkgs/python3-pem/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pem/template b/srcpkgs/python3-pem/template index 6ea6376c7baca2..21d9184b410c4a 100644 --- a/srcpkgs/python3-pem/template +++ b/srcpkgs/python3-pem/template @@ -1,7 +1,7 @@ # Template file for 'python3-pem' pkgname=python3-pem version=20.1.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From e821e8cfda9e79711305d1790d7a3caf002cba32 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:52 -0500 Subject: [PATCH 0572/1664] python3-ijson: rebuild for Python 3.14 --- srcpkgs/python3-ijson/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ijson/template b/srcpkgs/python3-ijson/template index c284a90431e95c..8e7cfa37748d4e 100644 --- a/srcpkgs/python3-ijson/template +++ b/srcpkgs/python3-ijson/template @@ -1,7 +1,7 @@ # Template file for 'python3-ijson' pkgname=python3-ijson version=3.3.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools_scm" makedepends="yajl-devel python3-devel" From a2e8f13d06a6cc94f8ea2fcf740082730d2985a2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:52 -0500 Subject: [PATCH 0573/1664] python3-immutabledict: rebuild for Python 3.14 --- srcpkgs/python3-immutabledict/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-immutabledict/template b/srcpkgs/python3-immutabledict/template index 57eb323179685a..0397de4ded082f 100644 --- a/srcpkgs/python3-immutabledict/template +++ b/srcpkgs/python3-immutabledict/template @@ -1,7 +1,7 @@ # Template file for 'python3-immutabledict' pkgname=python3-immutabledict version=4.2.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-poetry-core" makedepends="python3-devel" From afd7a44520b6b77ac052d2ab5ffb09f83f56de5f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:52 -0500 Subject: [PATCH 0574/1664] python3-macaroons: rebuild for Python 3.14 --- srcpkgs/python3-macaroons/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-macaroons/template b/srcpkgs/python3-macaroons/template index 50ec71b50e68d1..677ebedecd5065 100644 --- a/srcpkgs/python3-macaroons/template +++ b/srcpkgs/python3-macaroons/template @@ -1,7 +1,7 @@ # Template file for 'python3-macaroons' pkgname=python3-macaroons version=0.13.0 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-six python3-pynacl" From abc93dd306e2d69a3e9176c6d447a804fb6d059b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:52 -0500 Subject: [PATCH 0575/1664] python3-matrix-common: rebuild for Python 3.14 --- srcpkgs/python3-matrix-common/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-matrix-common/template b/srcpkgs/python3-matrix-common/template index 2c06d1f8d98dc6..7915c14615970e 100644 --- a/srcpkgs/python3-matrix-common/template +++ b/srcpkgs/python3-matrix-common/template @@ -1,7 +1,7 @@ # Template file for 'python3-matrix-common' pkgname=python3-matrix-common version=1.3.0 -revision=4 +revision=5 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-attrs" From d55f0872e0cb62385343c8015065a29624a192e9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:53 -0500 Subject: [PATCH 0576/1664] python3-netaddr: rebuild for Python 3.14 --- srcpkgs/python3-netaddr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-netaddr/template b/srcpkgs/python3-netaddr/template index 144a41a98b6ab9..9c6cbc7f56853e 100644 --- a/srcpkgs/python3-netaddr/template +++ b/srcpkgs/python3-netaddr/template @@ -1,7 +1,7 @@ # Template file for 'python3-netaddr' pkgname=python3-netaddr version=1.3.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 4b61b692013413200f6eb88ab882df84acefb3aa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:53 -0500 Subject: [PATCH 0577/1664] python3-phonenumbers: rebuild for Python 3.14 --- srcpkgs/python3-phonenumbers/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-phonenumbers/template b/srcpkgs/python3-phonenumbers/template index 7600ad872497be..5e7c8f036bd04a 100644 --- a/srcpkgs/python3-phonenumbers/template +++ b/srcpkgs/python3-phonenumbers/template @@ -1,7 +1,7 @@ # Template file for 'python3-phonenumbers' pkgname=python3-phonenumbers version=8.13.43 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 619ad96a7a06e2f3d63c670b37faf8d953ce8808 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:53 -0500 Subject: [PATCH 0578/1664] python3-psycopg2: rebuild for Python 3.14 --- srcpkgs/python3-psycopg2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-psycopg2/template b/srcpkgs/python3-psycopg2/template index b29dc5bd73be25..3efadfa5eed368 100644 --- a/srcpkgs/python3-psycopg2/template +++ b/srcpkgs/python3-psycopg2/template @@ -1,7 +1,7 @@ # Template file for 'python3-psycopg2' pkgname=python3-psycopg2 version=2.9.10 -revision=1 +revision=2 build_style=python3-module # Require postgresql-libs-devel to find executable: pg_config hostmakedepends="postgresql-libs-devel python3-setuptools" From cb0c4e97354468b716fac13eae6c6d428c7c34ea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 17 Nov 2025 12:29:59 -0500 Subject: [PATCH 0579/1664] New package: python3-typing-inspection-0.4.2 --- srcpkgs/python3-typing-inspection/template | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 srcpkgs/python3-typing-inspection/template diff --git a/srcpkgs/python3-typing-inspection/template b/srcpkgs/python3-typing-inspection/template new file mode 100644 index 00000000000000..af53ad6e1341ef --- /dev/null +++ b/srcpkgs/python3-typing-inspection/template @@ -0,0 +1,18 @@ +# Template file for 'python3-typing-inspection' +pkgname=python3-typing-inspection +version=0.4.2 +revision=1 +build_style=python3-pep517 +hostmakedepends="hatchling" +depends="python3-typing_extensions" +checkdepends="python3-pytest-xdist ${depends}" +short_desc="Runtime typing introspection tools" +maintainer="Andrew J. Hesford " +license="MIT" +homepage="https://typing-inspection.pydantic.dev/" +distfiles="${PYPI_SITE}/t/typing_inspection/typing_inspection-${version}.tar.gz" +checksum=ba561c48a67c5958007083d386c3295464928b01faa735ab8547c5692e87f464 + +post_install() { + vlicense LICENSE +} From 4e035cd943478d396471dce774638d8f3b75b2eb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:53 -0500 Subject: [PATCH 0580/1664] python3-pydantic: update to 2.12.4. --- srcpkgs/python3-pydantic/template | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/srcpkgs/python3-pydantic/template b/srcpkgs/python3-pydantic/template index cc655391554003..f781b1858af4c2 100644 --- a/srcpkgs/python3-pydantic/template +++ b/srcpkgs/python3-pydantic/template @@ -1,25 +1,19 @@ # Template file for 'python3-pydantic' pkgname=python3-pydantic -version=2.8.2 -revision=2 +version=2.12.4 +revision=1 build_style=python3-pep517 -# 1) requires unpackaged pytest-examples, 2) requires unpackaged cloudpickle -# 3) is already fixed: https://github.com/pydantic/pydantic-core/pull/1286 -make_check_args="--ignore=tests/test_docs.py --ignore=tests/test_pickle.py - --deselect=tests/test_discriminated_union.py::test_discriminated_union_model_dump_with_nested_class" hostmakedepends="hatchling hatch-fancy-pypi-readme" -depends="python3-typing_extensions python3-annotated-types - python3-pydantic-core" -checkdepends="${depends} python3-pytest python3-pytest-benchmark - python3-pytest-mock python3-dirty-equals python3-Faker python3-email-validator - python3-rich" +depends="python3-typing_extensions python3-typing-inspection + python3-annotated-types python3-pydantic-core" short_desc="Data parsing and validation using Python type hints" maintainer="Joel Beckmeyer " license="MIT" homepage="https://github.com/pydantic/pydantic" changelog="https://raw.githubusercontent.com/pydantic/pydantic/main/HISTORY.md" distfiles="${PYPI_SITE}/p/pydantic/pydantic-${version}.tar.gz" -checksum=6f62c13d067b0755ad1c21a34bdd06c0c12625a22b0fc09c6b149816604f7c2a +checksum=0f8cb9555000a4b5b617f66bfd2566264c4984b27589d3b845685983e8ea85ac +make_check=no # too many unpackaged test requirements post_install() { vlicense LICENSE From 7fe76297bd123daf2deea2de0a37d1ccd374f86b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:53 -0500 Subject: [PATCH 0581/1664] python3-python-multipart: rebuild for Python 3.14 --- srcpkgs/python3-python-multipart/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-python-multipart/template b/srcpkgs/python3-python-multipart/template index 90bd35a53b062c..4ea466cb21573d 100644 --- a/srcpkgs/python3-python-multipart/template +++ b/srcpkgs/python3-python-multipart/template @@ -1,7 +1,7 @@ # Template file for 'python3-python-multipart' pkgname=python3-python-multipart version=0.0.9 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling" checkdepends="python3-pytest python3-yaml" From 92ecae24eac9428b3ebb6e0e0ce579b9d741ae08 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:53 -0500 Subject: [PATCH 0582/1664] python3-saml2: rebuild for Python 3.14 --- srcpkgs/python3-saml2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-saml2/template b/srcpkgs/python3-saml2/template index 7f23e62572cd65..77d4770ea0ef4e 100644 --- a/srcpkgs/python3-saml2/template +++ b/srcpkgs/python3-saml2/template @@ -1,7 +1,7 @@ # Template file for 'python3-saml2' pkgname=python3-saml2 version=7.5.0 -revision=2 +revision=3 build_style=python3-pep517 # require unpackaged pymongo make_check_args="--ignore=tests/test_36_mdbcache.py \ From 90e27f6597f013cf5a00e87dae8ea2ba9f1f7b2f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:54 -0500 Subject: [PATCH 0583/1664] python3-signedjson: rebuild for Python 3.14 --- srcpkgs/python3-signedjson/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-signedjson/template b/srcpkgs/python3-signedjson/template index eb3e322433bfaf..0e7800eff18ea8 100644 --- a/srcpkgs/python3-signedjson/template +++ b/srcpkgs/python3-signedjson/template @@ -1,7 +1,7 @@ # Template file for 'python3-signedjson' pkgname=python3-signedjson version=1.1.4 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3-canonicaljson python3-unpaddedbase64 python3-pynacl From 66fd27c7207fe1a2cd758f0761a0b921f3c79002 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:54 -0500 Subject: [PATCH 0584/1664] python3-treq: rebuild for Python 3.14 --- srcpkgs/python3-treq/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-treq/template b/srcpkgs/python3-treq/template index dc50a072944ab1..48a4667fa4ca70 100644 --- a/srcpkgs/python3-treq/template +++ b/srcpkgs/python3-treq/template @@ -1,7 +1,7 @@ # Template file for 'python3-treq' pkgname=python3-treq version=24.9.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools python3-incremental" depends="python3-incremental python3-requests python3-hyperlink From a54c0aca4a60f27d31d4518e6ae496e4acc79895 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:54 -0500 Subject: [PATCH 0585/1664] libgdal: rebuild for Python 3.14 --- srcpkgs/libgdal/patches/50-swig-4.3.patch | 146 ++++++++++++++++++++++ srcpkgs/libgdal/template | 2 +- 2 files changed, 147 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/libgdal/patches/50-swig-4.3.patch diff --git a/srcpkgs/libgdal/patches/50-swig-4.3.patch b/srcpkgs/libgdal/patches/50-swig-4.3.patch new file mode 100644 index 00000000000000..325a660266b756 --- /dev/null +++ b/srcpkgs/libgdal/patches/50-swig-4.3.patch @@ -0,0 +1,146 @@ +Only in a: 20-userfaultfd-detection.patch +Only in a: 30-license.patch +Only in a: 40-fix-setup-py-cc.patch +Only in a/cmake/helpers: configure.cmake.orig +Only in a: gdal.cmake.orig +diff -ur a/swig/include/python/typemaps_python.i b/swig/include/python/typemaps_python.i +--- a/swig/include/python/typemaps_python.i 2024-02-08 14:16:25.000000000 -0500 ++++ b/swig/include/python/typemaps_python.i 2025-11-16 21:17:37.820146789 -0500 +@@ -92,11 +92,11 @@ + if ( !*$2 ) { + Py_INCREF(Py_None); + r = Py_None; +- $result = t_output_helper($result,r); ++ $result = SWIG_AppendOutput($result,r); + } + else { + r = PyFloat_FromDouble( *$1 ); +- $result = t_output_helper($result,r); ++ $result = SWIG_AppendOutput($result,r); + } + } + +@@ -112,11 +112,11 @@ + if ( !*$2 ) { + Py_INCREF(Py_None); + r = Py_None; +- $result = t_output_helper($result,r); ++ $result = SWIG_AppendOutput($result,r); + } + else { + r = PyLong_FromLongLong( *$1 ); +- $result = t_output_helper($result,r); ++ $result = SWIG_AppendOutput($result,r); + } + } + +@@ -132,11 +132,11 @@ + if ( !*$2 ) { + Py_INCREF(Py_None); + r = Py_None; +- $result = t_output_helper($result,r); ++ $result = SWIG_AppendOutput($result,r); + } + else { + r = PyLong_FromUnsignedLongLong( *$1 ); +- $result = t_output_helper($result,r); ++ $result = SWIG_AppendOutput($result,r); + } + } + +@@ -162,7 +162,7 @@ + else { + r = CreateTupleFromDoubleArray($1, num_values); + } +- $result = t_output_helper($result,r); ++ $result = SWIG_AppendOutput($result,r); + } + %enddef + +@@ -255,11 +255,11 @@ + memset(argout, 0, sizeof(argout)); + $1 = argout; + } +-%typemap(argout,fragment="t_output_helper,CreateTupleFromDoubleArray") ( double argout[ANY]) ++%typemap(argout,fragment="CreateTupleFromDoubleArray") ( double argout[ANY]) + { + /* %typemap(argout) (double argout[ANY]) */ + PyObject *out = CreateTupleFromDoubleArray( $1, $dim0 ); +- $result = t_output_helper($result,out); ++ $result = SWIG_AppendOutput($result,out); + } + + %typemap(in,numinputs=0) ( double *argout[ANY]) (double *argout) +@@ -268,11 +268,11 @@ + argout = NULL; + $1 = &argout; + } +-%typemap(argout,fragment="t_output_helper,CreateTupleFromDoubleArray") ( double *argout[ANY]) ++%typemap(argout,fragment="CreateTupleFromDoubleArray") ( double *argout[ANY]) + { + /* %typemap(argout) (double *argout[ANY]) */ + PyObject *out = CreateTupleFromDoubleArray( *$1, $dim0 ); +- $result = t_output_helper($result,out); ++ $result = SWIG_AppendOutput($result,out); + } + %typemap(freearg) (double *argout[ANY]) + { +@@ -1387,7 +1387,7 @@ + /* %typemap(in,numinputs=0) (char **argout) */ + $1 = &argout; + } +-%typemap(argout,fragment="t_output_helper") (char **argout) ++%typemap(argout) (char **argout) + { + /* %typemap(argout) (char **argout) */ + PyObject *o; +@@ -1398,7 +1398,7 @@ + o = Py_None; + Py_INCREF( o ); + } +- $result = t_output_helper($result, o); ++ $result = SWIG_AppendOutput($result, o); + } + %typemap(freearg) (char **argout) + { +@@ -2515,7 +2515,7 @@ + PyTuple_SetItem( r, 0, PyLong_FromLong(*$1) ); + PyTuple_SetItem( r, 1, PyLong_FromLong(*$2) ); + } +- $result = t_output_helper($result,r); ++ $result = SWIG_AppendOutput($result,r); + } + + %typemap(in,numinputs=0) (OGRLayerShadow** ppoBelongingLayer, double* pdfProgressPct) ( OGRLayerShadow* poBelongingLayer = NULL, double dfProgressPct = 0 ) +@@ -2546,10 +2546,10 @@ + + if ( !*$1 ) { + Py_INCREF(Py_None); +- $result = SWIG_Python_AppendOutput($result, Py_None); ++ $result = SWIG_AppendOutput($result, Py_None); + } + else { +- $result = SWIG_Python_AppendOutput($result, ++ $result = SWIG_AppendOutput($result, + SWIG_NewPointerObj(SWIG_as_voidptr( *$1), SWIGTYPE_p_OGRLayerShadow, 0 )); + } + } +@@ -2561,7 +2561,7 @@ + $result = PyList_New(1); + PyList_SetItem($result, 0, Py_None); + } +- $result = SWIG_Python_AppendOutput($result, PyFloat_FromDouble( *$2)); ++ $result = SWIG_AppendOutput($result, PyFloat_FromDouble( *$2)); + } + + } +@@ -2929,7 +2929,7 @@ + PyTuple_SetItem( r, 2, PyFloat_FromDouble($1[2])); + PyTuple_SetItem( r, 3, PyFloat_FromDouble($1[3])); + PyTuple_SetItem( r, 4, PyLong_FromLong($2[0])); +- $result = t_output_helper($result,r); ++ $result = SWIG_AppendOutput($result,r); + } + + +Only in a/swig/python: setup.py.in.orig diff --git a/srcpkgs/libgdal/template b/srcpkgs/libgdal/template index 4ed323e98d9a9e..5bbbc2d82b075d 100644 --- a/srcpkgs/libgdal/template +++ b/srcpkgs/libgdal/template @@ -1,7 +1,7 @@ # Template file for 'libgdal' pkgname=libgdal version=3.8.4 -revision=5 +revision=6 build_style=cmake build_helper=python3 configure_args="-DGDAL_USE_OPENCL=ON From 41759dbd47ad479a960d91f6d7f8cec325debda0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:54 -0500 Subject: [PATCH 0586/1664] python3-dogpile.cache: rebuild for Python 3.14 --- srcpkgs/python3-dogpile.cache/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-dogpile.cache/template b/srcpkgs/python3-dogpile.cache/template index 9352517504fcc7..589ffc87298334 100644 --- a/srcpkgs/python3-dogpile.cache/template +++ b/srcpkgs/python3-dogpile.cache/template @@ -1,7 +1,7 @@ # Template file for 'python3-dogpile.cache' pkgname=python3-dogpile.cache version=1.1.1 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-decorator" From 92c06942e92764c5a417cb9f01798852ee1fda2f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:54 -0500 Subject: [PATCH 0587/1664] python3-enzyme: rebuild for Python 3.14 --- srcpkgs/python3-enzyme/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-enzyme/template b/srcpkgs/python3-enzyme/template index 8056f920113f78..fc4efc5efa0c70 100644 --- a/srcpkgs/python3-enzyme/template +++ b/srcpkgs/python3-enzyme/template @@ -1,7 +1,7 @@ # Template file for 'python3-enzyme' pkgname=python3-enzyme version=0.4.1 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From d93c2552ff6a0900382da31a8e19bec27ea8ffd6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:54 -0500 Subject: [PATCH 0588/1664] python3-guessit: rebuild for Python 3.14 --- srcpkgs/python3-guessit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-guessit/template b/srcpkgs/python3-guessit/template index 8242ed2c8f7ddf..89d56418fa90cb 100644 --- a/srcpkgs/python3-guessit/template +++ b/srcpkgs/python3-guessit/template @@ -1,7 +1,7 @@ # Template file for 'python3-guessit' pkgname=python3-guessit version=3.1.1 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-rebulk python3-babelfish python3-dateutil" From 58535f2f6325c601404f578d0620fbbadfa53deb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:55 -0500 Subject: [PATCH 0589/1664] python3-pysrt: rebuild for Python 3.14 --- srcpkgs/python3-pysrt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pysrt/template b/srcpkgs/python3-pysrt/template index 2cad2a005a113e..767197547db907 100644 --- a/srcpkgs/python3-pysrt/template +++ b/srcpkgs/python3-pysrt/template @@ -1,7 +1,7 @@ # Template file for 'python3-pysrt' pkgname=python3-pysrt version=1.1.2 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 python3-chardet" From c51c1af25ac74cd77d4c1aed87e413f7f7556ead Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:55 -0500 Subject: [PATCH 0590/1664] python3-rarfile: rebuild for Python 3.14 --- srcpkgs/python3-rarfile/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-rarfile/template b/srcpkgs/python3-rarfile/template index cfa44a9684b3f7..90cb8ee584cd3e 100644 --- a/srcpkgs/python3-rarfile/template +++ b/srcpkgs/python3-rarfile/template @@ -1,7 +1,7 @@ # Template file for 'python3-rarfile' pkgname=python3-rarfile version=4.0 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From c8c7b72ccdbe8b3c4844de528586b9c346fbbeda Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:55 -0500 Subject: [PATCH 0591/1664] python3-trio-websocket: rebuild for Python 3.14 --- srcpkgs/python3-trio-websocket/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-trio-websocket/template b/srcpkgs/python3-trio-websocket/template index d504534007dce0..f820bbd609ff88 100644 --- a/srcpkgs/python3-trio-websocket/template +++ b/srcpkgs/python3-trio-websocket/template @@ -1,7 +1,7 @@ # Template file for 'python3-trio-websocket' pkgname=python3-trio-websocket version=0.11.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-trio python3-wsproto" From a05534c50cf0a6d0ad4888190c915b7e4d8a841c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:55 -0500 Subject: [PATCH 0592/1664] python3-versioningit: update to 3.3.0. --- srcpkgs/python3-versioningit/template | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/srcpkgs/python3-versioningit/template b/srcpkgs/python3-versioningit/template index d5c7edf54c074b..1a5edd1efb4f38 100644 --- a/srcpkgs/python3-versioningit/template +++ b/srcpkgs/python3-versioningit/template @@ -1,26 +1,19 @@ # Template file for 'python3-versioningit' pkgname=python3-versioningit -version=2.2.0 -revision=3 +version=3.3.0 +revision=1 build_style=python3-pep517 -hostmakedepends="python3-wheel" +hostmakedepends="hatchling" depends="python3-packaging" -checkdepends="python3-pytest python3-pydantic python3-pytest-mock" short_desc="Versioning It with your Version In Git" maintainer="Orphaned " license="MIT" homepage="https://github.com/jwodder/versioningit" changelog="https://raw.githubusercontent.com/jwodder/versioningit/master/CHANGELOG.md" distfiles="https://github.com/jwodder/versioningit/archive/refs/tags/v$version.tar.gz" -checksum=1e7d80cdeee2dbcebaf61d25205c9faac268a1926ff43fc5c7236f45639c3782 +checksum=bb65c4320e35b3c6d1b26c52b393482c9c28a334a3da8a1301a44cbce480c203 make_check=no # FIXME -pre_check() { - vsed -e '/ --cov/d' \ - -e '/ --no-cov-on-fail/d' \ - -i tox.ini -} - post_install() { vlicense LICENSE } From d39973c1d9f8f2fc33e279637bfc03b7ea5a1cfd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:55 -0500 Subject: [PATCH 0593/1664] python3-natsort: rebuild for Python 3.14 --- srcpkgs/python3-natsort/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-natsort/template b/srcpkgs/python3-natsort/template index f37ddb2c9ed7f2..683aebd9c71abc 100644 --- a/srcpkgs/python3-natsort/template +++ b/srcpkgs/python3-natsort/template @@ -1,7 +1,7 @@ # Template file for 'python3-natsort' pkgname=python3-natsort version=8.4.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 99d299e730d03653d71c9a3246e810c687d7e5b9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:55 -0500 Subject: [PATCH 0594/1664] python3-urwidtrees: rebuild for Python 3.14 --- srcpkgs/python3-urwidtrees/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-urwidtrees/template b/srcpkgs/python3-urwidtrees/template index 27dcb578da1f1c..a5206d2a4e4f45 100644 --- a/srcpkgs/python3-urwidtrees/template +++ b/srcpkgs/python3-urwidtrees/template @@ -1,7 +1,7 @@ # Template file for 'python3-urwidtrees' pkgname=python3-urwidtrees version=1.0.3 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-urwid" From 30d83e1c39e4c6a88400d8afbdacdb3d93b77aac Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:56 -0500 Subject: [PATCH 0595/1664] python3-mpd2: rebuild for Python 3.14 --- srcpkgs/python3-mpd2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mpd2/template b/srcpkgs/python3-mpd2/template index 7aafcc44bea6a4..280c98f1dda773 100644 --- a/srcpkgs/python3-mpd2/template +++ b/srcpkgs/python3-mpd2/template @@ -1,7 +1,7 @@ # Template file for 'python3-mpd2' pkgname=python3-mpd2 version=3.1.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From f871ef25e4eb79bb9dd39cfd5f21412c6bd80625 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:56 -0500 Subject: [PATCH 0596/1664] blueprint-compiler: rebuild for Python 3.14 --- srcpkgs/blueprint-compiler/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/blueprint-compiler/template b/srcpkgs/blueprint-compiler/template index 5b0570fe921dac..c4640a05d0d45d 100644 --- a/srcpkgs/blueprint-compiler/template +++ b/srcpkgs/blueprint-compiler/template @@ -1,7 +1,7 @@ # Template file for 'blueprint-compiler' pkgname=blueprint-compiler version=0.18.0 -revision=1 +revision=2 build_style=meson depends="python3-gobject" checkdepends="${depends} libadwaita-devel xvfb-run" From d470a92d53d9ef5d5f04c1eda1942915960500e2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:56 -0500 Subject: [PATCH 0597/1664] python3-bibtexparser: rebuild for Python 3.14 --- srcpkgs/python3-bibtexparser/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-bibtexparser/template b/srcpkgs/python3-bibtexparser/template index f33f62750ba49d..c0ec9153a8d960 100644 --- a/srcpkgs/python3-bibtexparser/template +++ b/srcpkgs/python3-bibtexparser/template @@ -1,7 +1,7 @@ # Template file for 'python3-bibtexparser' pkgname=python3-bibtexparser version=1.1.0 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-parsing python3-future" From 3bc04141806f50658c966a7bcd2a29377a7c3b04 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:56 -0500 Subject: [PATCH 0598/1664] libsearpc: rebuild for Python 3.14 --- srcpkgs/libsearpc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template index 061ef2693e40de..7b67831a46de7a 100644 --- a/srcpkgs/libsearpc/template +++ b/srcpkgs/libsearpc/template @@ -3,7 +3,7 @@ pkgname=libsearpc # floating tag 3.3-latest version=3.3.0.20220902 -revision=3 +revision=4 _gitrev=15f6f0b9f451b9ecf99dedab72e9242e54e124eb build_style=gnu-configure configure_args="--with-python3 --disable-static --disable-compile-demo" From c744c5057872047eb85238026974f3f1db0f9a93 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:56 -0500 Subject: [PATCH 0599/1664] python3-reportlab: update to 4.4.4. --- srcpkgs/python3-reportlab/template | 29 +++++++---------------------- 1 file changed, 7 insertions(+), 22 deletions(-) diff --git a/srcpkgs/python3-reportlab/template b/srcpkgs/python3-reportlab/template index 35976af161599b..22c11d698c2b4c 100644 --- a/srcpkgs/python3-reportlab/template +++ b/srcpkgs/python3-reportlab/template @@ -1,32 +1,17 @@ # Template file for 'python3-reportlab' pkgname=python3-reportlab -version=3.6.11 -revision=5 -build_style=python3-module -make_build_args="--use-system-libart" -hostmakedepends="python3-setuptools" -makedepends="python3-devel freetype-devel libart-devel" -depends="python3-Pillow" +version=4.4.4 +revision=1 +build_style=python3-pep517 +hostmakedepends="python3-setuptools python3-wheel" +depends="python3-Pillow python3-charset-normalizer" short_desc="Python3 library for generating PDFs and graphics" maintainer="Orphaned " license="BSD-3-Clause" homepage="https://www.reportlab.com/" distfiles="${PYPI_SITE}/r/reportlab/reportlab-${version}.tar.gz" -checksum=04fc4420f0548815d0623e031c86a1f7f3f3003e699d9af7148742e2d72b024a - -do_configure() { - if [ "$CROSS_BUILD" ]; then - sed -i -e " - s,'/usr/include/libart,'$XBPS_CROSS_BASE/usr/include/libart, - " setup.py - fi - cat <<-EOF >local-setup.cfg - [FREETYPE_PATHS] - lib = ${XBPS_CROSS_BASE}/usr/lib - inc = ${XBPS_CROSS_BASE}/usr/include/freetype2 - EOF -} +checksum=cb2f658b7f4a15be2cc68f7203aa67faef67213edd4f2d4bdd3eb20dab75a80d post_install() { - vlicense LICENSE.txt + vlicense LICENSE } From 06ba0e3998ee2d1d3b359d7fda24b07343f6550f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:56 -0500 Subject: [PATCH 0600/1664] python3-evdev: rebuild for Python 3.14 --- srcpkgs/python3-evdev/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-evdev/template b/srcpkgs/python3-evdev/template index 813c7e2be4c682..5fe7f58e1310f3 100644 --- a/srcpkgs/python3-evdev/template +++ b/srcpkgs/python3-evdev/template @@ -1,7 +1,7 @@ # Template file for 'python3-evdev' pkgname=python3-evdev version=1.7.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" makedepends="python3-devel" From ed6aa3149bf2fd7169752757640c53d0adf289e7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:57 -0500 Subject: [PATCH 0601/1664] python3-vdf: rebuild for Python 3.14 --- srcpkgs/python3-vdf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-vdf/template b/srcpkgs/python3-vdf/template index bfa47b3c02bd6e..9f3c5aca1dd199 100644 --- a/srcpkgs/python3-vdf/template +++ b/srcpkgs/python3-vdf/template @@ -1,7 +1,7 @@ # Template file for 'python3-vdf' pkgname=python3-vdf version=3.4 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-setuptools" From b8d0d9272e1fed6bc63774feb9c0b01c5e4054b5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:57 -0500 Subject: [PATCH 0602/1664] python3-CherryPy: rebuild for Python 3.14 --- srcpkgs/python3-CherryPy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-CherryPy/template b/srcpkgs/python3-CherryPy/template index babf781370c10a..0ef479a8b3ecfa 100644 --- a/srcpkgs/python3-CherryPy/template +++ b/srcpkgs/python3-CherryPy/template @@ -1,7 +1,7 @@ # Template file for 'python3-CherryPy' pkgname=python3-CherryPy version=18.10.0 -revision=1 +revision=2 build_style=python3-module make_check_args="--ignore cherrypy/test/test_session.py --deselect cherrypy/test/test_states.py::ServerStateTests::test_2_KeyboardInterrupt" From 944e35891613480e84931d280231f943dccbe71d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:57 -0500 Subject: [PATCH 0603/1664] python3-M2Crypto: update to 0.46.2. --- srcpkgs/python3-M2Crypto/patches/setup-fix.patch | 15 +++++++++++++++ srcpkgs/python3-M2Crypto/template | 10 +++++----- 2 files changed, 20 insertions(+), 5 deletions(-) create mode 100644 srcpkgs/python3-M2Crypto/patches/setup-fix.patch diff --git a/srcpkgs/python3-M2Crypto/patches/setup-fix.patch b/srcpkgs/python3-M2Crypto/patches/setup-fix.patch new file mode 100644 index 00000000000000..2f0a424109767c --- /dev/null +++ b/srcpkgs/python3-M2Crypto/patches/setup-fix.patch @@ -0,0 +1,15 @@ +--- a/setup.py ++++ b/setup.py +@@ -209,7 +209,11 @@ + # generate src/SWIG/x509_v_flag.h to overcome weaknesses of swig + # https://todo.sr.ht/~mcepl/m2crypto/298 + with open("src/SWIG/x509_v_flag.h", "w", encoding="utf-8") as x509_v_h: +- cmd = [shutil.which(os.environ.get("CC", "gcc"))] ++ cmd = shlex.split(os.environ.get("CC", "gcc")) ++ if cmd: ++ cmd[0] = shutil.which(cmd[0]) ++ if not cmd and cmd[0]: ++ raise RuntimeError("compiler is not in path") + cflags = os.environ.get("CFLAGS") + if cflags is not None: + cmd += cflags.split() diff --git a/srcpkgs/python3-M2Crypto/template b/srcpkgs/python3-M2Crypto/template index a61177702ed9bb..4791cfc4ed31e5 100644 --- a/srcpkgs/python3-M2Crypto/template +++ b/srcpkgs/python3-M2Crypto/template @@ -1,7 +1,7 @@ # Template file for 'python3-M2Crypto' pkgname=python3-M2Crypto -version=0.42.0 -revision=2 +version=0.46.2 +revision=1 build_style=python3-module hostmakedepends="python3-setuptools swig openssl-devel" makedepends="openssl-devel python3-devel" @@ -9,11 +9,11 @@ depends="python3" checkdepends="ca-certificates python3-pytest python3-parameterized" short_desc="Python crypto and SSL toolkit" maintainer="Orphaned " -license="MIT" +license="BSD-2-Clause" homepage="https://gitlab.com/m2crypto/m2crypto/" distfiles="${PYPI_SITE}/m/m2crypto/m2crypto-${version}.tar.gz" -checksum=42b62df2caf623161b1d643a7235464c2fe2a3105049ebc498a6d47dc08f64b4 +checksum=13c2fa89562f7b8af40cc74b55f490be5e2ab8ccfb739f11c16d3ce6221a61ba post_install() { - vlicense LICENCE + vlicense LICENSES/BSD-2-Clause.txt } From 295935ced383f18564403a28af02057ca176cbd6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:57 -0500 Subject: [PATCH 0604/1664] python3-gnupg: rebuild for Python 3.14 --- srcpkgs/python3-gnupg/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-gnupg/template b/srcpkgs/python3-gnupg/template index 83fc1cb3b41f64..8cdf6edc15ac0e 100644 --- a/srcpkgs/python3-gnupg/template +++ b/srcpkgs/python3-gnupg/template @@ -1,7 +1,7 @@ # Template file for 'python3-gnupg' pkgname=python3-gnupg version=0.5.1 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3 gnupg" From b26339c73342cded3acab379b301107883adb954 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:57 -0500 Subject: [PATCH 0605/1664] python3-looseversion: rebuild for Python 3.14 --- srcpkgs/python3-looseversion/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-looseversion/template b/srcpkgs/python3-looseversion/template index 71b323e4bf7343..acd548f797386f 100644 --- a/srcpkgs/python3-looseversion/template +++ b/srcpkgs/python3-looseversion/template @@ -1,7 +1,7 @@ # Template file for 'python3-looseversion' pkgname=python3-looseversion version=1.3.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools hatchling" depends="python3" From 4f03a12a98ff9466e7a73d13a17f8ce6db47a375 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:57 -0500 Subject: [PATCH 0606/1664] python3-rpm-vercmp: rebuild for Python 3.14 --- srcpkgs/python3-rpm-vercmp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-rpm-vercmp/template b/srcpkgs/python3-rpm-vercmp/template index 220d5ab250e8bc..896a4157333863 100644 --- a/srcpkgs/python3-rpm-vercmp/template +++ b/srcpkgs/python3-rpm-vercmp/template @@ -1,7 +1,7 @@ # Template file for 'python3-rpm-vercmp' pkgname=python3-rpm-vercmp version=0.1.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel python3-pbr" short_desc="Pure Python implementation of rpmvercmp" From ad1979a0c9c6f7fd35b0c83ee18e0f4ebcb5a4d7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:58 -0500 Subject: [PATCH 0607/1664] python3-timelib: rebuild for Python 3.14 --- srcpkgs/python3-timelib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-timelib/template b/srcpkgs/python3-timelib/template index 23832754042a13..efe8abea14abd1 100644 --- a/srcpkgs/python3-timelib/template +++ b/srcpkgs/python3-timelib/template @@ -1,7 +1,7 @@ # Template file for 'python3-timelib' pkgname=python3-timelib version=0.3.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-Cython" makedepends="python3-devel" From 7c56ad3d6854e3a2b33b97da50fd775954910cf5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:58 -0500 Subject: [PATCH 0608/1664] sagemath: rebuild for Python 3.14 --- ...-Refactor_atexit.pyx_for_python_3.14.patch | 138 ++++++++++++++++++ srcpkgs/sagemath/patches/get_patches | 1 + srcpkgs/sagemath/template | 2 +- 3 files changed, 140 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/sagemath/patches/41021-Refactor_atexit.pyx_for_python_3.14.patch diff --git a/srcpkgs/sagemath/patches/41021-Refactor_atexit.pyx_for_python_3.14.patch b/srcpkgs/sagemath/patches/41021-Refactor_atexit.pyx_for_python_3.14.patch new file mode 100644 index 00000000000000..2adf116fcf59d6 --- /dev/null +++ b/srcpkgs/sagemath/patches/41021-Refactor_atexit.pyx_for_python_3.14.patch @@ -0,0 +1,138 @@ +diff --git a/src/sage/cpython/atexit.pyx b/src/sage/cpython/atexit.pyx +index c74c1d0308a..e6ecad9eadc 100644 +--- a/src/sage/cpython/atexit.pyx ++++ b/src/sage/cpython/atexit.pyx +@@ -144,51 +144,99 @@ cdef class restore_atexit: + _set_exithandlers(self._exithandlers) + + from cpython.ref cimport PyObject ++import sys + +-# Implement "_atexit_callbacks()" for each supported python version ++# Implement a uniform interface for getting atexit callbacks + cdef extern from *: + """ ++ #ifndef Py_BUILD_CORE + #define Py_BUILD_CORE ++ #endif + #undef _PyGC_FINALIZED + #include "internal/pycore_interp.h" + #include "internal/pycore_pystate.h" +- #if PY_VERSION_HEX >= 0x030c0000 +- // struct atexit_callback was renamed in 3.12 to atexit_py_callback +- #define atexit_callback atexit_py_callback +- #endif +- static atexit_callback ** _atexit_callbacks(PyObject *self) { ++ ++ // Always define this struct for Cython's use ++ typedef struct { ++ PyObject *func; ++ PyObject *args; ++ PyObject *kwargs; ++ } atexit_callback_struct; ++ ++ #if PY_VERSION_HEX >= 0x030e0000 ++ // Python 3.14+: atexit uses a PyList ++ static PyObject* get_atexit_callbacks_list(PyObject *self) { + PyInterpreterState *interp = _PyInterpreterState_GET(); + struct atexit_state state = interp->atexit; + return state.callbacks; + } ++ ++ // Dummy function for Python 3.14+ (never called) ++ static atexit_callback_struct** get_atexit_callbacks_array(PyObject *self) { ++ PyErr_SetString(PyExc_RuntimeError, "Python >= 3.14 has no atexit array"); ++ return NULL; ++ } ++ #else ++ // Python < 3.14: atexit uses C array ++ static atexit_callback_struct** get_atexit_callbacks_array(PyObject *self) { ++ PyInterpreterState *interp = _PyInterpreterState_GET(); ++ struct atexit_state state = interp->atexit; ++ // Cast from atexit_callback** to our struct type ++ return (atexit_callback_struct**)state.callbacks; ++ } ++ ++ // Dummy function for Python < 3.14 (never called) ++ static PyObject* get_atexit_callbacks_list(PyObject *self) { ++ PyErr_SetString(PyExc_RuntimeError, "Python < 3.14 has no atexit list"); ++ return NULL; ++ } ++ #endif + """ +- ctypedef struct atexit_callback: ++ # Declare both functions - they exist in all Python versions (one is dummy) ++ object get_atexit_callbacks_list(object module) ++ ++ ctypedef struct atexit_callback_struct: + PyObject* func + PyObject* args + PyObject* kwargs +- atexit_callback** _atexit_callbacks(object module) ++ atexit_callback_struct** get_atexit_callbacks_array(object module) except NULL + + + def _get_exithandlers(): + """Return list of exit handlers registered with the atexit module.""" +- cdef atexit_callback ** callbacks +- cdef atexit_callback callback +- cdef list exithandlers ++ cdef list exithandlers = [] ++ cdef atexit_callback_struct ** callbacks ++ cdef atexit_callback_struct callback + cdef int idx + cdef object kwargs +- +- exithandlers = [] +- callbacks = _atexit_callbacks(atexit) +- +- for idx in range(atexit._ncallbacks()): +- callback = callbacks[idx][0] +- if callback.kwargs: +- kwargs = callback.kwargs +- else: +- kwargs = {} +- exithandlers.append((callback.func, +- callback.args, +- kwargs)) ++ ++ # Python 3.14+ uses a PyList directly ++ if sys.version_info >= (3, 14): ++ callbacks_list = get_atexit_callbacks_list(atexit) ++ if callbacks_list is None: ++ return exithandlers ++ # callbacks is a list of tuples: [(func, args, kwargs), ...] ++ # Normalize kwargs to ensure it's always a dict (not None) ++ # Note: In Python 3.14+, atexit stores callbacks in LIFO order ++ # (most recently registered first), but we return them in FIFO ++ # order (registration order) for consistency with earlier versions ++ for item in reversed(callbacks_list): ++ func, args, kwargs = item ++ if kwargs is None: ++ kwargs = {} ++ exithandlers.append((func, args, kwargs)) ++ else: ++ # Python < 3.14 uses C array ++ callbacks = get_atexit_callbacks_array(atexit) ++ for idx in range(atexit._ncallbacks()): ++ callback = callbacks[idx][0] ++ if callback.kwargs: ++ kwargs = callback.kwargs ++ else: ++ kwargs = {} ++ exithandlers.append((callback.func, ++ callback.args, ++ kwargs)) + return exithandlers + + +@@ -203,6 +251,9 @@ def _set_exithandlers(exithandlers): + + # We could do this more efficiently by directly rebuilding the array + # of atexit_callbacks, but this is much simpler ++ # Note: exithandlers is in registration order (FIFO). ++ # In Python 3.14+, atexit.register prepends to the list (LIFO), ++ # so registering in forward order gives us the correct execution order. + for callback in exithandlers: + atexit.register(callback[0], *callback[1], **callback[2]) + diff --git a/srcpkgs/sagemath/patches/get_patches b/srcpkgs/sagemath/patches/get_patches index da686621e23070..91a07391d35cd4 100755 --- a/srcpkgs/sagemath/patches/get_patches +++ b/srcpkgs/sagemath/patches/get_patches @@ -32,4 +32,5 @@ cd $(dirname "$0") # positive review get_pr 40594 "Fix segfault in libgap" +get_pr 41021 "Refactor atexit.pyx for python 3.14" get_pr 41141 "Fix compatibility issue for ipython 9.7.0" diff --git a/srcpkgs/sagemath/template b/srcpkgs/sagemath/template index f57922d234a280..cff2ca49c2708f 100644 --- a/srcpkgs/sagemath/template +++ b/srcpkgs/sagemath/template @@ -1,7 +1,7 @@ # Template file for 'sagemath' pkgname=sagemath version=10.7 -revision=2 +revision=3 _pypi_version=${version/.beta/b} _pypi_version=${_pypi_version/.rc/rc} build_style=python3-pep517 From fa5c7832bc1135e22f8b8cca96dc7fa30a6cda12 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:58 -0500 Subject: [PATCH 0609/1664] python3-apprise: rebuild for Python 3.14 --- srcpkgs/python3-apprise/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-apprise/template b/srcpkgs/python3-apprise/template index 2e9a5cb35e0963..896d13ffb06d5e 100644 --- a/srcpkgs/python3-apprise/template +++ b/srcpkgs/python3-apprise/template @@ -1,7 +1,7 @@ # Template file for 'python3-apprise' pkgname=python3-apprise version=1.9.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel python3-Babel" depends="python3-certifi python3-Markdown python3-click python3-requests From ac166f517fecc60df40933ebb463102bf0137349 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:58 -0500 Subject: [PATCH 0610/1664] python3-puremagic: rebuild for Python 3.14 --- srcpkgs/python3-puremagic/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-puremagic/template b/srcpkgs/python3-puremagic/template index f5ce47acf5e31e..d62b87b6f8a49e 100644 --- a/srcpkgs/python3-puremagic/template +++ b/srcpkgs/python3-puremagic/template @@ -1,7 +1,7 @@ # Template file for 'python3-puremagic' pkgname=python3-puremagic version=1.11 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 5101266b2b279021811d7f30a9e53ef776eb1321 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:58 -0500 Subject: [PATCH 0611/1664] python3-sabctools: rebuild for Python 3.14 --- srcpkgs/python3-sabctools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sabctools/template b/srcpkgs/python3-sabctools/template index 3cfe4ab6801a43..4a5538fb2011f4 100644 --- a/srcpkgs/python3-sabctools/template +++ b/srcpkgs/python3-sabctools/template @@ -1,7 +1,7 @@ # Template file for 'python3-sabctools' pkgname=python3-sabctools version=8.2.5 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" makedepends="python3-devel" From 03a41f371149a4ade1c67f72016ae5c8b134c6df Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:58 -0500 Subject: [PATCH 0612/1664] tbb: rebuild for Python 3.14 --- srcpkgs/tbb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tbb/template b/srcpkgs/tbb/template index 80448a54e95886..8c25996ced8ebb 100644 --- a/srcpkgs/tbb/template +++ b/srcpkgs/tbb/template @@ -1,7 +1,7 @@ # Template file for 'tbb' pkgname=tbb version=2022.2.0 -revision=2 +revision=3 build_style=cmake configure_args="-DTBB_STRICT=OFF -DTBB_TEST=OFF" makedepends="libgomp-devel libhwloc-devel" From 9e5bcab4854577a0eb73c6df18f543a565a5bf9a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:59 -0500 Subject: [PATCH 0613/1664] python3-colorlog: rebuild for Python 3.14 --- srcpkgs/python3-colorlog/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-colorlog/template b/srcpkgs/python3-colorlog/template index c2ac00b2625c8e..68f986fb5b9fe7 100644 --- a/srcpkgs/python3-colorlog/template +++ b/srcpkgs/python3-colorlog/template @@ -1,7 +1,7 @@ # Template file for 'python3-colorlog' pkgname=python3-colorlog version=6.8.2 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From b9c1524fc10ddd8f6fc4f8010deb697f112b84c0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:59 -0500 Subject: [PATCH 0614/1664] scons: rebuild for Python 3.14 --- srcpkgs/scons/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/scons/template b/srcpkgs/scons/template index 52f3eae83b6d08..31bbcb3763a725 100644 --- a/srcpkgs/scons/template +++ b/srcpkgs/scons/template @@ -1,7 +1,7 @@ # Template file for 'scons' pkgname=scons version=4.10.1 -revision=1 +revision=2 build_style="python3-module" make_install_args="--install-data=/usr/share/man/man1/" hostmakedepends="python3 python3-setuptools" From e1e5f4bf9a35f80604b862d4d7aa0bacff9aad13 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:59 -0500 Subject: [PATCH 0615/1664] python3-IPy: rebuild for Python 3.14 --- srcpkgs/python3-IPy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-IPy/template b/srcpkgs/python3-IPy/template index 5300c4c731ec6f..f991bee2e8a4b9 100644 --- a/srcpkgs/python3-IPy/template +++ b/srcpkgs/python3-IPy/template @@ -1,7 +1,7 @@ # Template file for 'python3-IPy' pkgname=python3-IPy version=1.01 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 9202b5d640b1ea2e0ab90fa1d73be4cfdb52db02 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:59 -0500 Subject: [PATCH 0616/1664] python3-ripe-atlas-cousteau: rebuild for Python 3.14 --- srcpkgs/python3-ripe-atlas-cousteau/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ripe-atlas-cousteau/template b/srcpkgs/python3-ripe-atlas-cousteau/template index c8e86a2fc7ca69..93159dd27b7c38 100644 --- a/srcpkgs/python3-ripe-atlas-cousteau/template +++ b/srcpkgs/python3-ripe-atlas-cousteau/template @@ -1,7 +1,7 @@ # Template file for 'python3-ripe-atlas-cousteau' pkgname=python3-ripe-atlas-cousteau version=1.4.2 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-dateutil python3-socketIO-client" From 30a6c965a0111c26e44ddd9c4bdea4126d7851a9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:59 -0500 Subject: [PATCH 0617/1664] python3-ripe-atlas-sagan: rebuild for Python 3.14 --- srcpkgs/python3-ripe-atlas-sagan/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ripe-atlas-sagan/template b/srcpkgs/python3-ripe-atlas-sagan/template index 77c491de5afab4..0ef5dfcebb620f 100644 --- a/srcpkgs/python3-ripe-atlas-sagan/template +++ b/srcpkgs/python3-ripe-atlas-sagan/template @@ -1,7 +1,7 @@ # Template file for 'python3-ripe-atlas-sagan' pkgname=python3-ripe-atlas-sagan version=1.3.0 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-dateutil python3-pytz python3-cryptography" From 878bd21fa5c3ce5918e54b83b7db4be8a37348e4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:59 -0500 Subject: [PATCH 0618/1664] avahi-discover: rebuild for Python 3.14 --- srcpkgs/avahi-discover/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/avahi-discover/template b/srcpkgs/avahi-discover/template index 7b7a622ad001d3..63a08b9b7a890a 100644 --- a/srcpkgs/avahi-discover/template +++ b/srcpkgs/avahi-discover/template @@ -5,7 +5,7 @@ # pkgname=avahi-discover version=0.8 -revision=8 +revision=9 build_style=gnu-configure build_helper="gir" configure_args="--disable-qt3 --disable-qt4 --disable-mono --disable-monodoc From 5b284dbf0023fe469850ac5660975413bd6aacab Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:00 -0500 Subject: [PATCH 0619/1664] libimobiledevice: rebuild for Python 3.14 --- srcpkgs/libimobiledevice/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libimobiledevice/template b/srcpkgs/libimobiledevice/template index 0c0262cb2f2a1d..a1a8bca58b7c8c 100644 --- a/srcpkgs/libimobiledevice/template +++ b/srcpkgs/libimobiledevice/template @@ -1,7 +1,7 @@ # Template file for 'libimobiledevice' pkgname=libimobiledevice version=1.3.0 -revision=7 +revision=8 build_style=gnu-configure hostmakedepends="automake libtool pkgconf python3-Cython" makedepends="python3-devel libglib-devel openssl-devel From fe0c0944ebbc2e647add1a1bce783c7da91976ef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:00 -0500 Subject: [PATCH 0620/1664] python3-binaryornot: rebuild for Python 3.14 --- srcpkgs/python3-binaryornot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-binaryornot/template b/srcpkgs/python3-binaryornot/template index 0b44f95ed97cc1..4b95f0c4e3b48e 100644 --- a/srcpkgs/python3-binaryornot/template +++ b/srcpkgs/python3-binaryornot/template @@ -1,7 +1,7 @@ # Template file for 'python3-binaryornot' pkgname=python3-binaryornot version=0.4.4 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-chardet" From 17f196da9f38151401134e79eff1911e9c49ff11 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:00 -0500 Subject: [PATCH 0621/1664] python3-debian: rebuild for Python 3.14 --- srcpkgs/python3-debian/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-debian/template b/srcpkgs/python3-debian/template index 66b9e22017a65a..145c9e1e54836d 100644 --- a/srcpkgs/python3-debian/template +++ b/srcpkgs/python3-debian/template @@ -1,7 +1,7 @@ # Template file for 'python3-debian' pkgname=python3-debian version=0.1.49 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-chardet" From 7203043983f0bd3a992ada4e733ce8d3c5a6b0d0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:00 -0500 Subject: [PATCH 0622/1664] python3-license-expression: rebuild for Python 3.14 --- srcpkgs/python3-license-expression/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-license-expression/template b/srcpkgs/python3-license-expression/template index 53c9423a92b275..aa259a5a93c7ac 100644 --- a/srcpkgs/python3-license-expression/template +++ b/srcpkgs/python3-license-expression/template @@ -1,7 +1,7 @@ # Template file for 'python3-license-expression' pkgname=python3-license-expression version=21.6.14 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools python3-setuptools_scm" depends="python3-boolean.py" From 7b1bc645442dea58bbbc319e9f4b02679ae1a3a0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:00 -0500 Subject: [PATCH 0623/1664] python3-aionotify: rebuild for Python 3.14 --- srcpkgs/python3-aionotify/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-aionotify/template b/srcpkgs/python3-aionotify/template index 9160e5819a1180..b526ae46759fea 100644 --- a/srcpkgs/python3-aionotify/template +++ b/srcpkgs/python3-aionotify/template @@ -1,7 +1,7 @@ # Template file for 'python3-aionotify' pkgname=python3-aionotify version=0.2.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From fe08bb092ce62a7f1f2a24a3440da2a26fc8f375 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:00 -0500 Subject: [PATCH 0624/1664] python3-xdg-base-dirs: rebuild for Python 3.14 --- srcpkgs/python3-xdg-base-dirs/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-xdg-base-dirs/template b/srcpkgs/python3-xdg-base-dirs/template index 4dac952df18575..7f3ddcc019544d 100644 --- a/srcpkgs/python3-xdg-base-dirs/template +++ b/srcpkgs/python3-xdg-base-dirs/template @@ -1,7 +1,7 @@ # Template file for 'python3-xdg-base-dirs' pkgname=python3-xdg-base-dirs version=6.0.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3" From ca862b7d46674df351f8c26de16cf0f81888c836 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:01 -0500 Subject: [PATCH 0625/1664] python3-enchant: rebuild for Python 3.14 --- srcpkgs/python3-enchant/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-enchant/template b/srcpkgs/python3-enchant/template index a47b2af3b34884..fde2a451778489 100644 --- a/srcpkgs/python3-enchant/template +++ b/srcpkgs/python3-enchant/template @@ -1,7 +1,7 @@ # Template file for 'python3-enchant' pkgname=python3-enchant version=3.2.2 -revision=1 +revision=2 build_style=python3-module # https://github.com/pyenchant/pyenchant/issues/313 make_check_args=" From e44881d1d1d9b9fbb47b78975819c044a77144c9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:01 -0500 Subject: [PATCH 0626/1664] python3-pyxattr: rebuild for Python 3.14 --- srcpkgs/python3-pyxattr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyxattr/template b/srcpkgs/python3-pyxattr/template index 25a8c31a905f60..7f19d6272fb91e 100644 --- a/srcpkgs/python3-pyxattr/template +++ b/srcpkgs/python3-pyxattr/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyxattr' pkgname=python3-pyxattr version=0.8.1 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From 189a69b0b4f9a53070e6ff1531b5f98ae579fd35 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:01 -0500 Subject: [PATCH 0627/1664] python3-pyqt6-webengine: rebuild for Python 3.14 --- srcpkgs/python3-pyqt6-webengine/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyqt6-webengine/template b/srcpkgs/python3-pyqt6-webengine/template index bfae8c6b940a1a..bddfb06ef3ab0e 100644 --- a/srcpkgs/python3-pyqt6-webengine/template +++ b/srcpkgs/python3-pyqt6-webengine/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyqt6-webengine' pkgname=python3-pyqt6-webengine version=6.10.0 -revision=1 +revision=2 build_style=sip-build build_helper=python3 hostmakedepends="qt6-base python3-PyQt-builder pkg-config" From de861b87820bf113f0a04392d9e058d6410cb2ef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:01 -0500 Subject: [PATCH 0628/1664] python3-dotty-dict: rebuild for Python 3.14 --- srcpkgs/python3-dotty-dict/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-dotty-dict/template b/srcpkgs/python3-dotty-dict/template index 28f21418ef760c..c5458bf884b436 100644 --- a/srcpkgs/python3-dotty-dict/template +++ b/srcpkgs/python3-dotty-dict/template @@ -1,7 +1,7 @@ # Template file for 'python3-dotty-dict' pkgname=python3-dotty-dict version=1.3.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 6a60e58a39f166cfaa637202146d33f6b83f5f79 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:01 -0500 Subject: [PATCH 0629/1664] python3-hid: rebuild for Python 3.14 --- srcpkgs/python3-hid/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-hid/template b/srcpkgs/python3-hid/template index 325e3e2ea47cc5..f4d3980b96736f 100644 --- a/srcpkgs/python3-hid/template +++ b/srcpkgs/python3-hid/template @@ -1,7 +1,7 @@ # Template file for 'python3-hid' pkgname=python3-hid version=1.0.4 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="hidapi python3" From 9b97bb7002f993dd74848e941060909eceeddf90 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:01 -0500 Subject: [PATCH 0630/1664] python3-hjson: rebuild for Python 3.14 --- srcpkgs/python3-hjson/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-hjson/template b/srcpkgs/python3-hjson/template index 9db138265872bc..7591df45d3aa33 100644 --- a/srcpkgs/python3-hjson/template +++ b/srcpkgs/python3-hjson/template @@ -1,7 +1,7 @@ # Template file for 'python3-hjson' pkgname=python3-hjson version=3.1.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 1d242fbb71b3395eb23dc5fc49536a73aeab3097 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:02 -0500 Subject: [PATCH 0631/1664] python3-milc: rebuild for Python 3.14 --- srcpkgs/python3-milc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-milc/template b/srcpkgs/python3-milc/template index 0f8607eed96b0a..8c7668e9ffd078 100644 --- a/srcpkgs/python3-milc/template +++ b/srcpkgs/python3-milc/template @@ -1,7 +1,7 @@ # Template file for 'python3-milc' pkgname=python3-milc version=1.9.1 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-platformdirs python3-argcomplete python3-colorama python3-halo From 8f0a9af41f8e653631d07413046ae5874cab83d2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:02 -0500 Subject: [PATCH 0632/1664] python3-owslib: rebuild for Python 3.14 --- srcpkgs/python3-owslib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-owslib/template b/srcpkgs/python3-owslib/template index f46dfd1849f850..0e9f27cae491de 100644 --- a/srcpkgs/python3-owslib/template +++ b/srcpkgs/python3-owslib/template @@ -1,7 +1,7 @@ # Template file for 'python3-owslib' pkgname=python3-owslib version=0.25.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-devel python3-setuptools" depends="python3-lxml" From f2c85c88fee12be294c10e5a2e36f30fa292c2b0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:02 -0500 Subject: [PATCH 0633/1664] python3-pyqt6-qsci: rebuild for Python 3.14 --- srcpkgs/python3-pyqt6-qsci/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyqt6-qsci/template b/srcpkgs/python3-pyqt6-qsci/template index 46744fb9c46f4b..994b0fb856a400 100644 --- a/srcpkgs/python3-pyqt6-qsci/template +++ b/srcpkgs/python3-pyqt6-qsci/template @@ -3,7 +3,7 @@ # Splited because pyqt6-qsci requires qscintilla-qt6 built at configure time. pkgname=python3-pyqt6-qsci version=2.14.1 -revision=2 +revision=3 build_wrksrc=Python build_style=sip-build build_helper=qemu From 59f9d954fa15e069bb94a5bf591ecef0db134f77 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:02 -0500 Subject: [PATCH 0634/1664] python3-zope.location: rebuild for Python 3.14 --- srcpkgs/python3-zope.location/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zope.location/template b/srcpkgs/python3-zope.location/template index e124563f2c7e57..207c8b5ac007d0 100644 --- a/srcpkgs/python3-zope.location/template +++ b/srcpkgs/python3-zope.location/template @@ -1,7 +1,7 @@ # Template file for 'python3-zope.location' pkgname=python3-zope.location version=4.2 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools python3-repoze.sphinx.autointerface python3-Sphinx" From 9be1b25f916dec2564ad53105ac99b7a33072a55 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:02 -0500 Subject: [PATCH 0635/1664] python3-zope.testing: rebuild for Python 3.14 --- srcpkgs/python3-zope.testing/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zope.testing/template b/srcpkgs/python3-zope.testing/template index 419157f3d552a8..6d323693e361f8 100644 --- a/srcpkgs/python3-zope.testing/template +++ b/srcpkgs/python3-zope.testing/template @@ -1,7 +1,7 @@ # Template file for 'python3-zope.testing' pkgname=python3-zope.testing version=4.7 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 63b0a82ff1b8bbc8e07be22b9b85d3ddadc3716d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:02 -0500 Subject: [PATCH 0636/1664] python3-zope.testrunner: rebuild for Python 3.14 --- srcpkgs/python3-zope.testrunner/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zope.testrunner/template b/srcpkgs/python3-zope.testrunner/template index 7f30ac42df419e..72066cf4d799a3 100644 --- a/srcpkgs/python3-zope.testrunner/template +++ b/srcpkgs/python3-zope.testrunner/template @@ -1,7 +1,7 @@ # Template file for 'python3-zope.testrunner' pkgname=python3-zope.testrunner version=5.2 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools python3-Sphinx python3-sphinxcontrib" depends="python3-zope.exceptions python3-zope.interface python3-six" From 9f5d9275102373b2965dca1dd7cb9606b7bc9f4d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:03 -0500 Subject: [PATCH 0637/1664] python3-ansicolor: rebuild for Python 3.14 --- srcpkgs/python3-ansicolor/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ansicolor/template b/srcpkgs/python3-ansicolor/template index 6ea159cece05bb..ae160ac4d69f06 100644 --- a/srcpkgs/python3-ansicolor/template +++ b/srcpkgs/python3-ansicolor/template @@ -1,7 +1,7 @@ # Template file for 'python3-ansicolor' pkgname=python3-ansicolor version=0.2.6 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 6f5c2d653e4ed04c9e37e41ac3f236fce05c76dc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:03 -0500 Subject: [PATCH 0638/1664] python3-pycollada: rebuild for Python 3.14 --- srcpkgs/python3-pycollada/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pycollada/template b/srcpkgs/python3-pycollada/template index eea82bdd84fd4b..fd55b745594b07 100644 --- a/srcpkgs/python3-pycollada/template +++ b/srcpkgs/python3-pycollada/template @@ -1,7 +1,7 @@ # Template file for 'python3-pycollada' pkgname=python3-pycollada version=0.8 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-dateutil python3-numpy" From b176f45bf7fa302b8406ec6b7bfb90730b71a8ec Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:03 -0500 Subject: [PATCH 0639/1664] python3-pyglet: rebuild for Python 3.14 --- srcpkgs/python3-pyglet/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyglet/template b/srcpkgs/python3-pyglet/template index 57f31fcf67faad..3bad79a1e20a85 100644 --- a/srcpkgs/python3-pyglet/template +++ b/srcpkgs/python3-pyglet/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyglet' pkgname=python3-pyglet version=1.4.10 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools unzip" depends="python3" From 80934193b7f38df34475410e5fb3b37b07b827d9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:03 -0500 Subject: [PATCH 0640/1664] python3-rtree: rebuild for Python 3.14 --- srcpkgs/python3-rtree/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-rtree/template b/srcpkgs/python3-rtree/template index b1ee20100bbc69..5ff86f9cc7db35 100644 --- a/srcpkgs/python3-rtree/template +++ b/srcpkgs/python3-rtree/template @@ -1,7 +1,7 @@ # Template file for 'python3-rtree' pkgname=python3-rtree version=1.0.0 -revision=4 +revision=5 build_style=python3-module make_check_target="tests" hostmakedepends="python3-setuptools libspatialindex-devel python3-wheel" From 4a030c448024458653cac97e54d20e46e4df841f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:03 -0500 Subject: [PATCH 0641/1664] python3-shapely: rebuild for Python 3.14 --- srcpkgs/python3-shapely/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-shapely/template b/srcpkgs/python3-shapely/template index b07cf843ab440e..9d8b70b1f5235c 100644 --- a/srcpkgs/python3-shapely/template +++ b/srcpkgs/python3-shapely/template @@ -1,7 +1,7 @@ # Template file for 'python3-shapely' pkgname=python3-shapely version=2.1.1 -revision=1 +revision=2 build_style=python3-module build_helper=numpy hostmakedepends="python3-setuptools python3-Cython geos" From d549916e83457941efb341f85b08791acfd48c1f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:03 -0500 Subject: [PATCH 0642/1664] python3-svg.path: rebuild for Python 3.14 --- srcpkgs/python3-svg.path/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-svg.path/template b/srcpkgs/python3-svg.path/template index 35d15ecba15c5a..62233e96ffed54 100644 --- a/srcpkgs/python3-svg.path/template +++ b/srcpkgs/python3-svg.path/template @@ -1,7 +1,7 @@ # Template file for 'python3-svg.path' pkgname=python3-svg.path version=6.2 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From e70589178f99c06544617eea3ee247c7ddc0c768 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:04 -0500 Subject: [PATCH 0643/1664] python3-libtmux: rebuild for Python 3.14 --- srcpkgs/python3-libtmux/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-libtmux/template b/srcpkgs/python3-libtmux/template index 534f2d28ba1c7e..8d7493f9bd8a9c 100644 --- a/srcpkgs/python3-libtmux/template +++ b/srcpkgs/python3-libtmux/template @@ -1,7 +1,7 @@ # Template file for 'python3-libtmux' pkgname=python3-libtmux version=0.37.0 -revision=2 +revision=3 build_style=python3-pep517 make_check_target="tests" hostmakedepends="python3-poetry-core" From 3320ec46a7bf340fa95f4665bf50aac5720b3c3d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:04 -0500 Subject: [PATCH 0644/1664] python3-requests-file: rebuild for Python 3.14 --- srcpkgs/python3-requests-file/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-requests-file/template b/srcpkgs/python3-requests-file/template index 9578fb8d80962b..a66db4f8e5e43a 100644 --- a/srcpkgs/python3-requests-file/template +++ b/srcpkgs/python3-requests-file/template @@ -1,7 +1,7 @@ # Template file for 'python3-requests-file' pkgname=python3-requests-file version=1.4.3 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 python3-requests python3-six" From 9adf647ccd27d3969edabcf58aa31893df607320 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:04 -0500 Subject: [PATCH 0645/1664] python3-testtools: rebuild for Python 3.14 --- srcpkgs/python3-testtools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-testtools/template b/srcpkgs/python3-testtools/template index 49ca5032a03db3..22cd52ea33cd4d 100644 --- a/srcpkgs/python3-testtools/template +++ b/srcpkgs/python3-testtools/template @@ -1,7 +1,7 @@ # Template file for 'python3-testtools' pkgname=python3-testtools version=2.4.0 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools python3-pbr" depends="python3-pbr" From 83efd90aec92bd716c3476182c79a756e84f1782 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:04 -0500 Subject: [PATCH 0646/1664] python3-pandas: rebuild for Python 3.14 --- srcpkgs/python3-pandas/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pandas/template b/srcpkgs/python3-pandas/template index b5613570f58a34..229b65d95af3d6 100644 --- a/srcpkgs/python3-pandas/template +++ b/srcpkgs/python3-pandas/template @@ -1,7 +1,7 @@ # Template file for 'python3-pandas' pkgname=python3-pandas version=2.2.3 -revision=2 +revision=3 build_style=python3-pep517 build_helper="meson numpy" # Pandas imposes strict and unnecessary restrictions on build dependencies From 57274adeafa4f37d0c3c9bd13e54643b61469c10 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:04 -0500 Subject: [PATCH 0647/1664] python3-joblib: rebuild for Python 3.14 --- srcpkgs/python3-joblib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-joblib/template b/srcpkgs/python3-joblib/template index b972e5de0488bb..6da0e45917e97d 100644 --- a/srcpkgs/python3-joblib/template +++ b/srcpkgs/python3-joblib/template @@ -1,7 +1,7 @@ # Template file for 'python3-joblib' pkgname=python3-joblib version=1.4.2 -revision=2 +revision=3 build_style=python3-pep517 make_check_args=" --deselect joblib/test/test_disk.py::test_disk_used From c8aa7fc822eeed3c6c8626d7b45952509aa73095 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:04 -0500 Subject: [PATCH 0648/1664] python3-threadpoolctl: rebuild for Python 3.14 --- srcpkgs/python3-threadpoolctl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-threadpoolctl/template b/srcpkgs/python3-threadpoolctl/template index 22db31a12797a9..7e0c6aa087703e 100644 --- a/srcpkgs/python3-threadpoolctl/template +++ b/srcpkgs/python3-threadpoolctl/template @@ -1,7 +1,7 @@ # Template file for 'python3-threadpoolctl' pkgname=python3-threadpoolctl version=3.6.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3" From 4bcb27efaf546946574a05e310b50ed562effdba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:05 -0500 Subject: [PATCH 0649/1664] python3-imageio: rebuild for Python 3.14 --- srcpkgs/python3-imageio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-imageio/template b/srcpkgs/python3-imageio/template index d509f678116736..44ef36f4f3d7e7 100644 --- a/srcpkgs/python3-imageio/template +++ b/srcpkgs/python3-imageio/template @@ -1,7 +1,7 @@ # Template file for 'python3-imageio' pkgname=python3-imageio version=2.37.2 -revision=1 +revision=2 build_style=python3-pep517 # tests have unpackaged dependencies, require network or missing data files make_check_args="--ignore=tests/test_pillow.py --ignore=tests/test_ffmpeg.py From 6969e1fb1c72c5a829dcd63e2c372b194f4a14ba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:05 -0500 Subject: [PATCH 0650/1664] python3-lazy_loader: rebuild for Python 3.14 --- srcpkgs/python3-lazy_loader/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-lazy_loader/template b/srcpkgs/python3-lazy_loader/template index db0e5374089543..af3b73d03e32fb 100644 --- a/srcpkgs/python3-lazy_loader/template +++ b/srcpkgs/python3-lazy_loader/template @@ -1,7 +1,7 @@ # Template file for 'python3-lazy_loader' pkgname=python3-lazy_loader version=0.4 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From fe2e2fdfc2d095e24f58656d23e9f2cea800de53 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:05 -0500 Subject: [PATCH 0651/1664] python3-tifffile: rebuild for Python 3.14 --- srcpkgs/python3-tifffile/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tifffile/template b/srcpkgs/python3-tifffile/template index 707f1badae4de7..6fe8ce98d448dd 100644 --- a/srcpkgs/python3-tifffile/template +++ b/srcpkgs/python3-tifffile/template @@ -1,7 +1,7 @@ # Template file for 'python3-tifffile' pkgname=python3-tifffile version=2025.10.16 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-numpy" From fbd424370e7c9737ae61ac559dd64de81a85c3fc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:05 -0500 Subject: [PATCH 0652/1664] python3-html2text: rebuild for Python 3.14 --- srcpkgs/python3-html2text/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-html2text/template b/srcpkgs/python3-html2text/template index 15e4f80da1a9c3..4c8393788845a8 100644 --- a/srcpkgs/python3-html2text/template +++ b/srcpkgs/python3-html2text/template @@ -1,7 +1,7 @@ # Template file for 'python3-html2text' pkgname=python3-html2text version=2025.4.15 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3" From 78568d3bd06113bcd780a84f59381d61c6b194b3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:05 -0500 Subject: [PATCH 0653/1664] python3-hypercorn: update to 0.18.0. --- srcpkgs/python3-hypercorn/template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/srcpkgs/python3-hypercorn/template b/srcpkgs/python3-hypercorn/template index 50a8c719be087e..cd259392783035 100644 --- a/srcpkgs/python3-hypercorn/template +++ b/srcpkgs/python3-hypercorn/template @@ -1,9 +1,9 @@ # Template file for 'python3-hypercorn' pkgname=python3-hypercorn -version=0.17.3 -revision=2 +version=0.18.0 +revision=1 build_style=python3-pep517 -hostmakedepends="python3-poetry-core" +hostmakedepends="python3-pdm-backend" depends="python3-h11 python3-h2 python3-priority python3-wsproto" checkdepends="python3-pytest-asyncio python3-trio python3-mock python3-hypothesis python3-httpx $depends" @@ -13,7 +13,7 @@ license="MIT" homepage="https://github.com/pgjones/hypercorn" changelog="https://raw.githubusercontent.com/pgjones/hypercorn/main/CHANGELOG.rst" distfiles="https://github.com/pgjones/hypercorn/archive/refs/tags/${version}.tar.gz" -checksum=991221bf8df1368165a22cde98f1ae2b591aa2e65c9c72c8e03ea56a9da7f672 +checksum=094c4b85d69aeb9a79e28e8f8c5f3d87dbd8c1e6668c085ff08104f02fde0497 do_check() { vsed -i pyproject.toml -e '/addopts/d' From 1ef6533bab2a5f887558a4161c95cdac699f5bd8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:05 -0500 Subject: [PATCH 0654/1664] qtile: rebuild for Python 3.14 --- srcpkgs/qtile/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qtile/template b/srcpkgs/qtile/template index acbfe6989e8b9a..cca89f12ed028c 100644 --- a/srcpkgs/qtile/template +++ b/srcpkgs/qtile/template @@ -1,7 +1,7 @@ # Template file for 'qtile' pkgname=qtile version=0.33.0 -revision=1 +revision=2 build_style=python3-pep517 _wlroots=0.17 hostmakedepends="python3-setuptools_scm python3-cairocffi python3-xcffib python3-wheel From d16e7d4a8ead42f4f903bf738f5b2a873d980e01 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:06 -0500 Subject: [PATCH 0655/1664] zbar: rebuild for Python 3.14 --- srcpkgs/zbar/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/zbar/template b/srcpkgs/zbar/template index a8cef17827e2af..d36710f5d5f88c 100644 --- a/srcpkgs/zbar/template +++ b/srcpkgs/zbar/template @@ -1,7 +1,7 @@ # Template file for 'zbar' pkgname=zbar version=0.23.1 -revision=8 +revision=9 build_style=gnu-configure build_helper=gir configure_args="$(vopt_with qt) --with-gir --with-python=python3" From 067a726a80bdc58115714247e55cbd38fbc9064a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:06 -0500 Subject: [PATCH 0656/1664] python3-PyVirtualDisplay: rebuild for Python 3.14 --- srcpkgs/python3-PyVirtualDisplay/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-PyVirtualDisplay/template b/srcpkgs/python3-PyVirtualDisplay/template index 28f6dc88fc1066..75563b27673c56 100644 --- a/srcpkgs/python3-PyVirtualDisplay/template +++ b/srcpkgs/python3-PyVirtualDisplay/template @@ -1,7 +1,7 @@ # Template file for 'python3-PyVirtualDisplay' pkgname=python3-PyVirtualDisplay version=3.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-EasyProcess" From faee2464ccd7923415dabaaa660ecf8c16582704 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:06 -0500 Subject: [PATCH 0657/1664] python3-execnet: rebuild for Python 3.14 --- srcpkgs/python3-execnet/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-execnet/template b/srcpkgs/python3-execnet/template index 254210555f8e83..9832ead0622489 100644 --- a/srcpkgs/python3-execnet/template +++ b/srcpkgs/python3-execnet/template @@ -1,7 +1,7 @@ # Template file for 'python3-execnet' pkgname=python3-execnet version=2.1.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3" From e74d93ba912f1e7e5938434e49a65cf339fed9b8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:06 -0500 Subject: [PATCH 0658/1664] python3-pywinrm: rebuild for Python 3.14 --- srcpkgs/python3-pywinrm/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pywinrm/template b/srcpkgs/python3-pywinrm/template index e8c7f76bc3798a..d51e1c5dc9d02c 100644 --- a/srcpkgs/python3-pywinrm/template +++ b/srcpkgs/python3-pywinrm/template @@ -1,7 +1,7 @@ # Template file for 'python3-pywinrm' pkgname=python3-pywinrm version=0.5.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3 python3-requests python3-requests-ntlm python3-xmltodict" From d79ab55d03c8b4f9c4093d0d0f20b6e1471454e5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:06 -0500 Subject: [PATCH 0659/1664] python3-pytest-timeout: rebuild for Python 3.14 --- srcpkgs/python3-pytest-timeout/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-timeout/template b/srcpkgs/python3-pytest-timeout/template index 27746b21175870..4870de6c0888d4 100644 --- a/srcpkgs/python3-pytest-timeout/template +++ b/srcpkgs/python3-pytest-timeout/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-timeout' pkgname=python3-pytest-timeout version=2.4.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3-pytest" From 8d50becab397e8009f34664b49c89f9bbcadf847 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:06 -0500 Subject: [PATCH 0660/1664] python3-isort: rebuild for Python 3.14 --- srcpkgs/python3-isort/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-isort/template b/srcpkgs/python3-isort/template index 109953c95d60f4..8595bfe9761bf0 100644 --- a/srcpkgs/python3-isort/template +++ b/srcpkgs/python3-isort/template @@ -1,7 +1,7 @@ # Template file for 'python3-isort' pkgname=python3-isort version=6.1.0 -revision=1 +revision=2 build_style=python3-pep517 make_check_args="-p no:warnings --ignore tests/benchmark/test_api.py From 0f18e47187ec07a03147dadca678401bc7de1581 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:07 -0500 Subject: [PATCH 0661/1664] python3-httpbin: rebuild for Python 3.14 --- srcpkgs/python3-httpbin/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-httpbin/template b/srcpkgs/python3-httpbin/template index 5496f0059c309a..2fee64eaa96f48 100644 --- a/srcpkgs/python3-httpbin/template +++ b/srcpkgs/python3-httpbin/template @@ -1,7 +1,7 @@ # Template file for 'python3-httpbin' pkgname=python3-httpbin version=0.10.2 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-Flask python3-Brotli python3-decorator python3-flasgger From 1181b152d09430071e644921f4f57b94a3485582 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:07 -0500 Subject: [PATCH 0662/1664] flake8: rebuild for Python 3.14 --- srcpkgs/flake8/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template index 8c45e29734aafc..28422105ea217b 100644 --- a/srcpkgs/flake8/template +++ b/srcpkgs/flake8/template @@ -1,7 +1,7 @@ # Template file for 'flake8' pkgname=flake8 version=7.1.2 -revision=1 +revision=2 build_style=python3-pep517 make_check_target="tests/unit" make_check_args="--ignore=tests/unit/plugins/pycodestyle_test.py From bf20b8bba7c4f0c7a68da536861b625694220cca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:07 -0500 Subject: [PATCH 0663/1664] python3-coverage: rebuild for Python 3.14 --- srcpkgs/python3-coverage/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-coverage/template b/srcpkgs/python3-coverage/template index aa9e4c9f999762..bbe5a8656e4de9 100644 --- a/srcpkgs/python3-coverage/template +++ b/srcpkgs/python3-coverage/template @@ -1,7 +1,7 @@ # Template file for 'python3-coverage' pkgname=python3-coverage version=7.9.1 -revision=1 +revision=2 build_style=python3-pep517 # this counts files but our installed package has fewer files make_check_args="--deselect tests/test_testing.py::test_all_our_source_files" From 569a0b7a01e79bf758348fa18bebbd1426a48934 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:07 -0500 Subject: [PATCH 0664/1664] black: rebuild for Python 3.14 --- srcpkgs/black/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/black/template b/srcpkgs/black/template index ae432f04bec1ec..d68faa0230e2ae 100644 --- a/srcpkgs/black/template +++ b/srcpkgs/black/template @@ -1,7 +1,7 @@ # Template file for 'black' pkgname=black version=25.9.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs hatch-fancy-pypi-readme" depends="python3-click python3-mypy_extensions python3-packaging python3-pathspec From 8b5c1b504679476b2038bb04bde44ad624ea0bfa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:07 -0500 Subject: [PATCH 0665/1664] python3-py-cpuinfo: rebuild for Python 3.14 --- srcpkgs/python3-py-cpuinfo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-py-cpuinfo/template b/srcpkgs/python3-py-cpuinfo/template index 1188940f99f6f5..38d9b9b8da3486 100644 --- a/srcpkgs/python3-py-cpuinfo/template +++ b/srcpkgs/python3-py-cpuinfo/template @@ -1,7 +1,7 @@ # Template file for 'python3-py-cpuinfo' pkgname=python3-py-cpuinfo version=9.0.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 6b9122a807f9f3ad1d1263a777546d36c64a186d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:07 -0500 Subject: [PATCH 0666/1664] python3-pytest-asyncio: rebuild for Python 3.14 --- srcpkgs/python3-pytest-asyncio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template index 0bf004129455a4..17c1d9285933ed 100644 --- a/srcpkgs/python3-pytest-asyncio/template +++ b/srcpkgs/python3-pytest-asyncio/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-asyncio' pkgname=python3-pytest-asyncio version=1.0.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3-pytest" From a44d7eefea9c46eb2cff830c017863d743cd620e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:08 -0500 Subject: [PATCH 0667/1664] python3-nanobind: rebuild for Python 3.14 --- srcpkgs/python3-nanobind/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-nanobind/template b/srcpkgs/python3-nanobind/template index 6f314c73d73345..2b7aff8b18a5fc 100644 --- a/srcpkgs/python3-nanobind/template +++ b/srcpkgs/python3-nanobind/template @@ -1,7 +1,7 @@ # Template file for 'python3-nanobind' pkgname=python3-nanobind version=2.9.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-scikit-build-core ninja" depends="python3" From 5ddcc0fda2de83cf147a39c3c47aaa882f759ce1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:08 -0500 Subject: [PATCH 0668/1664] python3-pytools: rebuild for Python 3.14 --- srcpkgs/python3-pytools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytools/template b/srcpkgs/python3-pytools/template index 4e01ce82d1a9b7..94df5a157afd60 100644 --- a/srcpkgs/python3-pytools/template +++ b/srcpkgs/python3-pytools/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytools' pkgname=python3-pytools version=2025.2.5 -revision=1 +revision=2 build_style=python3-pep517 # Ignored checks require unpackaged siphash24 package make_check_args=" From 738e149252c86052e5ea6e9f78c926279e508669 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:08 -0500 Subject: [PATCH 0669/1664] python3-click-aliases: rebuild for Python 3.14 --- srcpkgs/python3-click-aliases/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-click-aliases/template b/srcpkgs/python3-click-aliases/template index 0fbe15313733bc..47c6f47989916f 100644 --- a/srcpkgs/python3-click-aliases/template +++ b/srcpkgs/python3-click-aliases/template @@ -1,7 +1,7 @@ # Template file for 'python3-click-aliases' pkgname=python3-click-aliases version=1.0.5 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-wheel" depends="python3-click" From 0c50215a419876a9cf72cd83ff5e57288b3440d7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:08 -0500 Subject: [PATCH 0670/1664] python3-nethsm: rebuild for Python 3.14 --- srcpkgs/python3-nethsm/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-nethsm/template b/srcpkgs/python3-nethsm/template index f3f81e1f874efb..7023b24fb4746a 100644 --- a/srcpkgs/python3-nethsm/template +++ b/srcpkgs/python3-nethsm/template @@ -1,7 +1,7 @@ # Template file for 'python3-nethsm' pkgname=python3-nethsm version=1.4.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3-certifi python3-cryptography python3-dateutil python3-typing_extensions python3-urllib3" From d74eb8a87e72731e58a2ef650f375705b9cfea1a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:08 -0500 Subject: [PATCH 0671/1664] python3-nitrokey: rebuild for Python 3.14 --- srcpkgs/python3-nitrokey/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-nitrokey/template b/srcpkgs/python3-nitrokey/template index 9ea37caad825a2..6e4cfd244c2971 100644 --- a/srcpkgs/python3-nitrokey/template +++ b/srcpkgs/python3-nitrokey/template @@ -1,7 +1,7 @@ # Template file for 'python3-nitrokey' pkgname=python3-nitrokey version=0.4.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-fido2 python3-requests python3-semver python3-tlv8 From 9dbbe5b3014d3f7638561bc88d871f62ee9388cd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:08 -0500 Subject: [PATCH 0672/1664] python3-nkdfu: rebuild for Python 3.14 --- srcpkgs/python3-nkdfu/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-nkdfu/template b/srcpkgs/python3-nkdfu/template index bd833f736d89ca..04899c0f85c215 100644 --- a/srcpkgs/python3-nkdfu/template +++ b/srcpkgs/python3-nkdfu/template @@ -1,7 +1,7 @@ # Template file for 'python3-nkdfu' pkgname=python3-nkdfu version=0.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3-fire python3-intelhex python3-libusb1 python3-usb python3-tqdm" From 55907d4cab0beb16be8ed88c94c8f29b3906d596 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:09 -0500 Subject: [PATCH 0673/1664] python3-lsp-server: update to 1.13.1. --- srcpkgs/python3-lsp-server/template | 36 ++++++++++++----------------- 1 file changed, 15 insertions(+), 21 deletions(-) diff --git a/srcpkgs/python3-lsp-server/template b/srcpkgs/python3-lsp-server/template index 31b9bc722c72c3..21f7edd9930096 100644 --- a/srcpkgs/python3-lsp-server/template +++ b/srcpkgs/python3-lsp-server/template @@ -1,42 +1,36 @@ # Template file for 'python3-lsp-server' pkgname=python3-lsp-server -version=1.11.0 -revision=2 -build_style=python3-module +version=1.13.1 +revision=1 +build_style=python3-pep517 +make_check_args=" + --ignore=test/plugins/test_completion.py + --ignore=test/plugins/test_pydocstyle_lint.py + --ignore=test/plugins/test_rope_rename.py + --ignore=test/plugins/test_yapf_format.py + --ignore=test/plugins/test_autoimport.py +" hostmakedepends="python3-setuptools python3-setuptools_scm python3-wheel" -depends="python3-jedi python3-pluggy python3-lsp-jsonrpc python3-ultrajson - python3-setuptools python3-docstring-to-markdown python3-yapf python3-toml" +depends="python3-docstring-to-markdown python3-jedi python3-pluggy + python3-lsp-jsonrpc python3-ultrajson black" checkdepends="${depends} autopep8 python3-coverage python3-flaky python3-matplotlib python3-mccabe python3-mock python3-numpy python3-pandas python3-pycodestyle python3-PyQt5 python3-pyflakes python3-pylint python3-pytest python3-pytest-cov - flake8" + python3-websockets flake8" short_desc="Python implementation of the Language Server Protocol" maintainer="Cameron Nemo " license="MIT" homepage="https://github.com/python-lsp/python-lsp-server" changelog="https://raw.githubusercontent.com/python-lsp/python-lsp-server/develop/CHANGELOG.md" -distfiles="${PYPI_SITE}/p/python-lsp-server/python-lsp-server-${version}.tar.gz" -checksum=89edd6fb3f7852e4bf5a3d1d95ea41484d1a28fa94b6e3cbff12b9db123b8e86 - -do_check() { - python3 -m pytest \ - --ignore=test/plugins/test_completion.py \ - --ignore=test/plugins/test_pydocstyle_lint.py \ - --ignore=test/plugins/test_rope_rename.py \ - --ignore=test/plugins/test_yapf_format.py \ - --ignore=test/plugins/test_autoimport.py -} +distfiles="${PYPI_SITE}/p/python_lsp_server/python_lsp_server-${version}.tar.gz" +checksum=bfa3d6bbca3fc3e6d0137b27cd1eabee65783a8d4314c36e1e230c603419afa3 post_install() { vlicense LICENSE - ln -s pylsp "${DESTDIR}/usr/bin/pyls" } python3-language-server_package() { metapackage=yes depends="python3-lsp-server>=${version}_${revision}" short_desc+=" (transitional dummy package)" - pkg_install() { - vmove usr/bin/pyls - } } From 078b0afca344dc5ddee94e0b0e43baea71a02852 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:09 -0500 Subject: [PATCH 0674/1664] python3-cached-property: rebuild for Python 3.14 --- srcpkgs/python3-cached-property/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cached-property/template b/srcpkgs/python3-cached-property/template index a5b58c33119ff0..2f06ca55db1110 100644 --- a/srcpkgs/python3-cached-property/template +++ b/srcpkgs/python3-cached-property/template @@ -1,7 +1,7 @@ # Template file for 'python3-cached-property' pkgname=python3-cached-property version=1.5.2 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 1fd372a7d7db601fe991a96fa78803b011cea942 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:09 -0500 Subject: [PATCH 0675/1664] python3-graphviz: rebuild for Python 3.14 --- srcpkgs/python3-graphviz/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-graphviz/template b/srcpkgs/python3-graphviz/template index 633c00218253fc..bdeab0c83f2969 100644 --- a/srcpkgs/python3-graphviz/template +++ b/srcpkgs/python3-graphviz/template @@ -1,7 +1,7 @@ # Template file for 'python3-graphviz' pkgname=python3-graphviz version=0.20.1 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="graphviz python3" From 2b439332a210cccfbdf3d709f4255ea2fe29d7e6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:09 -0500 Subject: [PATCH 0676/1664] python3-colored-traceback: rebuild for Python 3.14 --- srcpkgs/python3-colored-traceback/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-colored-traceback/template b/srcpkgs/python3-colored-traceback/template index 64c71010de881d..9817ee99438f03 100644 --- a/srcpkgs/python3-colored-traceback/template +++ b/srcpkgs/python3-colored-traceback/template @@ -1,7 +1,7 @@ # Template file for 'python3-colored-traceback' pkgname=python3-colored-traceback version=0.4.2 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 python3-colorama" From a313da288d42b433bc7e4c4ad7495b85d7963c78 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:09 -0500 Subject: [PATCH 0677/1664] python3-pyelftools: rebuild for Python 3.14 --- srcpkgs/python3-pyelftools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyelftools/template b/srcpkgs/python3-pyelftools/template index 0b61ed931ddfdd..de2500c2290b08 100644 --- a/srcpkgs/python3-pyelftools/template +++ b/srcpkgs/python3-pyelftools/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyelftools' pkgname=python3-pyelftools version=0.32 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From e7fd764bc2ff2a0a75087a458fa8caf479d05590 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:09 -0500 Subject: [PATCH 0678/1664] python3-ropgadget: rebuild for Python 3.14 --- srcpkgs/python3-ropgadget/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ropgadget/template b/srcpkgs/python3-ropgadget/template index 739d5fcfc9d734..3eba6c83fd3e67 100644 --- a/srcpkgs/python3-ropgadget/template +++ b/srcpkgs/python3-ropgadget/template @@ -1,7 +1,7 @@ # Template file for 'python3-ropgadget' pkgname=python3-ropgadget version=7.7 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From 7d02dba834854b2ecec7f2690dc09f767a66f312 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:10 -0500 Subject: [PATCH 0679/1664] python3-zstandard: rebuild for Python 3.14 --- srcpkgs/python3-zstandard/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zstandard/template b/srcpkgs/python3-zstandard/template index be412a2be65a1c..6d50fe8beae896 100644 --- a/srcpkgs/python3-zstandard/template +++ b/srcpkgs/python3-zstandard/template @@ -1,7 +1,7 @@ # Template file for 'python3-zstandard' pkgname=python3-zstandard version=0.22.0 -revision=3 +revision=4 build_style=python3-module make_build_args="--system-zstd" hostmakedepends="python3-setuptools" From 71166a28686c1a00e94c149e66cbad7a7a0f2240 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:10 -0500 Subject: [PATCH 0680/1664] python3-tenacity: rebuild for Python 3.14 --- srcpkgs/python3-tenacity/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tenacity/template b/srcpkgs/python3-tenacity/template index 6df1cd54cb629e..ea347fc9dbdc39 100644 --- a/srcpkgs/python3-tenacity/template +++ b/srcpkgs/python3-tenacity/template @@ -1,7 +1,7 @@ # Template file for 'python3-tenacity' pkgname=python3-tenacity version=8.2.2 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3-Sphinx python3-tornado python3-typeguard" From a05b164bb39cd82649188078ac2bd8ff7d9405bd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:10 -0500 Subject: [PATCH 0681/1664] python3-userpath: rebuild for Python 3.14 --- srcpkgs/python3-userpath/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-userpath/template b/srcpkgs/python3-userpath/template index 561b02844e0f80..91d061ac4c41b7 100644 --- a/srcpkgs/python3-userpath/template +++ b/srcpkgs/python3-userpath/template @@ -1,7 +1,7 @@ # Template file for 'python3-userpath' pkgname=python3-userpath version=1.9.2 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling python3-wheel" depends="python3-click" From 85c07c6ca353428782b8dbc66dc6851d7892ffac Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:10 -0500 Subject: [PATCH 0682/1664] python3-pygame: rebuild for Python 3.14 --- srcpkgs/python3-pygame/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pygame/template b/srcpkgs/python3-pygame/template index 9aee0ad77490dd..8884c8914c3a49 100644 --- a/srcpkgs/python3-pygame/template +++ b/srcpkgs/python3-pygame/template @@ -1,7 +1,7 @@ # Template file for 'python3-pygame' pkgname=python3-pygame version=2.6.1 -revision=2 +revision=3 build_style=python3-module make_build_args="cython" hostmakedepends="pkg-config python3-setuptools python3-Cython SDL2_mixer-devel From 8048379a563b9ff9df26671878d58edd3ff82c70 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:10 -0500 Subject: [PATCH 0683/1664] python3-Arpeggio: rebuild for Python 3.14 --- srcpkgs/python3-Arpeggio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Arpeggio/template b/srcpkgs/python3-Arpeggio/template index d04ed1917e038e..9d752df7c197e0 100644 --- a/srcpkgs/python3-Arpeggio/template +++ b/srcpkgs/python3-Arpeggio/template @@ -1,7 +1,7 @@ # Template file for 'python3-Arpeggio' pkgname=python3-Arpeggio version=2.0.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 34c1496ab1dc89c01f57aedf999b230d3974822d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:10 -0500 Subject: [PATCH 0684/1664] python3-geojson: rebuild for Python 3.14 --- srcpkgs/python3-geojson/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-geojson/template b/srcpkgs/python3-geojson/template index af2ca686d173d8..337e7731852635 100644 --- a/srcpkgs/python3-geojson/template +++ b/srcpkgs/python3-geojson/template @@ -1,7 +1,7 @@ # Template file for 'python3-geojson' pkgname=python3-geojson version=2.5.0 -revision=7 +revision=8 build_style=python3-module pycompile_module="geojson" hostmakedepends="python3-setuptools" From 3247035e15c3e64766d10520ad1498fba8b0f920 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:11 -0500 Subject: [PATCH 0685/1664] python3-openapi-spec-validator: rebuild for Python 3.14 --- srcpkgs/python3-openapi-spec-validator/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-openapi-spec-validator/template b/srcpkgs/python3-openapi-spec-validator/template index 0726aadac0e64d..e20b1f529513e5 100644 --- a/srcpkgs/python3-openapi-spec-validator/template +++ b/srcpkgs/python3-openapi-spec-validator/template @@ -1,7 +1,7 @@ # Template file for 'python3-openapi-spec-validator' pkgname=python3-openapi-spec-validator version=0.7.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-jsonschema-path python3-lazy-object-proxy From a43fdbd46980d62b912f422e1f0e65e0e1216307 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:11 -0500 Subject: [PATCH 0686/1664] python3-openpyxl: rebuild for Python 3.14 --- srcpkgs/python3-openpyxl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-openpyxl/template b/srcpkgs/python3-openpyxl/template index d53d04c946bb44..2611fd5bd7ac66 100644 --- a/srcpkgs/python3-openpyxl/template +++ b/srcpkgs/python3-openpyxl/template @@ -1,7 +1,7 @@ # Template file for 'python3-openpyxl' pkgname=python3-openpyxl version=3.1.3 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-et-xmlfile" From d8a81c31305316f82fb5e72befada67dc5ba529d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:11 -0500 Subject: [PATCH 0687/1664] img2pdf: rebuild for Python 3.14 --- srcpkgs/img2pdf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/img2pdf/template b/srcpkgs/img2pdf/template index eaffeaa319b7bc..d026e15adb85b9 100644 --- a/srcpkgs/img2pdf/template +++ b/srcpkgs/img2pdf/template @@ -1,7 +1,7 @@ # Template file for 'img2pdf' pkgname=img2pdf version=0.6.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-pikepdf python3-setuptools" depends="colord python3-pdfrw python3-pikepdf python3-Pillow python3-tkinter" From e67d45e5d98c2a57e1bf85ccb6189adb95a1df94 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:11 -0500 Subject: [PATCH 0688/1664] python3-pdfminer.six: rebuild for Python 3.14 --- srcpkgs/python3-pdfminer.six/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pdfminer.six/template b/srcpkgs/python3-pdfminer.six/template index dc00e2c554f034..26f586a143a256 100644 --- a/srcpkgs/python3-pdfminer.six/template +++ b/srcpkgs/python3-pdfminer.six/template @@ -1,7 +1,7 @@ # Template file for 'python3-pdfminer.six' pkgname=python3-pdfminer.six version=20240706 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-poetry-core" depends="python3-charset-normalizer python3-cryptography python3-Pillow" From c6576d3fb1aed90e2e51633f5ada596b02164e6b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:11 -0500 Subject: [PATCH 0689/1664] python3-pillow_heif: rebuild for Python 3.14 --- srcpkgs/python3-pillow_heif/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pillow_heif/template b/srcpkgs/python3-pillow_heif/template index 02cae5abd29f23..ef8d3db0937a03 100644 --- a/srcpkgs/python3-pillow_heif/template +++ b/srcpkgs/python3-pillow_heif/template @@ -1,7 +1,7 @@ # Template file for 'python3-pillow_heif' pkgname=python3-pillow_heif version=1.1.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="libheif-devel python3-devel" From caf4c1c3cefffd60e9b36785f7c8d7f0bb6f484c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:11 -0500 Subject: [PATCH 0690/1664] python3-utils: rebuild for Python 3.14 --- srcpkgs/python3-utils/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-utils/template b/srcpkgs/python3-utils/template index b6551163fb502f..d6da618a998188 100644 --- a/srcpkgs/python3-utils/template +++ b/srcpkgs/python3-utils/template @@ -1,7 +1,7 @@ # Template file for 'python3-utils' pkgname=python3-utils version=3.8.2 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-typing_extensions" From c2b695f2978af531b11adbc428ebd99b4d26f0e0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:12 -0500 Subject: [PATCH 0691/1664] python3-ipython_genutils: rebuild for Python 3.14 --- srcpkgs/python3-ipython_genutils/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ipython_genutils/template b/srcpkgs/python3-ipython_genutils/template index 9634458b390371..9ed7fd3b71a4d8 100644 --- a/srcpkgs/python3-ipython_genutils/template +++ b/srcpkgs/python3-ipython_genutils/template @@ -1,7 +1,7 @@ # Template file for 'python3-ipython_genutils' pkgname=python3-ipython_genutils version=0.2.0 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From f837f51c6a1cda949f965d99f42d4d2d144fb15c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:12 -0500 Subject: [PATCH 0692/1664] python3-cjkwrap: rebuild for Python 3.14 --- srcpkgs/python3-cjkwrap/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cjkwrap/template b/srcpkgs/python3-cjkwrap/template index 774f078a67f0d4..c5da59add2ad3c 100644 --- a/srcpkgs/python3-cjkwrap/template +++ b/srcpkgs/python3-cjkwrap/template @@ -1,7 +1,7 @@ # Template file for 'python3-cjkwrap' pkgname=python3-cjkwrap version=2.2 -revision=8 +revision=9 build_style=python3-module pycompile_module="cjkwrap.py" hostmakedepends="python3-setuptools" From 96ff756d17e092d9000fac1d757b672f2ff4bb49 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:12 -0500 Subject: [PATCH 0693/1664] python3-mistune2: rebuild for Python 3.14 --- srcpkgs/python3-mistune2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mistune2/template b/srcpkgs/python3-mistune2/template index 2a2f23bf83eb3a..8b2643ce40f441 100644 --- a/srcpkgs/python3-mistune2/template +++ b/srcpkgs/python3-mistune2/template @@ -1,7 +1,7 @@ # Template file for 'python3-mistune2' pkgname=python3-mistune2 version=2.0.4 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3" From 49713b73eef3bbb11b4e62aedef85f0536949ab0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:12 -0500 Subject: [PATCH 0694/1664] python3-altgraph: rebuild for Python 3.14 --- srcpkgs/python3-altgraph/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-altgraph/template b/srcpkgs/python3-altgraph/template index e214e463b6e095..47dad7b93fe93f 100644 --- a/srcpkgs/python3-altgraph/template +++ b/srcpkgs/python3-altgraph/template @@ -1,7 +1,7 @@ # Template file for 'python3-altgraph' pkgname=python3-altgraph version=0.17 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools" From 08bd72b677610c00c88b3f3a3c42b0cef40afe49 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:12 -0500 Subject: [PATCH 0695/1664] python3-jupyter_console: rebuild for Python 3.14 --- srcpkgs/python3-jupyter_console/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jupyter_console/template b/srcpkgs/python3-jupyter_console/template index 8c470c84d6bf50..14da8b7ca64eb8 100644 --- a/srcpkgs/python3-jupyter_console/template +++ b/srcpkgs/python3-jupyter_console/template @@ -1,7 +1,7 @@ # Template file for 'python3-jupyter_console' pkgname=python3-jupyter_console version=6.6.3 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3-ipython_ipykernel python3-ipython python3-jupyter_client From a0187aca05a0293d3a8da3f98aae727f2e1a8889 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:12 -0500 Subject: [PATCH 0696/1664] python3-jupyter_notebook: update to 7.4.7. --- srcpkgs/python3-jupyter_notebook/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-jupyter_notebook/template b/srcpkgs/python3-jupyter_notebook/template index 226e9e189a03fb..2265dbe9a06647 100644 --- a/srcpkgs/python3-jupyter_notebook/template +++ b/srcpkgs/python3-jupyter_notebook/template @@ -1,6 +1,6 @@ # Template file for 'python3-jupyter_notebook' pkgname=python3-jupyter_notebook -version=7.4.2 +version=7.4.7 revision=1 build_style=python3-pep517 hostmakedepends="hatchling hatch-jupyter-builder jupyterlab" @@ -13,7 +13,7 @@ license="BSD-3-Clause" homepage="https://github.com/jupyter/notebook" changelog="https://raw.githubusercontent.com/jupyter/notebook/main/CHANGELOG.md" distfiles="${PYPI_SITE}/n/notebook/notebook-${version}.tar.gz" -checksum=e739defd28c3f615a6bfb0a2564bd75018a9cc6613aa00bbd9c15e68eed2de1b +checksum=3f0a04027dfcee8a876de48fba13ab77ec8c12f72f848a222ed7f5081b9e342a post_install() { mv ${DESTDIR}/usr/etc ${DESTDIR} From 48e34f9e00ca7214ab2b76dcac557c1966d97507 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:13 -0500 Subject: [PATCH 0697/1664] python3-entrypoints: rebuild for Python 3.14 --- srcpkgs/python3-entrypoints/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-entrypoints/template b/srcpkgs/python3-entrypoints/template index 3739c55d59f483..67c258f83a9ad9 100644 --- a/srcpkgs/python3-entrypoints/template +++ b/srcpkgs/python3-entrypoints/template @@ -1,7 +1,7 @@ # Template file for 'python3-entrypoints' pkgname=python3-entrypoints version=0.4 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3" From 650c9a73ac7c46473ecb51070039988a8af5465e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:13 -0500 Subject: [PATCH 0698/1664] python3-grpcio: rebuild for Python 3.14 --- srcpkgs/python3-grpcio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-grpcio/template b/srcpkgs/python3-grpcio/template index 4de81544485817..0076898ef40d50 100644 --- a/srcpkgs/python3-grpcio/template +++ b/srcpkgs/python3-grpcio/template @@ -1,7 +1,7 @@ # Template file for 'python3-grpcio' pkgname=python3-grpcio version=1.67.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools python3-six python3-Cython" makedepends="python3-devel zlib-devel c-ares-devel re2-devel openssl-devel From 8ae1581c78bffd6cb685f38558807e43ee155014 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:13 -0500 Subject: [PATCH 0699/1664] python3-PyJWT: rebuild for Python 3.14 --- srcpkgs/python3-PyJWT/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-PyJWT/template b/srcpkgs/python3-PyJWT/template index 79d627dbcb725b..bed4e2d7762468 100644 --- a/srcpkgs/python3-PyJWT/template +++ b/srcpkgs/python3-PyJWT/template @@ -1,7 +1,7 @@ # Template file for 'python3-PyJWT' pkgname=python3-PyJWT version=2.7.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-cryptography" From 867b5b4ca181f458280b71855dccac007fe7a138 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:13 -0500 Subject: [PATCH 0700/1664] python3-responses: rebuild for Python 3.14 --- srcpkgs/python3-responses/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-responses/template b/srcpkgs/python3-responses/template index 6d7c48d38a080c..e05facb9999751 100644 --- a/srcpkgs/python3-responses/template +++ b/srcpkgs/python3-responses/template @@ -1,7 +1,7 @@ # Template file for 'python3-responses' pkgname=python3-responses version=0.25.6 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-requests python3-urllib3 python3-yaml" From 6fb31e36e3bbdad955f9ff18cfb749995c1a15bd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:13 -0500 Subject: [PATCH 0701/1664] eduvpn-common: rebuild for Python 3.14 --- srcpkgs/eduvpn-common/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/eduvpn-common/template b/srcpkgs/eduvpn-common/template index e72d94ebfedb9f..0950b2a64cec8a 100644 --- a/srcpkgs/eduvpn-common/template +++ b/srcpkgs/eduvpn-common/template @@ -1,7 +1,7 @@ # Template file for 'eduvpn-common' pkgname=eduvpn-common version=2.1.0 -revision=3 +revision=4 build_style=go go_import_path=github.com/eduvpn/eduvpn-common hostmakedepends="python3-setuptools python3-wheel" From 32f6ca7c30b1e6f4bf14d795428c7a9462de0ffb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:13 -0500 Subject: [PATCH 0702/1664] libkdumpfile: rebuild for Python 3.14 --- srcpkgs/libkdumpfile/patches/missing-include.patch | 10 ++++++++++ srcpkgs/libkdumpfile/template | 3 ++- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/libkdumpfile/patches/missing-include.patch diff --git a/srcpkgs/libkdumpfile/patches/missing-include.patch b/srcpkgs/libkdumpfile/patches/missing-include.patch new file mode 100644 index 00000000000000..c5f7f55bf728c0 --- /dev/null +++ b/srcpkgs/libkdumpfile/patches/missing-include.patch @@ -0,0 +1,10 @@ +--- a/tools/kdumpid/main.c ++++ b/tools/kdumpid/main.c +@@ -23,6 +23,7 @@ + #include + #include + #include ++#include + + #include "kdumpid.h" + diff --git a/srcpkgs/libkdumpfile/template b/srcpkgs/libkdumpfile/template index 0dc6830443b1a8..1e4641cd1cff40 100644 --- a/srcpkgs/libkdumpfile/template +++ b/srcpkgs/libkdumpfile/template @@ -1,7 +1,7 @@ # Template file for 'libkdumpfile' pkgname=libkdumpfile version=0.5.5 -revision=1 +revision=2 build_style=gnu-configure configure_args="PYTHON=python3" hostmakedepends="automake pkg-config libtool python3-setuptools python3-packaging-bootstrap" @@ -11,6 +11,7 @@ maintainer="Leah Neukirchen " license="GPL-2.0-or-later, LGPL-3.0-or-later" homepage="https://github.com/ptesarik/libkdumpfile" distfiles="https://github.com/ptesarik/libkdumpfile/archive/refs/tags/v${version}.tar.gz" +broken="pybump temporary break" checksum=bb46f8573d85adfd30d41f70c126a5fc23428d7c27f3a389f6595a70c62a31f7 nocross="python3-module inside" From 51bfc4b0f9247f6ed555a101592efb21b9d417fe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:14 -0500 Subject: [PATCH 0703/1664] python3-docker: rebuild for Python 3.14 --- srcpkgs/python3-docker/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-docker/template b/srcpkgs/python3-docker/template index ae8d506d905195..fa51654d7d43f8 100644 --- a/srcpkgs/python3-docker/template +++ b/srcpkgs/python3-docker/template @@ -1,7 +1,7 @@ # Template file for 'python3-docker' pkgname=python3-docker version=5.0.2 -revision=5 +revision=6 build_style=python3-module make_check_target="tests/unit" # other tests fail due to needing a running docker daemon hostmakedepends="python3-setuptools" From 41f8c87a89cc5873a98628200e740f851a4199d1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:14 -0500 Subject: [PATCH 0704/1664] python3-blessed: rebuild for Python 3.14 --- srcpkgs/python3-blessed/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-blessed/template b/srcpkgs/python3-blessed/template index 15a8aab5ed2a70..26dc95b0ca677e 100644 --- a/srcpkgs/python3-blessed/template +++ b/srcpkgs/python3-blessed/template @@ -1,7 +1,7 @@ # Template file for 'python3-blessed' pkgname=python3-blessed version=1.23 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-flit_core" depends="python3-six python3-wcwidth" From ab3b02f813324924b6b54c723ec4979ea36bcc3b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:14 -0500 Subject: [PATCH 0705/1664] python3-cwcwidth: rebuild for Python 3.14 --- srcpkgs/python3-cwcwidth/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cwcwidth/template b/srcpkgs/python3-cwcwidth/template index 19a900e9bcd615..3d60c5829dfe50 100644 --- a/srcpkgs/python3-cwcwidth/template +++ b/srcpkgs/python3-cwcwidth/template @@ -1,7 +1,7 @@ # Template file for 'python3-cwcwidth' pkgname=python3-cwcwidth version=0.1.9 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-Cython python3-setuptools python3-wheel" makedepends="python3-devel" From 086dad6afebcb00baac0e85abbb1ee770873ecd7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:14 -0500 Subject: [PATCH 0706/1664] uv: rebuild for Python 3.14 --- srcpkgs/uv/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/uv/template b/srcpkgs/uv/template index fc756989272ae1..9a14d1da855c65 100644 --- a/srcpkgs/uv/template +++ b/srcpkgs/uv/template @@ -1,7 +1,7 @@ # Template file for 'uv' pkgname=uv version=0.9.13 -revision=1 +revision=2 build_style=python3-pep517 build_helper="rust qemu" hostmakedepends="maturin cargo cmake pkg-config" From 05a8a5e805d1c718d2ef1185bbf7299c991af469 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:14 -0500 Subject: [PATCH 0707/1664] python3-snakeoil: rebuild for Python 3.14 --- srcpkgs/python3-snakeoil/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-snakeoil/template b/srcpkgs/python3-snakeoil/template index f6d6b757dc7d74..8506af2192b873 100644 --- a/srcpkgs/python3-snakeoil/template +++ b/srcpkgs/python3-snakeoil/template @@ -1,7 +1,7 @@ # Template file for 'python3-snakeoil' pkgname=python3-snakeoil version=0.10.5 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3-lazy-object-proxy" From fe6fdb54f3cba6a57067347c15482fbe30e34fa0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:14 -0500 Subject: [PATCH 0708/1664] python3-narwhals: update to 2.13.0. --- srcpkgs/python3-narwhals/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-narwhals/template b/srcpkgs/python3-narwhals/template index 83ed4dddbd5ebd..980d1aa48da69b 100644 --- a/srcpkgs/python3-narwhals/template +++ b/srcpkgs/python3-narwhals/template @@ -1,6 +1,6 @@ # Template file for 'python3-narwhals' pkgname=python3-narwhals -version=2.10.2 +version=2.13.0 revision=1 build_style=python3-pep517 hostmakedepends="hatchling" @@ -10,7 +10,7 @@ maintainer="Andrew J. Hesford " license="MIT" homepage="https://narwhals-dev.github.io/narwhals/" distfiles="${PYPI_SITE}/n/narwhals/narwhals-${version}.tar.gz" -checksum=ff738a08bc993cbb792266bec15346c1d85cc68fdfe82a23283c3713f78bd354 +checksum=ee94c97f4cf7cfeebbeca8d274784df8b3d7fd3f955ce418af998d405576fdd9 make_check=no # archive includes no tests post_install() { From b4a02fc27a5378ad325de649fce60e0e2fccade1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:15 -0500 Subject: [PATCH 0709/1664] python3-xyzservices: update to 2025.11.0. --- srcpkgs/python3-xyzservices/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-xyzservices/template b/srcpkgs/python3-xyzservices/template index 91a495aeb8d344..8a44c901f741cc 100644 --- a/srcpkgs/python3-xyzservices/template +++ b/srcpkgs/python3-xyzservices/template @@ -1,6 +1,6 @@ # Template file for 'python3-xyzservices' pkgname=python3-xyzservices -version=2025.10.0 +version=2025.11.0 revision=1 build_style=python3-module # Provider tests require unpackaged 'mercantile' @@ -14,7 +14,7 @@ license="BSD-3-Clause" homepage="https://xyzservices.readthedocs.io/" changelog="https://raw.githubusercontent.com/geopandas/xyzservices/main/CHANGELOG.md" distfiles="${PYPI_SITE}/x/xyzservices/xyzservices-${version}.tar.gz" -checksum=c6b7648276c98e8222fbec84d9c763128cf3653705017a4d6c4c3652480ee144 +checksum=2fc72b49502b25023fd71e8f532fb4beddbbf0aa124d90ea25dba44f545e17ce post_install() { vlicense LICENSE From 3cdeac27456056a8d2aa6e83283b2c36681832d6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:15 -0500 Subject: [PATCH 0710/1664] python3-forbiddenfruit: rebuild for Python 3.14 --- srcpkgs/python3-forbiddenfruit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-forbiddenfruit/template b/srcpkgs/python3-forbiddenfruit/template index fcfe09af6dc6f4..9f47be76467d56 100644 --- a/srcpkgs/python3-forbiddenfruit/template +++ b/srcpkgs/python3-forbiddenfruit/template @@ -1,7 +1,7 @@ # Template file for 'python3-forbiddenfruit' pkgname=python3-forbiddenfruit version=0.1.4 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3" From 34305f2b703b8f6e9ca265b074b8f09a46f5c1e6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:15 -0500 Subject: [PATCH 0711/1664] python3-sh: rebuild for Python 3.14 --- srcpkgs/python3-sh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sh/template b/srcpkgs/python3-sh/template index 82b4dfd322bc15..c5a94a0b144338 100644 --- a/srcpkgs/python3-sh/template +++ b/srcpkgs/python3-sh/template @@ -1,7 +1,7 @@ # Template file for 'python3-sh' pkgname=python3-sh version=1.14.3 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 2c26b2d91f4386720fa7a9877267de40fb10d158 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:15 -0500 Subject: [PATCH 0712/1664] python3-betamax: rebuild for Python 3.14 --- srcpkgs/python3-betamax/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-betamax/template b/srcpkgs/python3-betamax/template index c43a7ddb90a26c..c88b0910ef1456 100644 --- a/srcpkgs/python3-betamax/template +++ b/srcpkgs/python3-betamax/template @@ -1,7 +1,7 @@ # Template file for 'python3-betamax' pkgname=python3-betamax version=0.8.1 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests" From 1b41f7f9fac46bdd410de2cd30f82460f102b8f6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:15 -0500 Subject: [PATCH 0713/1664] python3-fields: rebuild for Python 3.14 --- srcpkgs/python3-fields/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-fields/template b/srcpkgs/python3-fields/template index 111c158be5a47d..5f46c920c9b138 100644 --- a/srcpkgs/python3-fields/template +++ b/srcpkgs/python3-fields/template @@ -1,7 +1,7 @@ # Template file for 'python3-fields' pkgname=python3-fields version=5.0.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 3e979428da87d4698d7f8f58bc18412938ba9149 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:16 -0500 Subject: [PATCH 0714/1664] python3-ansible-compat: rebuild for Python 3.14 --- srcpkgs/python3-ansible-compat/template | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/srcpkgs/python3-ansible-compat/template b/srcpkgs/python3-ansible-compat/template index 985a4b21194c1f..e3d6301903ce81 100644 --- a/srcpkgs/python3-ansible-compat/template +++ b/srcpkgs/python3-ansible-compat/template @@ -1,13 +1,16 @@ # Template file for 'python3-ansible-compat' pkgname=python3-ansible-compat version=24.9.1 -revision=2 +revision=3 build_style=python3-pep517 # deselect unnecessary tests in venv -make_check_args="--deselect test/test_runtime_scan_path.py::test_scan_sys_path[scanF-raises_not_foundT] - --deselect test/test_runtime_scan_path.py::test_scan_sys_path[scanT-raises_not_foundF]" +make_check_args=" + --deselect test/test_runtime_scan_path.py::test_scan_sys_path[scanF-raises_not_foundT] + --deselect test/test_runtime_scan_path.py::test_scan_sys_path[scanT-raises_not_foundF] +" hostmakedepends="python3-wheel python3-setuptools_scm" -depends="ansible-core python3-jsonschema python3-subprocess-tee python3-yaml" +depends="ansible-core python3-jsonschema python3-subprocess-tee python3-yaml + python3-packaging" checkdepends="${depends} python3-pytest python3-pytest-mock python3-cryptography" short_desc="Python package for working with various version of ansible" maintainer="Orphaned " From e94471acad006ea79a09807474f7e4d8a76c03f0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:16 -0500 Subject: [PATCH 0715/1664] python3-wcmatch: rebuild for Python 3.14 --- srcpkgs/python3-wcmatch/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-wcmatch/template b/srcpkgs/python3-wcmatch/template index b3a93135c0b4f5..b3087334ae9b24 100644 --- a/srcpkgs/python3-wcmatch/template +++ b/srcpkgs/python3-wcmatch/template @@ -1,7 +1,7 @@ # Template file for 'python3-wcmatch' pkgname=python3-wcmatch version=8.5 -revision=2 +revision=3 build_style=python3-pep517 make_check_args="--deselect tests/test_globmatch.py::TestTilde::test_tilde_globmatch_no_realpath --deselect tests/test_globmatch.py::TestTilde::test_tilde_globmatch_no_tilde" hostmakedepends="hatchling" From 7006ba804f628a694230172503f082b135af0a48 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:16 -0500 Subject: [PATCH 0716/1664] python3-yamllint: rebuild for Python 3.14 --- srcpkgs/python3-yamllint/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-yamllint/template b/srcpkgs/python3-yamllint/template index 6d89f2ef3fed51..08a3e9d7cbb1c9 100644 --- a/srcpkgs/python3-yamllint/template +++ b/srcpkgs/python3-yamllint/template @@ -1,7 +1,7 @@ # Template file for 'python3-yamllint' pkgname=python3-yamllint version=1.35.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-pathspec python3-yaml" From 0105bde0d620681ebb61c63ff7e6c792f777f89e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:16 -0500 Subject: [PATCH 0717/1664] python3-ciso8601: rebuild for Python 3.14 --- srcpkgs/python3-ciso8601/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ciso8601/template b/srcpkgs/python3-ciso8601/template index 51eaa89d3977c7..2e10132900d549 100644 --- a/srcpkgs/python3-ciso8601/template +++ b/srcpkgs/python3-ciso8601/template @@ -1,7 +1,7 @@ # Template file for 'python3-ciso8601' pkgname=python3-ciso8601 version=2.3.3 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From 24c80511cb9b623e3c066a85060c81d42e5a647d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:16 -0500 Subject: [PATCH 0718/1664] python3-pamqp: rebuild for Python 3.14 --- srcpkgs/python3-pamqp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pamqp/template b/srcpkgs/python3-pamqp/template index 1842de14fd5627..1457df61207c28 100644 --- a/srcpkgs/python3-pamqp/template +++ b/srcpkgs/python3-pamqp/template @@ -1,7 +1,7 @@ # Template file for 'python3-pamqp' pkgname=python3-pamqp version=3.3.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 69c33df0880bbae4d089ba4199b778520363be18 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:16 -0500 Subject: [PATCH 0719/1664] python3-pyaes: rebuild for Python 3.14 --- srcpkgs/python3-pyaes/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyaes/template b/srcpkgs/python3-pyaes/template index c583f3b54b2942..42224fc557a2bc 100644 --- a/srcpkgs/python3-pyaes/template +++ b/srcpkgs/python3-pyaes/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyaes' pkgname=python3-pyaes version=1.6.1 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From c51c0491e7787031987af66138750c2a7505ebdc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:17 -0500 Subject: [PATCH 0720/1664] python3-aniso8601: rebuild for Python 3.14 --- srcpkgs/python3-aniso8601/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-aniso8601/template b/srcpkgs/python3-aniso8601/template index 05b2f28daf117d..0c69fc55058210 100644 --- a/srcpkgs/python3-aniso8601/template +++ b/srcpkgs/python3-aniso8601/template @@ -1,7 +1,7 @@ # Template file for 'python3-aniso8601' pkgname=python3-aniso8601 version=10.0.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-dateutil" From 12cd6390c2453c219e3b1d42b93798c266cab8f1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:17 -0500 Subject: [PATCH 0721/1664] python3-pysol_cards: rebuild for Python 3.14 --- srcpkgs/python3-pysol_cards/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pysol_cards/template b/srcpkgs/python3-pysol_cards/template index 26504ca0b358da..8a72c10a768d40 100644 --- a/srcpkgs/python3-pysol_cards/template +++ b/srcpkgs/python3-pysol_cards/template @@ -1,7 +1,7 @@ # Template file for 'python3-pysol_cards' pkgname=python3-pysol_cards version=0.14.3 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools python3-pbr" depends="python3-pbr python3-six" From 1c57f2935be27e1b7873dd0e64e742afd51c46cb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:17 -0500 Subject: [PATCH 0722/1664] python3-random2: rebuild for Python 3.14 --- srcpkgs/python3-random2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-random2/template b/srcpkgs/python3-random2/template index fd0d10d55d4ab6..8c678f4cae58fe 100644 --- a/srcpkgs/python3-random2/template +++ b/srcpkgs/python3-random2/template @@ -1,7 +1,7 @@ # Template file for 'python3-random2' pkgname=python3-random2 version=1.0.1 -revision=10 +revision=11 build_style=python3-module hostmakedepends="python3-setuptools unzip" depends="python3-setuptools" From dca29d29d557d0eb7db8118336d948c9776e8342 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:17 -0500 Subject: [PATCH 0723/1664] python3-netifaces: rebuild for Python 3.14 --- srcpkgs/python3-netifaces/template | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/srcpkgs/python3-netifaces/template b/srcpkgs/python3-netifaces/template index 4cbe08c17a9e6f..a65d0868b63b34 100644 --- a/srcpkgs/python3-netifaces/template +++ b/srcpkgs/python3-netifaces/template @@ -1,7 +1,7 @@ # Template file for 'python3-netifaces' pkgname=python3-netifaces version=0.11.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" @@ -14,6 +14,8 @@ distfiles="${PYPI_SITE}/n/netifaces/netifaces-${version}.tar.gz" checksum=043a79146eb2907edf439899f262b3dfe41717d34124298ed281139a8b93ca32 conflicts="python-netifaces>=0" +export CFLAGS="-Wno-int-conversion" + post_install() { sed -n '/Copyright/,/SOFTWARE\./p' PKG-INFO >LICENSE vlicense LICENSE From a7321e5c2510b5ad14b78f8ee233f4bc985659cb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:17 -0500 Subject: [PATCH 0724/1664] python3-watchdog: rebuild for Python 3.14 --- srcpkgs/python3-watchdog/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-watchdog/template b/srcpkgs/python3-watchdog/template index 4aae6632e2de2f..691a3251696960 100644 --- a/srcpkgs/python3-watchdog/template +++ b/srcpkgs/python3-watchdog/template @@ -1,7 +1,7 @@ # Template file for 'python3-watchdog' pkgname=python3-watchdog version=4.0.0 -revision=2 +revision=3 build_style=python3-module make_check_args="--deselect tests/test_inotify_buffer.py::test_unmount_watched_directory_filesystem" hostmakedepends="python3-setuptools" From e6a3c34ea273cdc91b42e3392db8646a3606f80a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:17 -0500 Subject: [PATCH 0725/1664] python3-pmw: rebuild for Python 3.14 --- srcpkgs/python3-pmw/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pmw/template b/srcpkgs/python3-pmw/template index df0b3b9cbcfb58..5c604dc89ba3a6 100644 --- a/srcpkgs/python3-pmw/template +++ b/srcpkgs/python3-pmw/template @@ -1,7 +1,7 @@ # Template file for 'python3-pmw' pkgname=python3-pmw version=2.0.1 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel tk-devel" From 3a0e61dc5db37d704274f520721f6901dca36c68 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:18 -0500 Subject: [PATCH 0726/1664] python3-astroid: rebuild for Python 3.14 --- srcpkgs/python3-astroid/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-astroid/template b/srcpkgs/python3-astroid/template index 5703676eea07c9..edab80644ccf09 100644 --- a/srcpkgs/python3-astroid/template +++ b/srcpkgs/python3-astroid/template @@ -1,7 +1,7 @@ # Template file for 'python3-astroid' pkgname=python3-astroid version=3.3.10 -revision=1 +revision=2 build_style=python3-pep517 # broken with numpy 2.0, see https://github.com/pylint-dev/astroid/issues/2442 # pkg_resources is deprecated, see https://github.com/pylint-dev/astroid/issues/2759 From 3ee78cf32c66ce11260857c81a0057227e5e6a9f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:18 -0500 Subject: [PATCH 0727/1664] python3-dill: rebuild for Python 3.14 --- srcpkgs/python3-dill/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-dill/template b/srcpkgs/python3-dill/template index c23d3c7eeefa05..e28a09196668ef 100644 --- a/srcpkgs/python3-dill/template +++ b/srcpkgs/python3-dill/template @@ -1,7 +1,7 @@ # Template file for 'python3-dill' pkgname=python3-dill version=0.4.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3" From ffa067a39a414291ba682350057f50e3012bc463 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:18 -0500 Subject: [PATCH 0728/1664] python3-SQLAlchemy2: rebuild for Python 3.14 --- srcpkgs/python3-SQLAlchemy2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-SQLAlchemy2/template b/srcpkgs/python3-SQLAlchemy2/template index 2086f452c326a8..f5ae3c1c7cb43c 100644 --- a/srcpkgs/python3-SQLAlchemy2/template +++ b/srcpkgs/python3-SQLAlchemy2/template @@ -1,7 +1,7 @@ # Template file for 'python3-SQLAlchemy2' pkgname=python3-SQLAlchemy2 version=2.0.42 -revision=1 +revision=2 build_style=python3-pep517 make_check_args="--ignore=test/typing/test_mypy.py" # requires mypy>=1.17 hostmakedepends="python3-setuptools python3-Cython python3-wheel" From c54bd9c4784e62461aa8e7c545443cbe79338abd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:18 -0500 Subject: [PATCH 0729/1664] python3-pyacoustid: rebuild for Python 3.14 --- srcpkgs/python3-pyacoustid/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyacoustid/template b/srcpkgs/python3-pyacoustid/template index 2f7a69c4572fb9..71aa6b34e4007b 100644 --- a/srcpkgs/python3-pyacoustid/template +++ b/srcpkgs/python3-pyacoustid/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyacoustid' pkgname=python3-pyacoustid version=1.3.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="chromaprint python3-audioread python3-requests" From 936dbf84de64fae5932ae490a8db764f736e57f1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:18 -0500 Subject: [PATCH 0730/1664] nodeenv: rebuild for Python 3.14 --- srcpkgs/nodeenv/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nodeenv/template b/srcpkgs/nodeenv/template index ce94d773471459..b82c35f918e0bf 100644 --- a/srcpkgs/nodeenv/template +++ b/srcpkgs/nodeenv/template @@ -1,7 +1,7 @@ # Template file for 'nodeenv' pkgname=nodeenv version=1.7.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="make python3-setuptools" From 20478b412351deac5eaba4e5bfda889be9dac173 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:18 -0500 Subject: [PATCH 0731/1664] python3-cfgv: rebuild for Python 3.14 --- srcpkgs/python3-cfgv/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cfgv/template b/srcpkgs/python3-cfgv/template index 4bbccebed22b48..751ea9194f23cd 100644 --- a/srcpkgs/python3-cfgv/template +++ b/srcpkgs/python3-cfgv/template @@ -1,7 +1,7 @@ # Template file for 'python3-cfgv' pkgname=python3-cfgv version=3.3.1 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 3e8ed7f9cd4cc42081efc1c9b26b973baae6aeeb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:19 -0500 Subject: [PATCH 0732/1664] python3-identify: rebuild for Python 3.14 --- srcpkgs/python3-identify/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-identify/template b/srcpkgs/python3-identify/template index 96c7f5e3fa2d0c..d6295c59d43de0 100644 --- a/srcpkgs/python3-identify/template +++ b/srcpkgs/python3-identify/template @@ -1,7 +1,7 @@ # Template file for 'python3-identify' pkgname=python3-identify version=2.4.12 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 76af088e6b3dc08759317d78330467d062f244c9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:19 -0500 Subject: [PATCH 0733/1664] python3-colour: rebuild for Python 3.14 --- srcpkgs/python3-colour/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-colour/template b/srcpkgs/python3-colour/template index 60659654e3ddd8..a90d6e6ca6312a 100644 --- a/srcpkgs/python3-colour/template +++ b/srcpkgs/python3-colour/template @@ -1,7 +1,7 @@ # Template file for 'python3-colour' pkgname=python3-colour version=0.1.5 -revision=3 +revision=4 depends="python3" short_desc="Python library, converts and manipulates various color representation" maintainer="Martin Dimov " From 70bfe60c8790faad817cbe96f9e4731a96153b42 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:19 -0500 Subject: [PATCH 0734/1664] python3-potr: rebuild for Python 3.14 --- srcpkgs/python3-potr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-potr/template b/srcpkgs/python3-potr/template index 822d3d57addfbd..54128178a7380d 100644 --- a/srcpkgs/python3-potr/template +++ b/srcpkgs/python3-potr/template @@ -1,7 +1,7 @@ # Template file for 'python3-potr' pkgname=python3-potr version=1.0.2 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-pycryptodome" From f401530eb50cae3dc367a4ccc4e6c88d07b493bc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:19 -0500 Subject: [PATCH 0735/1664] python3-qrcode: rebuild for Python 3.14 --- srcpkgs/python3-qrcode/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-qrcode/template b/srcpkgs/python3-qrcode/template index fbdcd71021a633..a285445f4a6786 100644 --- a/srcpkgs/python3-qrcode/template +++ b/srcpkgs/python3-qrcode/template @@ -1,7 +1,7 @@ # Template file for 'python3-qrcode' pkgname=python3-qrcode version=7.4.2 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pypng python3-typing_extensions python3-setuptools" From 45c630a4b0c683ef3e9d440efa288babaa0b9b77 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:19 -0500 Subject: [PATCH 0736/1664] python3-slixmpp: rebuild for Python 3.14 --- srcpkgs/python3-slixmpp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-slixmpp/template b/srcpkgs/python3-slixmpp/template index 0f784d2d17ca66..9bcdb708a51771 100644 --- a/srcpkgs/python3-slixmpp/template +++ b/srcpkgs/python3-slixmpp/template @@ -1,7 +1,7 @@ # Template file for 'python3-slixmpp' pkgname=python3-slixmpp version=1.8.5 -revision=2 +revision=3 build_style=python3-module hostmakedepends="pkg-config python3-setuptools python3-Cython" makedepends="python3-devel libidn-devel" From 5ac997b657390e0757686d4dc0e57ae4a8c132df Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:19 -0500 Subject: [PATCH 0737/1664] python3-dotenv: rebuild for Python 3.14 --- srcpkgs/python3-dotenv/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-dotenv/template b/srcpkgs/python3-dotenv/template index 94b1c023a13a8d..9861d79d891e56 100644 --- a/srcpkgs/python3-dotenv/template +++ b/srcpkgs/python3-dotenv/template @@ -1,7 +1,7 @@ # Template file for 'python3-dotenv' pkgname=python3-dotenv version=1.1.0 -revision=1 +revision=2 build_style=python3-module # CLI tests and test_set_key_permission_error fail in xbps-src's build environment make_check_args="-k not(test_run) From 79c6ffd58acc260265df9595481c00fe268112f7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:20 -0500 Subject: [PATCH 0738/1664] python3-plover_stroke: rebuild for Python 3.14 --- srcpkgs/python3-plover_stroke/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-plover_stroke/template b/srcpkgs/python3-plover_stroke/template index 42ede5774b5ea0..7a7c2d9aca5270 100644 --- a/srcpkgs/python3-plover_stroke/template +++ b/srcpkgs/python3-plover_stroke/template @@ -1,7 +1,7 @@ # Template file for 'python3-plover_stroke' pkgname=python3-plover_stroke version=1.1.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From 3b0464ee6bd0d283e7aa68fc1cb3566c0620505a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:20 -0500 Subject: [PATCH 0739/1664] python3-rtf_tokenize: rebuild for Python 3.14 --- srcpkgs/python3-rtf_tokenize/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-rtf_tokenize/template b/srcpkgs/python3-rtf_tokenize/template index 69453d2c44a58e..7e7bfc52df4ad9 100644 --- a/srcpkgs/python3-rtf_tokenize/template +++ b/srcpkgs/python3-rtf_tokenize/template @@ -1,7 +1,7 @@ # Template file for 'python3-rtf_tokenize' pkgname=python3-rtf_tokenize version=1.0.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From 929f659966060944ba5eab4c7825614f5ebb17b6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:20 -0500 Subject: [PATCH 0740/1664] wxPython: rebuild for Python 3.14 --- srcpkgs/wxPython/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/wxPython/template b/srcpkgs/wxPython/template index 12b8aa4eadbb9c..f12a39b901b729 100644 --- a/srcpkgs/wxPython/template +++ b/srcpkgs/wxPython/template @@ -1,7 +1,7 @@ # Template file for 'wxPython' pkgname=wxPython version=4.2.3 -revision=1 +revision=2 build_style=python3-module make_build_args="--skip-build" make_install_args="--skip-build" From da63527f6c722ef7f594a35104da2a0a3699889b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:20 -0500 Subject: [PATCH 0741/1664] python3-ajsonrpc: rebuild for Python 3.14 --- srcpkgs/python3-ajsonrpc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ajsonrpc/template b/srcpkgs/python3-ajsonrpc/template index 89280446010e5b..699da1452775df 100644 --- a/srcpkgs/python3-ajsonrpc/template +++ b/srcpkgs/python3-ajsonrpc/template @@ -1,7 +1,7 @@ # Template file for 'python3-ajsonrpc' pkgname=python3-ajsonrpc version=1.2.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From f34bc2efff5939b5ea57651de1d261bd95c85484 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:20 -0500 Subject: [PATCH 0742/1664] python3-marshmallow: rebuild for Python 3.14 --- srcpkgs/python3-marshmallow/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-marshmallow/template b/srcpkgs/python3-marshmallow/template index e63535cb965569..174b326210a934 100644 --- a/srcpkgs/python3-marshmallow/template +++ b/srcpkgs/python3-marshmallow/template @@ -1,7 +1,7 @@ # Template file for 'python3-marshmallow' pkgname=python3-marshmallow version=3.19.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-packaging" From 0422122985f3a63fde8ae88191d2a7382b7ebfd2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:20 -0500 Subject: [PATCH 0743/1664] python3-starlette: rebuild for Python 3.14 --- srcpkgs/python3-starlette/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-starlette/template b/srcpkgs/python3-starlette/template index 02970860eaf8fd..bd5dcc6c98e6bb 100644 --- a/srcpkgs/python3-starlette/template +++ b/srcpkgs/python3-starlette/template @@ -1,7 +1,7 @@ # Template file for 'python3-starlette' pkgname=python3-starlette version=0.48.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling python3-pluggy" depends="python3 python3-anyio" From 10327b545390b77fc74277958cf4a7418c2fd1d3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:21 -0500 Subject: [PATCH 0744/1664] python3-uvicorn: rebuild for Python 3.14 --- srcpkgs/python3-uvicorn/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-uvicorn/template b/srcpkgs/python3-uvicorn/template index 3507c1dfd1d4ff..eac00be241a9ea 100644 --- a/srcpkgs/python3-uvicorn/template +++ b/srcpkgs/python3-uvicorn/template @@ -1,7 +1,7 @@ # Template file for 'python3-uvicorn' pkgname=python3-uvicorn version=0.35.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3-asgiref python3-uvloop python3-click python3-h11" From 2c04bcbc7241a8f4deeb5b74fa7ab76264f0075b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:21 -0500 Subject: [PATCH 0745/1664] python3-zeroconf: rebuild for Python 3.14 --- srcpkgs/python3-zeroconf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zeroconf/template b/srcpkgs/python3-zeroconf/template index d207f351b1dc63..3a8605662a5140 100644 --- a/srcpkgs/python3-zeroconf/template +++ b/srcpkgs/python3-zeroconf/template @@ -1,7 +1,7 @@ # Template file for 'python3-zeroconf' pkgname=python3-zeroconf version=0.39.1 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-ifaddr python3-async-timeout" From 6536974ce2b97196d7e27a4fe8eaec0e1c66b13b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:21 -0500 Subject: [PATCH 0746/1664] python3-fasteners: rebuild for Python 3.14 --- srcpkgs/python3-fasteners/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-fasteners/template b/srcpkgs/python3-fasteners/template index 0c22b7fd867ad6..e9829233b93a3f 100644 --- a/srcpkgs/python3-fasteners/template +++ b/srcpkgs/python3-fasteners/template @@ -1,7 +1,7 @@ # Template file for 'python3-fasteners' pkgname=python3-fasteners version=0.20 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3 python3-wheel" depends="python3" From 9e252e51322b356f08ff67f2242f71e68b7c4d16 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:21 -0500 Subject: [PATCH 0747/1664] gst1-editing-services: rebuild for Python 3.14 --- srcpkgs/gst1-editing-services/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gst1-editing-services/template b/srcpkgs/gst1-editing-services/template index 18973f64efe4b1..93f14982932204 100644 --- a/srcpkgs/gst1-editing-services/template +++ b/srcpkgs/gst1-editing-services/template @@ -1,7 +1,7 @@ # Template file for 'gst1-editing-services' pkgname=gst1-editing-services version=1.26.2 -revision=1 +revision=2 build_style=meson build_helper="gir" configure_args="-Ddoc=disabled $(vopt_feature gir introspection)" From e01f399986098ee9865bbcbbd4bc1e890bbea910 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:21 -0500 Subject: [PATCH 0748/1664] python3-cli_helpers: rebuild for Python 3.14 --- srcpkgs/python3-cli_helpers/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cli_helpers/template b/srcpkgs/python3-cli_helpers/template index 48556b48ba1c47..259ba72e7b66af 100644 --- a/srcpkgs/python3-cli_helpers/template +++ b/srcpkgs/python3-cli_helpers/template @@ -1,7 +1,7 @@ # Template file for 'python3-cli_helpers' pkgname=python3-cli_helpers version=2.4.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-configobj python3-tabulate python3-Pygments" From d6139bacdfcd1b9c6c304dd8a26b98d05aca53dd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:21 -0500 Subject: [PATCH 0749/1664] python3-pgspecial: rebuild for Python 3.14 --- srcpkgs/python3-pgspecial/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pgspecial/template b/srcpkgs/python3-pgspecial/template index ec2befe34ef19c..154344ae6e2eb8 100644 --- a/srcpkgs/python3-pgspecial/template +++ b/srcpkgs/python3-pgspecial/template @@ -1,7 +1,7 @@ # Template file for 'python3-pgspecial' pkgname=python3-pgspecial version=2.1.3 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3-click python3-sqlparse python3-psycopg" From 44997b8c5666027f17af69dba23b5daff33cec6c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:22 -0500 Subject: [PATCH 0750/1664] mercurial: rebuild for Python 3.14 --- srcpkgs/mercurial/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mercurial/template b/srcpkgs/mercurial/template index 9d42c2a88c5fb6..b24d368265afb4 100644 --- a/srcpkgs/mercurial/template +++ b/srcpkgs/mercurial/template @@ -1,7 +1,7 @@ # Template file for 'mercurial' pkgname=mercurial version=7.1.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-devel python3-setuptools python3-setuptools_scm gettext" makedepends="python3-devel" From 886ddf49865d3dfaef9d7745eb08b040ad46b023 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:22 -0500 Subject: [PATCH 0751/1664] python3-feedgenerator: rebuild for Python 3.14 --- srcpkgs/python3-feedgenerator/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-feedgenerator/template b/srcpkgs/python3-feedgenerator/template index b9c1da4e06acca..0d32596f4a259e 100644 --- a/srcpkgs/python3-feedgenerator/template +++ b/srcpkgs/python3-feedgenerator/template @@ -1,7 +1,7 @@ # Template file for 'python3-feedgenerator' pkgname=python3-feedgenerator version=1.9.1 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From 44951d15b84b35f90d07256ef862837a26f3a064 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:22 -0500 Subject: [PATCH 0752/1664] python3-oletools: rebuild for Python 3.14 --- srcpkgs/python3-oletools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-oletools/template b/srcpkgs/python3-oletools/template index 69206ba104fd0f..4dec75a44bdd60 100644 --- a/srcpkgs/python3-oletools/template +++ b/srcpkgs/python3-oletools/template @@ -1,7 +1,7 @@ # Template file for 'python3-oletools' pkgname=python3-oletools version=0.60.2 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-parsing python3-olefile python3-colorclass python3-easygui From 10ed92a35090f565781b23d2e4b43ce9c35b6bc0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:22 -0500 Subject: [PATCH 0753/1664] python3-pefile: rebuild for Python 3.14 --- srcpkgs/python3-pefile/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pefile/template b/srcpkgs/python3-pefile/template index ee0ca0f513880a..bc826f12f53e84 100644 --- a/srcpkgs/python3-pefile/template +++ b/srcpkgs/python3-pefile/template @@ -1,7 +1,7 @@ # Template file for 'python3-pefile' pkgname=python3-pefile version=2024.8.26 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From fc50215e5720ce0863f85f1e6ea6abc10d369aac Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:22 -0500 Subject: [PATCH 0754/1664] python3-virustotal-api: rebuild for Python 3.14 --- srcpkgs/python3-virustotal-api/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-virustotal-api/template b/srcpkgs/python3-virustotal-api/template index 32682112af97af..55b8c37404de9d 100644 --- a/srcpkgs/python3-virustotal-api/template +++ b/srcpkgs/python3-virustotal-api/template @@ -1,7 +1,7 @@ # Template file for 'python3-virustotal-api' pkgname=python3-virustotal-api version=1.1.11 -revision=7 +revision=8 build_style=python3-module pycompile_module="virus_total_apis" hostmakedepends="python3-setuptools" From 00673aff2de6e8e3dcc1a3c2ab792ed1402caec3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:22 -0500 Subject: [PATCH 0755/1664] python3-yara: rebuild for Python 3.14 --- srcpkgs/python3-yara/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-yara/template b/srcpkgs/python3-yara/template index b3078f13c8faf7..3b4e11c8b00bc0 100644 --- a/srcpkgs/python3-yara/template +++ b/srcpkgs/python3-yara/template @@ -1,7 +1,7 @@ # Template file for 'python3-yara' pkgname=python3-yara version=4.5.4 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="yara-devel python3-devel" From a000c47636ebd99e1cd221459251f3128b9181ad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:23 -0500 Subject: [PATCH 0756/1664] python3-pykeepass: rebuild for Python 3.14 --- srcpkgs/python3-pykeepass/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pykeepass/template b/srcpkgs/python3-pykeepass/template index 8dc91fa7871bf9..ae9426de30fecc 100644 --- a/srcpkgs/python3-pykeepass/template +++ b/srcpkgs/python3-pykeepass/template @@ -1,7 +1,7 @@ # Template file for 'python3-pykeepass' pkgname=python3-pykeepass version=4.0.3 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-dateutil python3-argon2 python3-construct python3-lxml From a45e151c407a218a56e6db1f76a60ee3eace539f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:23 -0500 Subject: [PATCH 0757/1664] python3-zxcvbn: rebuild for Python 3.14 --- srcpkgs/python3-zxcvbn/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zxcvbn/template b/srcpkgs/python3-zxcvbn/template index 0c3c27b73133f0..6538c4029e6966 100644 --- a/srcpkgs/python3-zxcvbn/template +++ b/srcpkgs/python3-zxcvbn/template @@ -1,7 +1,7 @@ # Template file for 'python3-zxcvbn' pkgname=python3-zxcvbn version=4.4.28 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 885a48b2bf0c1bdc711114f76043650135afbbf0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:23 -0500 Subject: [PATCH 0758/1664] python3-Whoosh: rebuild for Python 3.14 --- srcpkgs/python3-Whoosh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Whoosh/template b/srcpkgs/python3-Whoosh/template index 7ff26de09f5c4f..faa4defc8c28e0 100644 --- a/srcpkgs/python3-Whoosh/template +++ b/srcpkgs/python3-Whoosh/template @@ -1,7 +1,7 @@ # Template file for 'python3-Whoosh' pkgname=python3-Whoosh version=2.7.4 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-devel python3-setuptools" makedepends="python3-devel" From 4fd4f441019482c8195d6106f1a914e13253357c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:23 -0500 Subject: [PATCH 0759/1664] python3-arxiv2bib: rebuild for Python 3.14 --- srcpkgs/python3-arxiv2bib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-arxiv2bib/template b/srcpkgs/python3-arxiv2bib/template index 4c9d0caf95a6b7..74e0e8a79c7f2e 100644 --- a/srcpkgs/python3-arxiv2bib/template +++ b/srcpkgs/python3-arxiv2bib/template @@ -1,7 +1,7 @@ # Template file for 'python3-arxiv2bib' pkgname=python3-arxiv2bib version=1.0.8 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools" From 7bd610f38c7288534fd48bd4d6d8d0fd081d5654 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:23 -0500 Subject: [PATCH 0760/1664] python3-doi: rebuild for Python 3.14 --- srcpkgs/python3-doi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-doi/template b/srcpkgs/python3-doi/template index 1a7b04252097af..0bb720d87d752d 100644 --- a/srcpkgs/python3-doi/template +++ b/srcpkgs/python3-doi/template @@ -1,7 +1,7 @@ # Template file for 'python3-doi' pkgname=python3-doi version=0.2.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 63de7057135b799dec482d9434b73086c1c4b462 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:23 -0500 Subject: [PATCH 0761/1664] python3-dominate: rebuild for Python 3.14 --- srcpkgs/python3-dominate/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-dominate/template b/srcpkgs/python3-dominate/template index 8399499a5c354e..a9fbf9cf44d94a 100644 --- a/srcpkgs/python3-dominate/template +++ b/srcpkgs/python3-dominate/template @@ -1,7 +1,7 @@ # Template file for 'python3-dominate' pkgname=python3-dominate version=2.9.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From cc02bdd9908d0db054f27eef9b7aa4cfe5d7bbc0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:24 -0500 Subject: [PATCH 0762/1664] python3-habanero: rebuild for Python 3.14 --- srcpkgs/python3-habanero/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-habanero/template b/srcpkgs/python3-habanero/template index 2eef5c063745cf..1e76d74286a34b 100644 --- a/srcpkgs/python3-habanero/template +++ b/srcpkgs/python3-habanero/template @@ -1,7 +1,7 @@ # Template file for 'python3-habanero' pkgname=python3-habanero version=0.6.2 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests" From bfdfb1610b820ea3e98b767af01f93404e90e524 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:24 -0500 Subject: [PATCH 0763/1664] python3-isbnlib: rebuild for Python 3.14 --- srcpkgs/python3-isbnlib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-isbnlib/template b/srcpkgs/python3-isbnlib/template index f3765ad6fe534b..27efdb27212929 100644 --- a/srcpkgs/python3-isbnlib/template +++ b/srcpkgs/python3-isbnlib/template @@ -1,7 +1,7 @@ # Template file for 'python3-isbnlib' pkgname=python3-isbnlib version=3.10.8 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 42054be1e839e2c1eec8b3ccee46f177d26d0489 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:24 -0500 Subject: [PATCH 0764/1664] python3-slugify: rebuild for Python 3.14 --- srcpkgs/python3-slugify/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-slugify/template b/srcpkgs/python3-slugify/template index daae83ff13358f..1e6bf9c28931ab 100644 --- a/srcpkgs/python3-slugify/template +++ b/srcpkgs/python3-slugify/template @@ -1,7 +1,7 @@ # Template file for 'python3-slugify' pkgname=python3-slugify version=6.1.2 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-text-unidecode python3-Unidecode" From c43547ec709e0aa1dde3bdd379a6c24992f895c7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:24 -0500 Subject: [PATCH 0765/1664] python3-janus: rebuild for Python 3.14 --- srcpkgs/python3-janus/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-janus/template b/srcpkgs/python3-janus/template index c57011b37f3765..ad83dba2967b1b 100644 --- a/srcpkgs/python3-janus/template +++ b/srcpkgs/python3-janus/template @@ -1,7 +1,7 @@ # Template file for 'python3-janus' pkgname=python3-janus version=1.0.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-typing_extensions" From 1681ee647cb0ad0256be32e6c9f23bb1bc8fc852 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:24 -0500 Subject: [PATCH 0766/1664] python3-logbook: rebuild for Python 3.14 --- srcpkgs/python3-logbook/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-logbook/template b/srcpkgs/python3-logbook/template index a1b44df6dee69e..d2799df7198df6 100644 --- a/srcpkgs/python3-logbook/template +++ b/srcpkgs/python3-logbook/template @@ -1,7 +1,7 @@ # Template file for 'python3-logbook' pkgname=python3-logbook version=1.8.0 -revision=1 +revision=2 build_style=python3-pep517 make_check_args="--ignore=scripts" hostmakedepends="python3-setuptools python3-wheel python3-Cython" From 98d6b1091f391f92533073982235f74efbd92a35 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:24 -0500 Subject: [PATCH 0767/1664] python3-matrix-nio: rebuild for Python 3.14 --- srcpkgs/python3-matrix-nio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-matrix-nio/template b/srcpkgs/python3-matrix-nio/template index f91d67f82cf87e..06b18b9dbfdaba 100644 --- a/srcpkgs/python3-matrix-nio/template +++ b/srcpkgs/python3-matrix-nio/template @@ -1,7 +1,7 @@ # Template file for 'python3-matrix-nio' pkgname=python3-matrix-nio version=0.24.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-aiohttp python3-aiofiles python3-h11 From 420171eaf23ea34457438bcc4a7050188af70c46 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:25 -0500 Subject: [PATCH 0768/1664] python3-pydbus: rebuild for Python 3.14 --- srcpkgs/python3-pydbus/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pydbus/template b/srcpkgs/python3-pydbus/template index 28e06c8449bacf..00f4a1e230d83e 100644 --- a/srcpkgs/python3-pydbus/template +++ b/srcpkgs/python3-pydbus/template @@ -1,7 +1,7 @@ # Template file for 'python3-pydbus' pkgname=python3-pydbus version=0.6.0 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From cf29d5066c65002f36bb2bb9cd476a323ca2adff Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:25 -0500 Subject: [PATCH 0769/1664] rpm: rebuild for Python 3.14 --- srcpkgs/rpm/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/rpm/template b/srcpkgs/rpm/template index ace6eb4d35ef15..50515d7a60e225 100644 --- a/srcpkgs/rpm/template +++ b/srcpkgs/rpm/template @@ -1,7 +1,7 @@ # Template file for 'rpm' pkgname=rpm version=4.18.1 -revision=4 +revision=5 build_style=gnu-configure configure_args="--with-cap --with-acl --enable-python PYTHON=python3 --sharedstatedir=/var/lib" From 78f3a23edff449d22e420cfb7ccab7c9c6edffb7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:25 -0500 Subject: [PATCH 0770/1664] brltty: rebuild for Python 3.14 --- srcpkgs/brltty/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/brltty/template b/srcpkgs/brltty/template index b4b0924234fff9..b97d8101800fe6 100644 --- a/srcpkgs/brltty/template +++ b/srcpkgs/brltty/template @@ -1,7 +1,7 @@ # Template file for 'brltty' pkgname=brltty version=6.8 -revision=1 +revision=2 build_style=gnu-configure configure_args="--enable-gpm --with-screen-driver=lx,sc --with-tables-directory=/usr/share/brltty PYTHON=/usr/bin/python3" From 3e26b649025309db1bb043eea281698c4dcd743e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:25 -0500 Subject: [PATCH 0771/1664] liblouis: rebuild for Python 3.14 --- srcpkgs/liblouis/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/liblouis/template b/srcpkgs/liblouis/template index 69299629eb8527..7960b2f8f9fa10 100644 --- a/srcpkgs/liblouis/template +++ b/srcpkgs/liblouis/template @@ -1,7 +1,7 @@ # Template file for 'liblouis' pkgname=liblouis version=3.15.0 -revision=5 +revision=6 build_style=gnu-configure configure_args="--enable-ucs4" hostmakedepends="pkg-config help2man python3-devel python3-setuptools" From 73ed67804eaf951ba91a2a7982ac651180d7ed21 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:25 -0500 Subject: [PATCH 0772/1664] speech-dispatcher: rebuild for Python 3.14 --- srcpkgs/speech-dispatcher/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/speech-dispatcher/template b/srcpkgs/speech-dispatcher/template index b087a2e326e893..b37fb2a7ed5202 100644 --- a/srcpkgs/speech-dispatcher/template +++ b/srcpkgs/speech-dispatcher/template @@ -1,7 +1,7 @@ # Template file for 'speech-dispatcher' pkgname=speech-dispatcher version=0.11.5 -revision=2 +revision=3 build_style=gnu-configure # Disable support for sundry non-free TTS systems (said support causes # the pre-pkg step to fail on account of missing shlibs). From a98806b5a45dfff17d8a89dfad3def3762848c6d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:25 -0500 Subject: [PATCH 0773/1664] libopenshot: rebuild for Python 3.14 --- srcpkgs/libopenshot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libopenshot/template b/srcpkgs/libopenshot/template index 44c013d00863bf..c14ca23766acc7 100644 --- a/srcpkgs/libopenshot/template +++ b/srcpkgs/libopenshot/template @@ -1,7 +1,7 @@ # Template file for 'libopenshot' pkgname=libopenshot version=0.3.2 -revision=3 +revision=4 build_style=cmake # Builds fail with Ruby-2.4.1 configure_args="-DENABLE_RUBY=OFF -DUSE_SYSTEM_JSONCPP=ON" From 78151a692523bb8bf5584362789d5c2f3b1d7027 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:26 -0500 Subject: [PATCH 0774/1664] python3-daemonize: rebuild for Python 3.14 --- srcpkgs/python3-daemonize/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-daemonize/template b/srcpkgs/python3-daemonize/template index 1de897543b6efb..4c9255181f5981 100644 --- a/srcpkgs/python3-daemonize/template +++ b/srcpkgs/python3-daemonize/template @@ -1,7 +1,7 @@ # Template file for 'python3-daemonize' pkgname=python3-daemonize version=2.5.0 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 91331f5d5fd7ae82c037853dba37a6c52ba8a2b0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:26 -0500 Subject: [PATCH 0775/1664] vtk: rebuild for Python 3.14 --- srcpkgs/vtk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/vtk/template b/srcpkgs/vtk/template index 67b92f79990905..32e0b4fffde511 100644 --- a/srcpkgs/vtk/template +++ b/srcpkgs/vtk/template @@ -1,7 +1,7 @@ # Template file for 'vtk' pkgname=vtk version=9.5.0 -revision=1 +revision=2 build_style=cmake # vtk can be huge, especially with -DVTK_BUILD_ALL_MODULES=ON" # Build only the core modules plus python bindings for now From fed6c4c2d4b77bf7da5d7d541acae0bbfa8282fd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:26 -0500 Subject: [PATCH 0776/1664] python3-readability-lxml: rebuild for Python 3.14 --- srcpkgs/python3-readability-lxml/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-readability-lxml/template b/srcpkgs/python3-readability-lxml/template index 85c02b1f249dc4..1cf32a44d2c120 100644 --- a/srcpkgs/python3-readability-lxml/template +++ b/srcpkgs/python3-readability-lxml/template @@ -1,7 +1,7 @@ # Template file for 'python3-readability-lxml' pkgname=python3-readability-lxml version=0.8.1 -revision=10 +revision=11 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-lxml python3-lxml_html_clean python3-chardet python3-cssselect" From b242eea8d0faa9305338def49be6e07494b472e9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:26 -0500 Subject: [PATCH 0777/1664] python3-imaplib2: rebuild for Python 3.14 --- srcpkgs/python3-imaplib2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-imaplib2/template b/srcpkgs/python3-imaplib2/template index f7c52f45405061..fa99591c55e192 100644 --- a/srcpkgs/python3-imaplib2/template +++ b/srcpkgs/python3-imaplib2/template @@ -1,7 +1,7 @@ # Template file for 'python3-imaplib2' pkgname=python3-imaplib2 version=3.6 -revision=4 +revision=5 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 6bec4151b30ad1e13e80c93d16521fccbcc51a97 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:26 -0500 Subject: [PATCH 0778/1664] python3-rfc6555: rebuild for Python 3.14 --- srcpkgs/python3-rfc6555/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-rfc6555/template b/srcpkgs/python3-rfc6555/template index 7163ec2ff19501..7cd68c3550d64e 100644 --- a/srcpkgs/python3-rfc6555/template +++ b/srcpkgs/python3-rfc6555/template @@ -1,7 +1,7 @@ # Template file for 'python3-rfc6555' pkgname=python3-rfc6555 version=0.1.0 -revision=4 +revision=5 build_style=python3-module make_check_args="--deselect tests/test_ipv6.py::test_ipv6_available" # CI fail hostmakedepends="python3-setuptools" From 26c187b2d6ff58b6d379cb75ccb8b2dc2c2ac7fd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:26 -0500 Subject: [PATCH 0779/1664] python3-stem: rebuild for Python 3.14 --- srcpkgs/python3-stem/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-stem/template b/srcpkgs/python3-stem/template index 6965c7d17b2ed7..af06798a045a5f 100644 --- a/srcpkgs/python3-stem/template +++ b/srcpkgs/python3-stem/template @@ -1,7 +1,7 @@ # Template file for 'python3-stem' pkgname=python3-stem version=1.8.1 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-cryptography" From 42bcebd3b441d5857eed3fb3fcdb810d3f4e8601 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:27 -0500 Subject: [PATCH 0780/1664] python3-neovim: rebuild for Python 3.14 --- srcpkgs/python3-neovim/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-neovim/template b/srcpkgs/python3-neovim/template index 516e0af0284a4b..52c536a1b9c98b 100644 --- a/srcpkgs/python3-neovim/template +++ b/srcpkgs/python3-neovim/template @@ -1,7 +1,7 @@ # Template file for 'python3-neovim' pkgname=python3-neovim version=0.6.0 -revision=1 +revision=2 build_style="python3-module" hostmakedepends="python3-setuptools" depends="neovim python3-greenlet python3-msgpack" From 4b51b0823b4bf6942172740c2da8fdd923c4c118 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:27 -0500 Subject: [PATCH 0781/1664] nemo-python: rebuild for Python 3.14 --- srcpkgs/nemo-python/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nemo-python/template b/srcpkgs/nemo-python/template index 9d6ec29512f25b..657eaa6d803794 100644 --- a/srcpkgs/nemo-python/template +++ b/srcpkgs/nemo-python/template @@ -1,7 +1,7 @@ # Template file for 'nemo-python' pkgname=nemo-python version=6.4.0 -revision=3 +revision=4 build_wrksrc=nemo-python build_style=meson hostmakedepends="pkg-config" From 3659926e4f8f52a73a4a0bc58b3c57b4f8ce1ea8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:27 -0500 Subject: [PATCH 0782/1664] meld: rebuild for Python 3.14 --- srcpkgs/meld/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template index c642d5a4b8faee..3b27076fa42a50 100644 --- a/srcpkgs/meld/template +++ b/srcpkgs/meld/template @@ -1,7 +1,7 @@ # Template file for 'meld' pkgname=meld version=3.23.0 -revision=1 +revision=2 build_style=meson hostmakedepends="desktop-file-utils pkg-config gettext python3-distro itstool gtk-update-icon-cache libxml2-python3 glib-devel" From 3248f488082582dc75092ff6a3b261e49bd465d6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:27 -0500 Subject: [PATCH 0783/1664] lilv: rebuild for Python 3.14 --- srcpkgs/lilv/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/lilv/template b/srcpkgs/lilv/template index 6b00f942c5541d..a937c92930ee40 100644 --- a/srcpkgs/lilv/template +++ b/srcpkgs/lilv/template @@ -1,7 +1,7 @@ # Template file for 'lilv' pkgname=lilv version=0.24.26 -revision=2 +revision=3 build_style=meson hostmakedepends="pkg-config" makedepends="python3-devel serd-devel sord-devel sratom-devel libsndfile-devel From 89b4d2bc92093bce794e271bd59b0a122242afe6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:27 -0500 Subject: [PATCH 0784/1664] python3-Pyro4: rebuild for Python 3.14 --- srcpkgs/python3-Pyro4/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Pyro4/template b/srcpkgs/python3-Pyro4/template index 5a88e1ab7ca4b1..981fcc1acf1501 100644 --- a/srcpkgs/python3-Pyro4/template +++ b/srcpkgs/python3-Pyro4/template @@ -1,7 +1,7 @@ # Template file for 'python3-Pyro4' pkgname=python3-Pyro4 version=4.80 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-serpent" From 84a33133ed096fd4b15f5a2d270a8c35dd25a5f5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:27 -0500 Subject: [PATCH 0785/1664] python3-musicpd: rebuild for Python 3.14 --- srcpkgs/python3-musicpd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-musicpd/template b/srcpkgs/python3-musicpd/template index ae91d40632a6be..a04985993c0f58 100644 --- a/srcpkgs/python3-musicpd/template +++ b/srcpkgs/python3-musicpd/template @@ -1,7 +1,7 @@ # Template file for 'python3-musicpd' pkgname=python3-musicpd version=0.4.4 -revision=7 +revision=8 build_style=python3-module pycompile_module="musicpd.py" hostmakedepends="python3-setuptools" From 26ae3393977138b41a412c45b3ec41495efa8178 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:28 -0500 Subject: [PATCH 0786/1664] mopidy: rebuild for Python 3.14 --- srcpkgs/mopidy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mopidy/template b/srcpkgs/mopidy/template index f0a2bb2a26045f..63886aff7eb7de 100644 --- a/srcpkgs/mopidy/template +++ b/srcpkgs/mopidy/template @@ -1,7 +1,7 @@ # Template file for 'mopidy' pkgname=mopidy version=3.4.2 -revision=2 +revision=3 build_style=python3-module make_check_args="--ignore tests/test_help.py" hostmakedepends="python3-setuptools python3-Sphinx python3-sphinx_rtd_theme From aaaf51fc02712ec31592959f7df5e786ae0dcd30 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:28 -0500 Subject: [PATCH 0787/1664] python3-uritools: rebuild for Python 3.14 --- srcpkgs/python3-uritools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-uritools/template b/srcpkgs/python3-uritools/template index e5527353c3cf39..3ea7467ec985f4 100644 --- a/srcpkgs/python3-uritools/template +++ b/srcpkgs/python3-uritools/template @@ -1,7 +1,7 @@ # Template file for 'python3-uritools' pkgname=python3-uritools version=3.0.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools" From bc0f0475296f8d00e48e081709a07f4cbfa0811e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:28 -0500 Subject: [PATCH 0788/1664] python3-requests-cache: rebuild for Python 3.14 --- srcpkgs/python3-requests-cache/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-requests-cache/template b/srcpkgs/python3-requests-cache/template index d4447b14293685..f56160dac6cce6 100644 --- a/srcpkgs/python3-requests-cache/template +++ b/srcpkgs/python3-requests-cache/template @@ -1,7 +1,7 @@ # Template file for 'python3-requests-cache' pkgname=python3-requests-cache version=1.2.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-requests python3-urllib3 python3-attrs python3-cattrs From d516d1eb2ce2b7c8d037972a33515f1629e521d5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:28 -0500 Subject: [PATCH 0789/1664] python3-teletype: rebuild for Python 3.14 --- srcpkgs/python3-teletype/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-teletype/template b/srcpkgs/python3-teletype/template index 0fb1413fdd15ec..1da0f03f4d187b 100644 --- a/srcpkgs/python3-teletype/template +++ b/srcpkgs/python3-teletype/template @@ -1,7 +1,7 @@ # Template file for 'python3-teletype' pkgname=python3-teletype version=1.3.4 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-wheel" depends="python3" From 5ff477b29c8da733e5c1936828ddc652b6037cbc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:28 -0500 Subject: [PATCH 0790/1664] python3-aioquic: rebuild for Python 3.14 --- srcpkgs/python3-aioquic/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-aioquic/template b/srcpkgs/python3-aioquic/template index 4ddf05e4bf9e23..4029a42254310d 100644 --- a/srcpkgs/python3-aioquic/template +++ b/srcpkgs/python3-aioquic/template @@ -1,7 +1,7 @@ # Template file for 'python3-aioquic' pkgname=python3-aioquic version=1.2.0 -revision=1 +revision=2 build_style=python3-pep517 make_check_args="-k not(test_verify_subject_no_subjaltname)" hostmakedepends="python3-setuptools python3-wheel" From 172a765c2f6857bc85f5960a98a822bbfbd39ed3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:28 -0500 Subject: [PATCH 0791/1664] python3-kaitaistruct: rebuild for Python 3.14 --- srcpkgs/python3-kaitaistruct/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-kaitaistruct/template b/srcpkgs/python3-kaitaistruct/template index 270232408896e7..c1b2d11d012ebf 100644 --- a/srcpkgs/python3-kaitaistruct/template +++ b/srcpkgs/python3-kaitaistruct/template @@ -1,7 +1,7 @@ # Template file for 'python3-kaitaistruct' pkgname=python3-kaitaistruct version=0.10 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 0d6661bed330711c922ac9ee4c20a982921783ba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:29 -0500 Subject: [PATCH 0792/1664] python3-mitmproxy-rs: rebuild for Python 3.14 --- srcpkgs/python3-mitmproxy-rs/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mitmproxy-rs/template b/srcpkgs/python3-mitmproxy-rs/template index 0bfc95071429eb..0b6726e6b07f63 100644 --- a/srcpkgs/python3-mitmproxy-rs/template +++ b/srcpkgs/python3-mitmproxy-rs/template @@ -1,7 +1,7 @@ # Template file for 'python3-mitmproxy-rs' pkgname=python3-mitmproxy-rs version=0.11.1 -revision=1 +revision=2 build_style=python3-pep517 build_helper="rust" hostmakedepends="maturin cargo" From ba831638eb04a8921e725a0775eaa22c9aacf2d5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:29 -0500 Subject: [PATCH 0793/1664] python3-publicsuffix2: rebuild for Python 3.14 --- srcpkgs/python3-publicsuffix2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-publicsuffix2/template b/srcpkgs/python3-publicsuffix2/template index 33c921c7935a62..197437250c899a 100644 --- a/srcpkgs/python3-publicsuffix2/template +++ b/srcpkgs/python3-publicsuffix2/template @@ -1,7 +1,7 @@ # Template file for 'python3-publicsuffix2' pkgname=python3-publicsuffix2 version=2019.12.21 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools python3-requests python3-wheel public-suffix" depends="python3 public-suffix" From 823b3af5b0846211867077fc1d2d2c049fb769ba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:29 -0500 Subject: [PATCH 0794/1664] openvswitch: update to 3.6.1. --- srcpkgs/openvswitch/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/openvswitch/template b/srcpkgs/openvswitch/template index 7b9cae1680e7f8..5a7f7ce04d1c1f 100644 --- a/srcpkgs/openvswitch/template +++ b/srcpkgs/openvswitch/template @@ -1,7 +1,7 @@ # Template file for 'openvswitch' pkgname=openvswitch -version=2.17.0 -revision=5 +version=3.6.1 +revision=1 archs="i686* x86_64* ppc64*" build_style=gnu-configure configure_args="--with-rundir=/run/openvswitch" @@ -15,7 +15,7 @@ maintainer="Orphaned " license="Apache-2.0" homepage="http://openvswitch.org/" distfiles="http://openvswitch.org/releases/${pkgname}-${version}.tar.gz" -checksum=e03bfab7ca82d81a7d3a36de4f390a3b5210e3f39657671f922877cd4ea6dc73 +checksum=78dc0a7208ae7ebe21b82e38e21abfe7162f9170ae101b71bc382be3d2d24d00 python_version=3 _completiondir="/usr/share/bash-completion/completions" make_install_args+=" completiondir=${_completiondir}" From fca233f94888e45944437cd40bf16f0bd82c3cf1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:29 -0500 Subject: [PATCH 0795/1664] python3-textual: rebuild for Python 3.14 --- srcpkgs/python3-textual/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-textual/template b/srcpkgs/python3-textual/template index 7db15153544939..2a437b7a108f67 100644 --- a/srcpkgs/python3-textual/template +++ b/srcpkgs/python3-textual/template @@ -1,7 +1,7 @@ # Template file for 'python3-textual' pkgname=python3-textual version=5.3.0 -revision=1 +revision=2 build_style=python3-pep517 make_check_args="-k not((snapshot)or(markdown)or(feature)or(language)or(slug)or(demo)or(disabled))" hostmakedepends="python3-poetry-core" From 9a594c728e46af7ee10b5c6559ba4b9b0de5f108 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:29 -0500 Subject: [PATCH 0796/1664] mailnag: rebuild for Python 3.14 --- srcpkgs/mailnag/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mailnag/template b/srcpkgs/mailnag/template index f0cf635cc77ef9..67e9d1218dfa46 100644 --- a/srcpkgs/mailnag/template +++ b/srcpkgs/mailnag/template @@ -1,7 +1,7 @@ # Template file for 'mailnag' pkgname=mailnag version=2.2.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3 python3-setuptools gettext" depends="python3-gobject python3-dbus python3-xdg libsecret gtk+3" From 55a1b45e2bcdff6997fc546bb4de1055ba6d181d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:29 -0500 Subject: [PATCH 0797/1664] python3-autobahn: rebuild for Python 3.14 --- srcpkgs/python3-autobahn/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-autobahn/template b/srcpkgs/python3-autobahn/template index 3f4d7726e0de4c..2006698fb50136 100644 --- a/srcpkgs/python3-autobahn/template +++ b/srcpkgs/python3-autobahn/template @@ -1,7 +1,7 @@ # Template file for 'python3-autobahn' pkgname=python3-autobahn version=23.6.2 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3 python3-setuptools" depends="python3-cffi python3-Twisted python3-cryptography python3-txaio From 769f30c265beed125b2c86f2e61d44cdfb933e90 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:30 -0500 Subject: [PATCH 0798/1664] python3-iterable-io: rebuild for Python 3.14 --- srcpkgs/python3-iterable-io/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-iterable-io/template b/srcpkgs/python3-iterable-io/template index 2ac605875a1879..72a6333b5738b1 100644 --- a/srcpkgs/python3-iterable-io/template +++ b/srcpkgs/python3-iterable-io/template @@ -1,7 +1,7 @@ # Template file for 'python3-iterable-io' pkgname=python3-iterable-io version=1.0.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 83b0ab237ecd0232e77ae6f44d8b3540807adfd9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:30 -0500 Subject: [PATCH 0799/1664] python3-spake2: rebuild for Python 3.14 --- srcpkgs/python3-spake2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-spake2/template b/srcpkgs/python3-spake2/template index e4bf27fc958508..9cdbae6f79a017 100644 --- a/srcpkgs/python3-spake2/template +++ b/srcpkgs/python3-spake2/template @@ -1,7 +1,7 @@ # Template file for 'python3-spake2' pkgname=python3-spake2 version=0.8 -revision=8 +revision=9 build_style=python3-module pycompile_module="spake2" hostmakedepends="python3 python3-setuptools" From df00526181e5c6330b6720b5004b6f47eb605bca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:30 -0500 Subject: [PATCH 0800/1664] python3-txtorcon: rebuild for Python 3.14 --- srcpkgs/python3-txtorcon/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-txtorcon/template b/srcpkgs/python3-txtorcon/template index 0496ed0c10712c..ac03afc600d9bc 100644 --- a/srcpkgs/python3-txtorcon/template +++ b/srcpkgs/python3-txtorcon/template @@ -1,7 +1,7 @@ # Template file for 'python3-txtorcon' pkgname=python3-txtorcon version=23.11.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3 python3-setuptools" depends="lsof python3-automat python3-cryptography python3-six python3-Twisted From 6db49559021749f36d08726f294be522de87ab38 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:30 -0500 Subject: [PATCH 0801/1664] python3-zipstream-ng: rebuild for Python 3.14 --- srcpkgs/python3-zipstream-ng/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zipstream-ng/template b/srcpkgs/python3-zipstream-ng/template index 3a6a87967be48d..7c7d5f5dae801c 100644 --- a/srcpkgs/python3-zipstream-ng/template +++ b/srcpkgs/python3-zipstream-ng/template @@ -1,7 +1,7 @@ # Template file for 'python3-zipstream-ng' pkgname=python3-zipstream-ng version=1.8.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From e53b4c42e7f9d855b13f0e3c2c44d26a3275ba53 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:30 -0500 Subject: [PATCH 0802/1664] audit: rebuild for Python 3.14 --- srcpkgs/audit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template index 74058174b489e0..21ebab5f8e5451 100644 --- a/srcpkgs/audit/template +++ b/srcpkgs/audit/template @@ -1,7 +1,7 @@ # Template file for 'audit' pkgname=audit version=4.0.3 -revision=3 +revision=4 build_style=gnu-configure configure_args="--libdir=/usr/lib --enable-shared=audit --enable-gssapi-krb5 --with-apparmor --with-libcap-ng --with-python3" From 44a12c442b7b585a559fd9feea4d3b578fa5c173 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:30 -0500 Subject: [PATCH 0803/1664] libpfm4: rebuild for Python 3.14 --- srcpkgs/libpfm4/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libpfm4/template b/srcpkgs/libpfm4/template index 1d9694a16dea17..e9fd76b3693a7a 100644 --- a/srcpkgs/libpfm4/template +++ b/srcpkgs/libpfm4/template @@ -1,7 +1,7 @@ # Template file for 'libpfm4' pkgname=libpfm4 version=4.13.0 -revision=3 +revision=4 build_style=gnu-makefile build_helper=python3 make_use_env=yes From 821759a46b77aac2694d102ea6e0da3a3f492e3a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:31 -0500 Subject: [PATCH 0804/1664] fontforge: rebuild for Python 3.14 --- srcpkgs/fontforge/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/fontforge/template b/srcpkgs/fontforge/template index a5cfa8c85b72b5..f56fd1f24cb197 100644 --- a/srcpkgs/fontforge/template +++ b/srcpkgs/fontforge/template @@ -1,7 +1,7 @@ # Template file for 'fontforge' pkgname=fontforge version=20251009 -revision=1 +revision=2 build_style=cmake hostmakedepends="automake ca-certificates gettext libltdl-devel libtool m4 pkg-config python3 python3-setuptools python3-packaging-bootstrap" From dda2532665a870fa8da09554fe2d94d4d4858f53 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:31 -0500 Subject: [PATCH 0805/1664] liborcus: rebuild for Python 3.14 --- srcpkgs/liborcus/template | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/srcpkgs/liborcus/template b/srcpkgs/liborcus/template index 58a1fedcd04853..db7aa9b847da0b 100644 --- a/srcpkgs/liborcus/template +++ b/srcpkgs/liborcus/template @@ -1,7 +1,7 @@ # Template file for 'liborcus' pkgname=liborcus version=0.20.2 -revision=2 +revision=3 build_style=gnu-configure hostmakedepends="automake libtool pkg-config python3" makedepends="boost-devel-minimal libboost_date_time @@ -18,6 +18,8 @@ distfiles="https://gitlab.com/orcus/orcus/-/archive/${version}/orcus-${version}. checksum=232683a8a0954914a0822061303b739a3301dd6d0f0f7f8af459af5980a9e978 replaces="liborcus11>=0" +export BOOST_ROOT="${XBPS_CROSS_BASE}/usr" + pre_configure() { autoreconf -if } From 5c1663dc8b94a6baadd530d7f517c4ff87d48ee2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:31 -0500 Subject: [PATCH 0806/1664] libbytesize: rebuild for Python 3.14 --- srcpkgs/libbytesize/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template index 1641d4babbf643..95c2af7ab44f55 100644 --- a/srcpkgs/libbytesize/template +++ b/srcpkgs/libbytesize/template @@ -1,7 +1,7 @@ # Template file for 'libbytesize' pkgname=libbytesize version=2.10 -revision=2 +revision=3 build_style=gnu-configure hostmakedepends="pkg-config gettext python3" makedepends="mpfr-devel pcre2-devel" From e17bc21e2dcfb133ed487ca5598dfeb012a77223 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:31 -0500 Subject: [PATCH 0807/1664] libnvme: rebuild for Python 3.14 --- srcpkgs/libnvme/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libnvme/template b/srcpkgs/libnvme/template index d182fc81b0ccb3..c1adfb8cc2cab5 100644 --- a/srcpkgs/libnvme/template +++ b/srcpkgs/libnvme/template @@ -1,7 +1,7 @@ # Template file for 'libnvme' pkgname=libnvme version=1.15 -revision=1 +revision=2 build_style=meson configure_args="-Ddocs=man" hostmakedepends="pkg-config swig tar xz" From ebdcb2f4778a51ed5efe4e6f83eb37394cff2ab4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:31 -0500 Subject: [PATCH 0808/1664] volume_key: rebuild for Python 3.14 --- srcpkgs/volume_key/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/volume_key/template b/srcpkgs/volume_key/template index 67282a89c6e479..37066264b36782 100644 --- a/srcpkgs/volume_key/template +++ b/srcpkgs/volume_key/template @@ -1,7 +1,7 @@ # Template file for 'volume_key' pkgname=volume_key version=0.3.12 -revision=9 +revision=10 build_style=gnu-configure configure_args="--without-python" hostmakedepends="pkg-config python3-setuptools swig" From 046a0f9ed0e43838e0cfdd812b6ac528db5de9f6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:32 -0500 Subject: [PATCH 0809/1664] mlt7: rebuild for Python 3.14 --- srcpkgs/mlt7/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mlt7/template b/srcpkgs/mlt7/template index 35d0fa1c1bed66..ba9a1f29c1d8b9 100644 --- a/srcpkgs/mlt7/template +++ b/srcpkgs/mlt7/template @@ -1,7 +1,7 @@ # Template file for 'mlt7' pkgname=mlt7 version=7.30.0 -revision=3 +revision=4 build_style=cmake configure_args="-DSWIG_PYTHON=ON -DMOD_QT6=ON" hostmakedepends="doxygen pkg-config ladspa-sdk swig python3 which From 48443544f3a80eed2d6a8b47b7c98114124e8fd1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:32 -0500 Subject: [PATCH 0810/1664] opencolorio: rebuild for Python 3.14 --- srcpkgs/opencolorio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/opencolorio/template b/srcpkgs/opencolorio/template index 5382c1006edb75..b8468d4e275973 100644 --- a/srcpkgs/opencolorio/template +++ b/srcpkgs/opencolorio/template @@ -1,7 +1,7 @@ # Template file for 'opencolorio' pkgname=opencolorio version=2.4.2 -revision=1 +revision=2 build_style=cmake configure_args="-DCMAKE_CONFIGURATION_TYPES=None -DOCIO_INSTALL_EXT_PACKAGES=NONE From cac25f79524e2d8d33c9cff4f3a96a59c41508ce Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:32 -0500 Subject: [PATCH 0811/1664] libcec: rebuild for Python 3.14 --- srcpkgs/libcec/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libcec/template b/srcpkgs/libcec/template index 877a04a15179de..939df1bd7aebb8 100644 --- a/srcpkgs/libcec/template +++ b/srcpkgs/libcec/template @@ -1,7 +1,7 @@ # Template file for 'libcec' pkgname=libcec version=6.0.2 -revision=5 +revision=6 build_style=cmake configure_args="Python_ADDITIONAL_VERSIONS=${py3_ver}" hostmakedepends="pkg-config libtool swig" From f896f92ee9f61849d8e5d0b73279c49d9325896f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:32 -0500 Subject: [PATCH 0812/1664] kf6-kxmlgui: rebuild for Python 3.14 --- srcpkgs/kf6-kxmlgui/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kxmlgui/template b/srcpkgs/kf6-kxmlgui/template index 04557bd621207c..026c3aefad0998 100644 --- a/srcpkgs/kf6-kxmlgui/template +++ b/srcpkgs/kf6-kxmlgui/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kxmlgui' pkgname=kf6-kxmlgui version=6.19.0 -revision=1 +revision=2 _llvmver=21 build_style=cmake configure_args="$(vopt_bool python BUILD_PYTHON_BINDINGS)" From f0df674607c0309e3205b0d6ed05390c29b28711 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:32 -0500 Subject: [PATCH 0813/1664] doxypypy: rebuild for Python 3.14 --- srcpkgs/doxypypy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/doxypypy/template b/srcpkgs/doxypypy/template index 2908a05f748b86..31c54b8951770b 100644 --- a/srcpkgs/doxypypy/template +++ b/srcpkgs/doxypypy/template @@ -1,7 +1,7 @@ # Template file for 'doxypypy' pkgname=doxypypy version=0.8.8.7 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools python3-chardet" depends="python3-chardet" From e5f14246caee0f0e6d7b7a81c910954cd5f641fb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:32 -0500 Subject: [PATCH 0814/1664] doxyqml: rebuild for Python 3.14 --- srcpkgs/doxyqml/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/doxyqml/template b/srcpkgs/doxyqml/template index 185af1258fbe61..6ce3e21201dc76 100644 --- a/srcpkgs/doxyqml/template +++ b/srcpkgs/doxyqml/template @@ -1,7 +1,7 @@ # Template file for 'doxyqml' pkgname=doxyqml version=0.5.3 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" checkdepends="python3-pytest" From c11c356add8fb3baa3a977f90e5c931da663ec1f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:33 -0500 Subject: [PATCH 0815/1664] ldapdomaindump: rebuild for Python 3.14 --- srcpkgs/ldapdomaindump/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ldapdomaindump/template b/srcpkgs/ldapdomaindump/template index 7da1df1b04dd82..dcba3689f2665c 100644 --- a/srcpkgs/ldapdomaindump/template +++ b/srcpkgs/ldapdomaindump/template @@ -1,7 +1,7 @@ # Template file for 'ldapdomaindump' pkgname=ldapdomaindump version=0.10.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-future python3-ldap3 python3-dnspython" From 992d0ca6fe1de46d5831e81b1d99e292543c9531 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 25 Nov 2025 09:09:43 -0500 Subject: [PATCH 0816/1664] python3-wgnlpy: rebuild for Python 3.14 --- srcpkgs/python3-wgnlpy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-wgnlpy/template b/srcpkgs/python3-wgnlpy/template index 6bb478f6b732b0..d52f45cf51f8d8 100644 --- a/srcpkgs/python3-wgnlpy/template +++ b/srcpkgs/python3-wgnlpy/template @@ -1,7 +1,7 @@ # Template file for 'python3-wgnlpy' pkgname=python3-wgnlpy version=0.1.5 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3-cryptography python3-pyroute2" From 5c623116ddf638270358bd9d603530936cf38940 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:33 -0500 Subject: [PATCH 0817/1664] python3-cloudscraper: rebuild for Python 3.14 --- srcpkgs/python3-cloudscraper/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cloudscraper/template b/srcpkgs/python3-cloudscraper/template index 1cec559e45a05a..e820893667f408 100644 --- a/srcpkgs/python3-cloudscraper/template +++ b/srcpkgs/python3-cloudscraper/template @@ -1,7 +1,7 @@ # Template file for 'python3-cloudscraper' pkgname=python3-cloudscraper version=1.2.58 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests-toolbelt" From fa53df0ae03002694db61b9ac3a85100e5be6ada Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:33 -0500 Subject: [PATCH 0818/1664] python3-mpv: rebuild for Python 3.14 --- srcpkgs/python3-mpv/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mpv/template b/srcpkgs/python3-mpv/template index f55d47cdb78508..dd18a723d871c2 100644 --- a/srcpkgs/python3-mpv/template +++ b/srcpkgs/python3-mpv/template @@ -1,7 +1,7 @@ # Template file for 'python3-mpv' pkgname=python3-mpv version=1.0.6 -revision=2 +revision=3 build_style=python3-pep517 # this test takes too long and has a low chance of failure # https://github.com/jaseg/python-mpv/issues/209#issuecomment-1180248112 From 7b53ac89ce02fcd9d2bfcdfd4ea8b66f9a749ed8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:33 -0500 Subject: [PATCH 0819/1664] python3-pyqt6-charts: rebuild for Python 3.14 --- srcpkgs/python3-pyqt6-charts/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyqt6-charts/template b/srcpkgs/python3-pyqt6-charts/template index cf068b5391e882..70ccc11bbea6e7 100644 --- a/srcpkgs/python3-pyqt6-charts/template +++ b/srcpkgs/python3-pyqt6-charts/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyqt6-charts' pkgname=python3-pyqt6-charts version=6.10.0 -revision=1 +revision=2 build_style=sip-build build_helper="python3" hostmakedepends="qt6-base python3-PyQt-builder pkg-config" From bbc47a9bd2f84eef65788566ae2cc87d742e366c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:33 -0500 Subject: [PATCH 0820/1664] lensfun: rebuild for Python 3.14 --- srcpkgs/lensfun/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/lensfun/template b/srcpkgs/lensfun/template index 60995f17e26ce8..ee0dc1626bb86d 100644 --- a/srcpkgs/lensfun/template +++ b/srcpkgs/lensfun/template @@ -1,7 +1,7 @@ # Template file for 'lensfun' pkgname=lensfun version=0.3.4 -revision=2 +revision=3 build_style=cmake configure_args="-DINSTALL_HELPER_SCRIPTS=0" hostmakedepends="pkg-config python3-setuptools" From 15933697ae1b5571d16fe92ce8fdd42518d08d0b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:33 -0500 Subject: [PATCH 0821/1664] python3-dulwich: rebuild for Python 3.14 --- srcpkgs/python3-dulwich/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-dulwich/template b/srcpkgs/python3-dulwich/template index 94136c7b1b33df..aba5020947dd9c 100644 --- a/srcpkgs/python3-dulwich/template +++ b/srcpkgs/python3-dulwich/template @@ -1,7 +1,7 @@ # Template file for 'python3-dulwich' pkgname=python3-dulwich version=0.24.1 -revision=1 +revision=2 build_style=python3-module make_check_target="dulwich/tests" hostmakedepends="python3-setuptools-rust" From e7d5468778257f51e9a0ac46805cecc9b230e7bd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:34 -0500 Subject: [PATCH 0822/1664] python3-irc: rebuild for Python 3.14 --- srcpkgs/python3-irc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-irc/template b/srcpkgs/python3-irc/template index bf81b84c7472b3..c509b4caf7a11f 100644 --- a/srcpkgs/python3-irc/template +++ b/srcpkgs/python3-irc/template @@ -1,7 +1,7 @@ # Template file for 'python3-irc' pkgname=python3-irc version=20.1.0 -revision=4 +revision=5 build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" depends="python3-jaraco.collections python3-jaraco.text python3-jaraco.logging From dabd25fd6ffdb5798cb2d33b05a9ca6fdd2ce13c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:34 -0500 Subject: [PATCH 0823/1664] python3-mautrix: rebuild for Python 3.14 --- srcpkgs/python3-mautrix/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mautrix/template b/srcpkgs/python3-mautrix/template index e484edee6b7473..56f7f1d02a466d 100644 --- a/srcpkgs/python3-mautrix/template +++ b/srcpkgs/python3-mautrix/template @@ -1,7 +1,7 @@ # Template file for 'python3-mautrix' pkgname=python3-mautrix version=0.20.2 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-aiohttp python3-attrs python3-yarl python3-magic olm-python3" From 2337ead98926d27733e77d66aaa4a367dcca3fb7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:34 -0500 Subject: [PATCH 0824/1664] python3-shellingham: rebuild for Python 3.14 --- srcpkgs/python3-shellingham/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-shellingham/template b/srcpkgs/python3-shellingham/template index 97141314ddf0d5..62ce264ddb7134 100644 --- a/srcpkgs/python3-shellingham/template +++ b/srcpkgs/python3-shellingham/template @@ -1,7 +1,7 @@ # Template file for 'python3-shellingham' pkgname=python3-shellingham version=1.5.4 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From a80463b49d4a0cbf6073ee927fe69b5d54b98da6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:34 -0500 Subject: [PATCH 0825/1664] python3-tomli-w: rebuild for Python 3.14 --- srcpkgs/python3-tomli-w/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tomli-w/template b/srcpkgs/python3-tomli-w/template index bed635cacdefdd..e7f6cdb9639119 100644 --- a/srcpkgs/python3-tomli-w/template +++ b/srcpkgs/python3-tomli-w/template @@ -1,7 +1,7 @@ # Template file for 'python3-tomli-w' pkgname=python3-tomli-w version=1.0.0 -revision=4 +revision=5 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3" From c2b753cfe406a927c8d213413d5d3ee38c09c92e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:34 -0500 Subject: [PATCH 0826/1664] python3-injector: rebuild for Python 3.14 --- srcpkgs/python3-injector/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-injector/template b/srcpkgs/python3-injector/template index b30e22d56a8000..4690bdf2289a8e 100644 --- a/srcpkgs/python3-injector/template +++ b/srcpkgs/python3-injector/template @@ -1,7 +1,7 @@ # Template file for 'python3-injector' pkgname=python3-injector version=0.19.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-typing_extensions python3-setuptools" depends="python3 python3-typing_extensions" From d086c1ce48dd61ad466d41b0c8774784139b860c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:34 -0500 Subject: [PATCH 0827/1664] python3-nvml: rebuild for Python 3.14 --- srcpkgs/python3-nvml/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-nvml/template b/srcpkgs/python3-nvml/template index 166b0c1fee3f4a..3f470c435b3481 100644 --- a/srcpkgs/python3-nvml/template +++ b/srcpkgs/python3-nvml/template @@ -1,7 +1,7 @@ # Template file for 'python3-nvml' pkgname=python3-nvml version=0.2.4 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 3ef45a7c5e8afc8efd5620f2e71663e2ea1d9ca5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:35 -0500 Subject: [PATCH 0828/1664] python3-rx: rebuild for Python 3.14 --- srcpkgs/python3-rx/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-rx/template b/srcpkgs/python3-rx/template index 0bb4f1b4a1411d..6dea50bdb0eafe 100644 --- a/srcpkgs/python3-rx/template +++ b/srcpkgs/python3-rx/template @@ -1,7 +1,7 @@ # Template file for 'python3-rx' pkgname=python3-rx version=3.1.1 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools python3-pytest" depends="python3" From f933e9af672ea0ed11663f34c932061da4b35cac Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:35 -0500 Subject: [PATCH 0829/1664] ufw: rebuild for Python 3.14 --- srcpkgs/ufw/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template index 47a27c9d30dd15..38ec26e2411a49 100644 --- a/srcpkgs/ufw/template +++ b/srcpkgs/ufw/template @@ -1,7 +1,7 @@ # Template file for 'ufw' pkgname=ufw version=0.36.2 -revision=4 +revision=5 _major_minor="${version%.*}" build_style=python3-module conf_files=" From f150a7ea62d683d8b2355844ae7d66b930f44bc5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:35 -0500 Subject: [PATCH 0830/1664] python3-path-and-address: rebuild for Python 3.14 --- srcpkgs/python3-path-and-address/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-path-and-address/template b/srcpkgs/python3-path-and-address/template index da4c378835663f..de2b9458b6e699 100644 --- a/srcpkgs/python3-path-and-address/template +++ b/srcpkgs/python3-path-and-address/template @@ -1,7 +1,7 @@ # Template file for 'python3-path-and-address' pkgname=python3-path-and-address version=2.0.1 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 82d234ced48bfebb44cfd8718917257e68fd795b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:35 -0500 Subject: [PATCH 0831/1664] python3-PyICU: rebuild for Python 3.14 --- srcpkgs/python3-PyICU/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-PyICU/template b/srcpkgs/python3-PyICU/template index 448964e1e6b79d..86a33ec760c006 100644 --- a/srcpkgs/python3-PyICU/template +++ b/srcpkgs/python3-PyICU/template @@ -1,7 +1,7 @@ # Template file for 'python3-PyICU' pkgname=python3-PyICU version=2.14 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel icu-devel" From 04f2cd221ba1b9a3bc5f63181ce723353db37e6f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:35 -0500 Subject: [PATCH 0832/1664] python3-bsddb3: rebuild for Python 3.14 --- srcpkgs/python3-bsddb3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-bsddb3/template b/srcpkgs/python3-bsddb3/template index e21b61ec2ce465..91907bcdcd0544 100644 --- a/srcpkgs/python3-bsddb3/template +++ b/srcpkgs/python3-bsddb3/template @@ -1,7 +1,7 @@ # Template file for 'python3-bsddb3' pkgname=python3-bsddb3 version=6.2.7 -revision=6 +revision=7 build_style=python3-module make_build_args="--berkeley-db=${XBPS_CROSS_BASE}/usr" make_install_args="--berkeley-db=${XBPS_CROSS_BASE}/usr" From 89c8267763a62c922a283c9e5d07a08c95b9d4a8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:35 -0500 Subject: [PATCH 0833/1664] python3-orjson: rebuild for Python 3.14 --- srcpkgs/python3-orjson/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-orjson/template b/srcpkgs/python3-orjson/template index b33da2862da73c..0ce9e47f8e48b1 100644 --- a/srcpkgs/python3-orjson/template +++ b/srcpkgs/python3-orjson/template @@ -1,7 +1,7 @@ # Template file for 'python3-orjson' pkgname=python3-orjson version=3.11.4 -revision=1 +revision=2 build_style=python3-pep517 build_helper="rust" hostmakedepends="maturin cargo" From 3232bba37c03473e4bb1388a13adc13f52cf2dbc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:36 -0500 Subject: [PATCH 0834/1664] eyeD3: rebuild for Python 3.14 --- srcpkgs/eyeD3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template index 0815e9122ad9b6..f3608d3c12a9b7 100644 --- a/srcpkgs/eyeD3/template +++ b/srcpkgs/eyeD3/template @@ -1,7 +1,7 @@ # Template file for 'eyeD3' pkgname=eyeD3 version=0.9.6 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pylast python3-setuptools python3-deprecation python3-filetype" From b5c6c91ae79bc540064564715ecf4380243d571c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:36 -0500 Subject: [PATCH 0835/1664] python3-mygpoclient: rebuild for Python 3.14 --- srcpkgs/python3-mygpoclient/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mygpoclient/template b/srcpkgs/python3-mygpoclient/template index b113bac376bf61..aa4ee315f4d453 100644 --- a/srcpkgs/python3-mygpoclient/template +++ b/srcpkgs/python3-mygpoclient/template @@ -1,7 +1,7 @@ # Template file for 'python3-mygpoclient' pkgname=python3-mygpoclient version=1.8 -revision=11 +revision=12 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From b020596375313c953159ad723cc941172830be52 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:36 -0500 Subject: [PATCH 0836/1664] python3-podcastparser: rebuild for Python 3.14 --- srcpkgs/python3-podcastparser/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-podcastparser/template b/srcpkgs/python3-podcastparser/template index 52a93fdd4913d2..69c76299195bc4 100644 --- a/srcpkgs/python3-podcastparser/template +++ b/srcpkgs/python3-podcastparser/template @@ -1,7 +1,7 @@ # Template file for 'python3-podcastparser' pkgname=python3-podcastparser version=0.6.9 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 0028ee7d93797624baec82917bb6049717016558 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:36 -0500 Subject: [PATCH 0837/1664] gnuradio: rebuild for Python 3.14 --- srcpkgs/gnuradio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnuradio/template b/srcpkgs/gnuradio/template index 842d9c49b682c6..89a1f07892fb4b 100644 --- a/srcpkgs/gnuradio/template +++ b/srcpkgs/gnuradio/template @@ -1,7 +1,7 @@ # Template file for 'gnuradio' pkgname=gnuradio version=3.10.12.0 -revision=1 +revision=2 build_style=cmake build_helper="python3" conf_files="/etc/gnuradio/conf.d/*" From 5547c4bd450bfdd93c9f413160536887ce8c55a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:36 -0500 Subject: [PATCH 0838/1664] ktoblzcheck: rebuild for Python 3.14 --- srcpkgs/ktoblzcheck/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ktoblzcheck/template b/srcpkgs/ktoblzcheck/template index cb204f106c6ab7..23ea84eb541673 100644 --- a/srcpkgs/ktoblzcheck/template +++ b/srcpkgs/ktoblzcheck/template @@ -1,7 +1,7 @@ # Template file for 'ktoblzcheck' pkgname=ktoblzcheck version=1.53 -revision=6 +revision=7 build_style=cmake configure_args="-DENABLE_BANKDATA_DOWNLOAD=NO" hostmakedepends="pkg-config python3" From 4bf99805c5ca07868a6c6782907a5f6ed1caa521 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:36 -0500 Subject: [PATCH 0839/1664] python3-aiohttp-cors: rebuild for Python 3.14 --- srcpkgs/python3-aiohttp-cors/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-aiohttp-cors/template b/srcpkgs/python3-aiohttp-cors/template index 7d8cd1c98d90a8..d9f1d99e00d9d5 100644 --- a/srcpkgs/python3-aiohttp-cors/template +++ b/srcpkgs/python3-aiohttp-cors/template @@ -1,7 +1,7 @@ # Template file for 'python3-aiohttp-cors' pkgname=python3-aiohttp-cors version=0.7.0 -revision=7 +revision=8 build_style=python3-module pycompile_module="aiohttp_cors" hostmakedepends="python3-setuptools" From 25e7cfb290e14b7e16d63a4ac6447c2878aef0d0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:37 -0500 Subject: [PATCH 0840/1664] gns3-net-converter: rebuild for Python 3.14 --- srcpkgs/gns3-net-converter/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gns3-net-converter/template b/srcpkgs/gns3-net-converter/template index fe21c181675c31..c4336ba21be7a1 100644 --- a/srcpkgs/gns3-net-converter/template +++ b/srcpkgs/gns3-net-converter/template @@ -1,7 +1,7 @@ # Template file for 'gns3-net-converter' pkgname=gns3-net-converter version=1.3.0 -revision=9 +revision=10 build_style=python3-module pycompile_module="gns3converter" hostmakedepends="python3-setuptools" From 400619148291236b74b6c39a08cd9822080e976c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:37 -0500 Subject: [PATCH 0841/1664] libpwquality: rebuild for Python 3.14 --- srcpkgs/libpwquality/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libpwquality/template b/srcpkgs/libpwquality/template index 7c5ecc58faaeb8..33c87593920544 100644 --- a/srcpkgs/libpwquality/template +++ b/srcpkgs/libpwquality/template @@ -1,7 +1,7 @@ # Template file for 'libpwquality' pkgname=libpwquality version=1.4.5 -revision=3 +revision=4 build_style=gnu-configure build_helper=python3 configure_args="--disable-static --enable-pam --with-securedir=/usr/lib/security" From 0c76ca2abc27c975e94f82ef4cdd710e77de708b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:37 -0500 Subject: [PATCH 0842/1664] python3-pyotp: rebuild for Python 3.14 --- srcpkgs/python3-pyotp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyotp/template b/srcpkgs/python3-pyotp/template index d40deae430c33c..60fca9432551ec 100644 --- a/srcpkgs/python3-pyotp/template +++ b/srcpkgs/python3-pyotp/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyotp' pkgname=python3-pyotp version=2.6.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From f3cacdfe586f41bdf00177eab3dfb152e742edb9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:37 -0500 Subject: [PATCH 0843/1664] python3-validators: rebuild for Python 3.14 --- srcpkgs/python3-validators/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-validators/template b/srcpkgs/python3-validators/template index 1cb983185f3e07..ee5e044044b9ef 100644 --- a/srcpkgs/python3-validators/template +++ b/srcpkgs/python3-validators/template @@ -1,7 +1,7 @@ # Template file for 'python3-validators' pkgname=python3-validators version=0.14.2 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-decorator python3-six" From 97abfae8125cb81f0956bb7987917f2ac1e5c4ea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:37 -0500 Subject: [PATCH 0844/1664] python3-shtab: rebuild for Python 3.14 --- srcpkgs/python3-shtab/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-shtab/template b/srcpkgs/python3-shtab/template index 2b797f55dfa13d..adcd27762e5f5b 100644 --- a/srcpkgs/python3-shtab/template +++ b/srcpkgs/python3-shtab/template @@ -1,7 +1,7 @@ # Template file for 'python3-shtab' pkgname=python3-shtab version=1.7.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3" From 83f97b4d6443c8c6d368f7ed7aac7ca737d6e3b6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:37 -0500 Subject: [PATCH 0845/1664] libgit2-glib: rebuild for Python 3.14 --- srcpkgs/libgit2-glib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libgit2-glib/template b/srcpkgs/libgit2-glib/template index c733a9472270cd..7efab95142351f 100644 --- a/srcpkgs/libgit2-glib/template +++ b/srcpkgs/libgit2-glib/template @@ -1,7 +1,7 @@ # Template file for 'libgit2-glib' pkgname=libgit2-glib version=1.2.1 -revision=2 +revision=3 build_style=meson build_helper="gir" configure_args="-Dintrospection=$(vopt_if gir true false) From e3f12ae27f1282cc3d58fbc7d00843b0de4b387f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:38 -0500 Subject: [PATCH 0846/1664] python3-polib: rebuild for Python 3.14 --- srcpkgs/python3-polib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-polib/template b/srcpkgs/python3-polib/template index 84185bb85d69a3..89a2fbb1eb11c1 100644 --- a/srcpkgs/python3-polib/template +++ b/srcpkgs/python3-polib/template @@ -1,7 +1,7 @@ # Template file for 'python3-polib' pkgname=python3-polib version=1.1.0 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From dc29d5f6da7c3fe502d231713da3df467504e0c8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:38 -0500 Subject: [PATCH 0847/1664] python3-syndom: rebuild for Python 3.14 --- srcpkgs/python3-syndom/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-syndom/template b/srcpkgs/python3-syndom/template index 9d8a1dddbf8038..436d13aa8b1b47 100644 --- a/srcpkgs/python3-syndom/template +++ b/srcpkgs/python3-syndom/template @@ -1,7 +1,7 @@ # Template file for 'python3-syndom' pkgname=python3-syndom version=1.0 -revision=3 +revision=4 build_style=meson hostmakedepends="pkg-config python3-pybind11" makedepends="fmt-devel libtidy5-devel pugixml-devel python3-pybind11" From 2564a79893e2136efcea98ae5afb6b895d18c875 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:38 -0500 Subject: [PATCH 0848/1664] gdb: rebuild for Python 3.14 --- srcpkgs/gdb/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/gdb/template b/srcpkgs/gdb/template index f930b5102e91a8..a960dfa3d2c0a8 100644 --- a/srcpkgs/gdb/template +++ b/srcpkgs/gdb/template @@ -1,7 +1,7 @@ # Template file for 'gdb' pkgname=gdb version=16.3 -revision=1 +revision=2 build_style=gnu-configure pycompile_dirs="/usr/share/gdb/python" configure_args="--disable-werror --disable-nls --with-system-readline @@ -52,13 +52,13 @@ if [ "$XBPS_TARGET_WORDSIZE" -eq 64 ]; then build_options_default+=" multiarch" fi +subpackages="gdb-common" if [ "$build_option_multiarch" ]; then if [ "$XBPS_TARGET_WORDSIZE" -eq 32 ]; then broken="run-cris link fails: undefined reference to bpf_match_insn etc" fi - subpackages="gdb-multiarch" + subpackages="gdb-multiarch ${subpackages}" fi -subpackages+=" gdb-common" post_install() { # resolve conflicts with binutils From aef9d7e3898497de40ef2437babb61d1327acf6e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:38 -0500 Subject: [PATCH 0849/1664] python3-Ropper: rebuild for Python 3.14 --- srcpkgs/python3-Ropper/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Ropper/template b/srcpkgs/python3-Ropper/template index 9c73e9fa87e598..47fba42437c189 100644 --- a/srcpkgs/python3-Ropper/template +++ b/srcpkgs/python3-Ropper/template @@ -1,7 +1,7 @@ # Template file for 'python3-Ropper' pkgname=python3-Ropper version=1.13.13 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-setuptools" depends="capstone-python3 python3-filebytes keystone-python3 python3-setuptools" From d05a1c2efce859b2aac2debf14ee66f31eb3404b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:38 -0500 Subject: [PATCH 0850/1664] unicorn: rebuild for Python 3.14 --- srcpkgs/unicorn/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/unicorn/template b/srcpkgs/unicorn/template index 56a2e5f32d1157..4eef38b0e23640 100644 --- a/srcpkgs/unicorn/template +++ b/srcpkgs/unicorn/template @@ -1,7 +1,7 @@ # Template file for 'unicorn' pkgname=unicorn version=1.0.2 -revision=5 +revision=6 hostmakedepends="python3-devel python3-setuptools" short_desc="Lightweight multi-platform, multi-architecture CPU emulator framework" maintainer="Piraty " From f40cc4a1a67f18fa838c51b9f731b56d83615667 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:38 -0500 Subject: [PATCH 0851/1664] python3-oauth2client: rebuild for Python 3.14 --- srcpkgs/python3-oauth2client/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-oauth2client/template b/srcpkgs/python3-oauth2client/template index 136e7a1f947f2b..2c20e6a28c1c6b 100644 --- a/srcpkgs/python3-oauth2client/template +++ b/srcpkgs/python3-oauth2client/template @@ -1,7 +1,7 @@ # Template file for 'python3-oauth2client' pkgname=python3-oauth2client version=4.1.3 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-httplib2 python3-pyasn1 python3-pyasn1-modules From 1025f9855f94b9714654aa80545fe9e4c1f78873 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:39 -0500 Subject: [PATCH 0852/1664] python3-css-parser: rebuild for Python 3.14 --- srcpkgs/python3-css-parser/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-css-parser/template b/srcpkgs/python3-css-parser/template index fbe78b31bab355..bbef77ce3ff931 100644 --- a/srcpkgs/python3-css-parser/template +++ b/srcpkgs/python3-css-parser/template @@ -1,7 +1,7 @@ # Template file for 'python3-css-parser' pkgname=python3-css-parser version=1.0.10 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 1647e5848fd415ef25a4f7fd26492d6d0e8740c4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:39 -0500 Subject: [PATCH 0853/1664] python3-emoji: rebuild for Python 3.14 --- srcpkgs/python3-emoji/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-emoji/template b/srcpkgs/python3-emoji/template index 2c17b00e0264b2..0479aed64510bb 100644 --- a/srcpkgs/python3-emoji/template +++ b/srcpkgs/python3-emoji/template @@ -1,7 +1,7 @@ # Template file for 'python3-emoji' pkgname=python3-emoji version=2.7.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From d5cf621f70e76b374cce15baffa52c66e51cb269 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:39 -0500 Subject: [PATCH 0854/1664] python3-nbxmpp: rebuild for Python 3.14 --- srcpkgs/python3-nbxmpp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-nbxmpp/template b/srcpkgs/python3-nbxmpp/template index bbd77ddd64ce2e..4a3581be79799c 100644 --- a/srcpkgs/python3-nbxmpp/template +++ b/srcpkgs/python3-nbxmpp/template @@ -1,7 +1,7 @@ # Template file for 'python3-nbxmpp' pkgname=python3-nbxmpp version=6.2.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3-gobject python3-openssl python3-packaging python3-precis-i18n python3-idna libsoup3" From 1b318dff6ee5b53c4e83ee097eeb55a5653db507 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:39 -0500 Subject: [PATCH 0855/1664] python3-omemo-dr: rebuild for Python 3.14 --- srcpkgs/python3-omemo-dr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-omemo-dr/template b/srcpkgs/python3-omemo-dr/template index 99749ff0540bdd..c57df52ee768af 100644 --- a/srcpkgs/python3-omemo-dr/template +++ b/srcpkgs/python3-omemo-dr/template @@ -1,7 +1,7 @@ # Template file for 'python3-omemo-dr' pkgname=python3-omemo-dr version=1.0.0 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" makedepends="python3-devel" From 20806aba9e2cf19e3af71252e40012a4a0eb5996 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:39 -0500 Subject: [PATCH 0856/1664] python3-GitPython: rebuild for Python 3.14 --- srcpkgs/python3-GitPython/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-GitPython/template b/srcpkgs/python3-GitPython/template index 18a42acfa710d4..886b08764005a6 100644 --- a/srcpkgs/python3-GitPython/template +++ b/srcpkgs/python3-GitPython/template @@ -1,7 +1,7 @@ # Template file for 'python3-GitPython' pkgname=python3-GitPython version=3.1.31 -revision=3 +revision=4 build_style=python3-module make_check_args="--deselect test/test_base.py::TestBase::test_with_rw_remote_and_rw_repo --deselect test/test_git.py::TestGit::test_refresh From da6668250b7f0964b40136b48d3903a8b657a022 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:39 -0500 Subject: [PATCH 0857/1664] python3-pivy: rebuild for Python 3.14 --- srcpkgs/python3-pivy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pivy/template b/srcpkgs/python3-pivy/template index 5cccc8aaaa5a98..a77439c5faa72e 100644 --- a/srcpkgs/python3-pivy/template +++ b/srcpkgs/python3-pivy/template @@ -1,7 +1,7 @@ # Template file for 'python3-pivy' pkgname=python3-pivy version=0.6.9 -revision=1 +revision=2 build_style=cmake hostmakedepends="python3-devel swig" makedepends="python3-devel coin3-devel" From 5c7df593a05e6ab543f16c9cb223e3314649e081 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:40 -0500 Subject: [PATCH 0858/1664] beancount: rebuild for Python 3.14 --- srcpkgs/beancount/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/beancount/template b/srcpkgs/beancount/template index 354485b68ec606..cf4ec853e27743 100644 --- a/srcpkgs/beancount/template +++ b/srcpkgs/beancount/template @@ -1,7 +1,7 @@ # Template file for 'beancount' pkgname=beancount version=2.3.6 -revision=4 +revision=5 build_style=python3-module make_check_args="--pyargs beancount --ignore beancount/web/web_test.py --deselect beancount/scripts/bake_test.py::TestScriptBake::test_bake_directory From e77564f5d2de1e8fc519397660b104b5f2ffc260 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:40 -0500 Subject: [PATCH 0859/1664] python3-Flask-Babel: rebuild for Python 3.14 --- srcpkgs/python3-Flask-Babel/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Flask-Babel/template b/srcpkgs/python3-Flask-Babel/template index da803b64cba3ca..5a08a15827b030 100644 --- a/srcpkgs/python3-Flask-Babel/template +++ b/srcpkgs/python3-Flask-Babel/template @@ -1,7 +1,7 @@ # Template file for 'python3-Flask-Babel' pkgname=python3-Flask-Babel version=4.0.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-pytz python3-Jinja2 python3-Babel python3-Flask" From bd8911c506966b1bb38ca39419d29c8d63457878 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:40 -0500 Subject: [PATCH 0860/1664] python3-markdown2: rebuild for Python 3.14 --- srcpkgs/python3-markdown2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-markdown2/template b/srcpkgs/python3-markdown2/template index 86e628333700da..4ffd9aef10f929 100644 --- a/srcpkgs/python3-markdown2/template +++ b/srcpkgs/python3-markdown2/template @@ -1,7 +1,7 @@ # Template file for 'python3-markdown2' pkgname=python3-markdown2 version=2.4.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From ea8e0724c4974d902460fc9c92d81b8b287300be Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:40 -0500 Subject: [PATCH 0861/1664] python3-simplejson: rebuild for Python 3.14 --- srcpkgs/python3-simplejson/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-simplejson/template b/srcpkgs/python3-simplejson/template index 1c173ddc400a70..2643c096ae00d8 100644 --- a/srcpkgs/python3-simplejson/template +++ b/srcpkgs/python3-simplejson/template @@ -1,7 +1,7 @@ # Template file for 'python3-simplejson' pkgname=python3-simplejson version=3.18.3 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From c49fd98da088ff5cfc6a24aa3ef37c727361e434 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:40 -0500 Subject: [PATCH 0862/1664] kf6-kjobwidgets: rebuild for Python 3.14 --- srcpkgs/kf6-kjobwidgets/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kjobwidgets/template b/srcpkgs/kf6-kjobwidgets/template index 05df3c0696340a..55ad67bc2edea2 100644 --- a/srcpkgs/kf6-kjobwidgets/template +++ b/srcpkgs/kf6-kjobwidgets/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kjobwidgets' pkgname=kf6-kjobwidgets version=6.19.0 -revision=1 +revision=2 build_style=cmake _llvmver=21 configure_args="$(vopt_bool python BUILD_PYTHON_BINDINGS)" From 291dcdf4ed7dfa0f3f8a0252fa573e5c0d84917c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:40 -0500 Subject: [PATCH 0863/1664] python3-pyasynchat: rebuild for Python 3.14 --- srcpkgs/python3-pyasynchat/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyasynchat/template b/srcpkgs/python3-pyasynchat/template index 4b59ea88b8d4a4..c670542d6146d8 100644 --- a/srcpkgs/python3-pyasynchat/template +++ b/srcpkgs/python3-pyasynchat/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyasynchat' pkgname=python3-pyasynchat version=1.0.2 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools python3-pyasyncore" depends="python3-pyasyncore" From a7061547c11222b08c00011dea39c564cd91d054 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:41 -0500 Subject: [PATCH 0864/1664] python3-Flask-WTF: rebuild for Python 3.14 --- srcpkgs/python3-Flask-WTF/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Flask-WTF/template b/srcpkgs/python3-Flask-WTF/template index 242df6f8e2268b..1719813f31d8b0 100644 --- a/srcpkgs/python3-Flask-WTF/template +++ b/srcpkgs/python3-Flask-WTF/template @@ -1,7 +1,7 @@ # Template file for 'python3-Flask-WTF' pkgname=python3-Flask-WTF version=1.2.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3-Flask python3-WTForms python3-itsdangerous" From ece737bee5a0a043d8dec97cd30a6c8c970afcc5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:41 -0500 Subject: [PATCH 0865/1664] python3-etebase: rebuild for Python 3.14 --- srcpkgs/python3-etebase/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-etebase/template b/srcpkgs/python3-etebase/template index 9e72c48f1f9248..288dcf7d2b2c26 100644 --- a/srcpkgs/python3-etebase/template +++ b/srcpkgs/python3-etebase/template @@ -1,7 +1,7 @@ # Template file for 'python3-etebase' pkgname=python3-etebase version=0.31.5 -revision=7 +revision=8 build_style=python3-module build_helper="rust" hostmakedepends="python3-setuptools-rust python3-wheel cargo pkg-config" From d62158e8f04f6039637481057197be782255ba05 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:41 -0500 Subject: [PATCH 0866/1664] python3-etesync: rebuild for Python 3.14 --- srcpkgs/python3-etesync/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-etesync/template b/srcpkgs/python3-etesync/template index 71267be32e138f..55332811871841 100644 --- a/srcpkgs/python3-etesync/template +++ b/srcpkgs/python3-etesync/template @@ -1,7 +1,7 @@ # Template file for 'python3-etesync' pkgname=python3-etesync version=0.12.1 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-appdirs python3-asn1crypto python3-cffi python3-cryptography python3-dateutil From 14587351f20dc8d6416ed1f862bd82285b72d55d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:41 -0500 Subject: [PATCH 0867/1664] radicale: rebuild for Python 3.14 --- srcpkgs/radicale/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/radicale/template b/srcpkgs/radicale/template index e6d02f44d8a06d..dd86e28b3cd03d 100644 --- a/srcpkgs/radicale/template +++ b/srcpkgs/radicale/template @@ -1,7 +1,7 @@ # Template file for 'radicale' pkgname=radicale version=3.5.7 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3-vobject python3-dateutil python3-passlib python3-bcrypt From 506d8759e093a54cb60b49e3e12f35ae0f2d5e7f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:41 -0500 Subject: [PATCH 0868/1664] python3-bitstring: rebuild for Python 3.14 --- srcpkgs/python3-bitstring/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-bitstring/template b/srcpkgs/python3-bitstring/template index 0a17c94a50c7c2..0806b8bc7a25d5 100644 --- a/srcpkgs/python3-bitstring/template +++ b/srcpkgs/python3-bitstring/template @@ -1,7 +1,7 @@ # Template file for 'python3-bitstring' pkgname=python3-bitstring version=4.1.4 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-bitarray" From 537e4287c9bdb255f8385c7c40f306eb66b55800 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:42 -0500 Subject: [PATCH 0869/1664] python3-ecdsa: rebuild for Python 3.14 --- srcpkgs/python3-ecdsa/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ecdsa/template b/srcpkgs/python3-ecdsa/template index 04b559cc2112ab..367b8e8503af6b 100644 --- a/srcpkgs/python3-ecdsa/template +++ b/srcpkgs/python3-ecdsa/template @@ -1,7 +1,7 @@ # Template file for 'python3-ecdsa' pkgname=python3-ecdsa version=0.19.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-six" From 9298083f233075cf1faf9ac120fa02c5ea35682b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:42 -0500 Subject: [PATCH 0870/1664] python3-reedsolo: rebuild for Python 3.14 --- srcpkgs/python3-reedsolo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-reedsolo/template b/srcpkgs/python3-reedsolo/template index 097c9b5ff0700d..1e499587116110 100644 --- a/srcpkgs/python3-reedsolo/template +++ b/srcpkgs/python3-reedsolo/template @@ -1,7 +1,7 @@ # Template file for 'python3-reedsolo' pkgname=python3-reedsolo version=1.5.11 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From b4240336788d8bdd112b37f6b995e644e6396852 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:42 -0500 Subject: [PATCH 0871/1664] python3-PyFxA: rebuild for Python 3.14 --- srcpkgs/python3-PyFxA/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-PyFxA/template b/srcpkgs/python3-PyFxA/template index 687b896fe7d1e8..cbee34e9008df4 100644 --- a/srcpkgs/python3-PyFxA/template +++ b/srcpkgs/python3-PyFxA/template @@ -1,7 +1,7 @@ # Template file for 'python3-PyFxA' pkgname=python3-PyFxA version=0.7.3 -revision=7 +revision=8 build_style=python3-module pycompile_module="fxa" hostmakedepends="python3-setuptools" From 56f29862710e05a530c1a748ef4d17ed97d31a9c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:42 -0500 Subject: [PATCH 0872/1664] electrum-aionostr: rebuild for Python 3.14 --- srcpkgs/electrum-aionostr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/electrum-aionostr/template b/srcpkgs/electrum-aionostr/template index 9a819e4fa3f9db..e0355c2eb12035 100644 --- a/srcpkgs/electrum-aionostr/template +++ b/srcpkgs/electrum-aionostr/template @@ -1,7 +1,7 @@ # Template file for 'electrum-aionostr' pkgname=electrum-aionostr version=0.0.11 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" makedepends="python3-devel" From a7eb8dfe4604341b31e8335f5d40230034785799 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:42 -0500 Subject: [PATCH 0873/1664] python3-jsonpatch: rebuild for Python 3.14 --- srcpkgs/python3-jsonpatch/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jsonpatch/template b/srcpkgs/python3-jsonpatch/template index a8d88ffdf9a927..4ac20eb37137e1 100644 --- a/srcpkgs/python3-jsonpatch/template +++ b/srcpkgs/python3-jsonpatch/template @@ -1,7 +1,7 @@ # Template file for 'python3-jsonpatch' pkgname=python3-jsonpatch version=1.33 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools python3-pypandoc" depends="python3-jsonpointer" From d8666366c22ea99bbbefabe24e7b1889d01e1f6e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:42 -0500 Subject: [PATCH 0874/1664] python3-jsonrpclib: rebuild for Python 3.14 --- srcpkgs/python3-jsonrpclib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jsonrpclib/template b/srcpkgs/python3-jsonrpclib/template index 9577f49c4b373a..893ea4b6e231ef 100644 --- a/srcpkgs/python3-jsonrpclib/template +++ b/srcpkgs/python3-jsonrpclib/template @@ -1,7 +1,7 @@ # Template file for 'python3-jsonrpclib' pkgname=python3-jsonrpclib version=0.4.0 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From cbd60f6bd16c2fda6f330f4348cc16dcdbced40d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:43 -0500 Subject: [PATCH 0875/1664] python3-loguru: rebuild for Python 3.14 --- srcpkgs/python3-loguru/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-loguru/template b/srcpkgs/python3-loguru/template index 6dc6fcef0007c7..0f42818a54f6c9 100644 --- a/srcpkgs/python3-loguru/template +++ b/srcpkgs/python3-loguru/template @@ -1,7 +1,7 @@ # Template file for 'python3-loguru' pkgname=python3-loguru version=0.7.3 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core python3-setuptools" depends="python3" From 2e8a7e312f2d68238d4129b0bebd9129e3dfc16e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:43 -0500 Subject: [PATCH 0876/1664] binwalk: rebuild for Python 3.14 --- srcpkgs/binwalk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template index 391fdf2dd9fee6..9ba52c5babc6f6 100644 --- a/srcpkgs/binwalk/template +++ b/srcpkgs/binwalk/template @@ -1,7 +1,7 @@ # Template file for 'binwalk' pkgname=binwalk version=2.4.3 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 tar" From 4f24fb4c4de194bfc0bbd9e971765783827804b8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:43 -0500 Subject: [PATCH 0877/1664] python3-jsondiff: rebuild for Python 3.14 --- srcpkgs/python3-jsondiff/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jsondiff/template b/srcpkgs/python3-jsondiff/template index b97ef704a4a4c8..5e7070442b8128 100644 --- a/srcpkgs/python3-jsondiff/template +++ b/srcpkgs/python3-jsondiff/template @@ -1,7 +1,7 @@ # Template file for 'python3-jsondiff' pkgname=python3-jsondiff version=2.0.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 859ba08dc0a7991db6b44e00d3923018d8b26e41 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:43 -0500 Subject: [PATCH 0878/1664] python3-libarchive-c: rebuild for Python 3.14 --- srcpkgs/python3-libarchive-c/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-libarchive-c/template b/srcpkgs/python3-libarchive-c/template index 3e083e8f5b12e4..00ed34031fb0d5 100644 --- a/srcpkgs/python3-libarchive-c/template +++ b/srcpkgs/python3-libarchive-c/template @@ -1,7 +1,7 @@ # Template file for 'python3-libarchive-c' pkgname=python3-libarchive-c version=4.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="libarchive python3" From f0df6d47988b39705552bcbba23871a0ffa08224 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:43 -0500 Subject: [PATCH 0879/1664] python3-progressbar: rebuild for Python 3.14 --- srcpkgs/python3-progressbar/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-progressbar/template b/srcpkgs/python3-progressbar/template index d6395c335b45b1..94b6c7f45e1907 100644 --- a/srcpkgs/python3-progressbar/template +++ b/srcpkgs/python3-progressbar/template @@ -1,7 +1,7 @@ # Template file for 'python3-progressbar' pkgname=python3-progressbar version=2.5 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 763c8617c7ca489371c19108879b4ec9bd55268b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:43 -0500 Subject: [PATCH 0880/1664] python3-pypdf: rebuild for Python 3.14 --- srcpkgs/python3-pypdf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pypdf/template b/srcpkgs/python3-pypdf/template index 969f2afbd7f1f5..e418c975c38cbe 100644 --- a/srcpkgs/python3-pypdf/template +++ b/srcpkgs/python3-pypdf/template @@ -1,7 +1,7 @@ # Template file for 'python3-pypdf' pkgname=python3-pypdf version=3.17.4 -revision=2 +revision=3 _sample_files_gitrev=964fb47b0fbfa89864680582640ae4eedf143890 build_wrksrc="pypdf-${version}" build_style=python3-pep517 From 681c4c2ae98571f11b527103209ec9738c901e3f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:44 -0500 Subject: [PATCH 0881/1664] tlsh: rebuild for Python 3.14 --- srcpkgs/tlsh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tlsh/template b/srcpkgs/tlsh/template index a2b7650826b678..3043ad6efb3a13 100644 --- a/srcpkgs/tlsh/template +++ b/srcpkgs/tlsh/template @@ -1,7 +1,7 @@ # Template file for 'tlsh' pkgname=tlsh version=4.8.2 -revision=2 +revision=3 build_style=cmake build_helper=python3 hostmakedepends="python3-setuptools" From 79eebcb6cf1d621cd04257d2acdf636caac7dbd4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:44 -0500 Subject: [PATCH 0882/1664] libtorrent-rasterbar: rebuild for Python 3.14 --- srcpkgs/libtorrent-rasterbar/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libtorrent-rasterbar/template b/srcpkgs/libtorrent-rasterbar/template index 6c0f9e2d983598..c6a16dd87d3094 100644 --- a/srcpkgs/libtorrent-rasterbar/template +++ b/srcpkgs/libtorrent-rasterbar/template @@ -2,7 +2,7 @@ # Breaks ABI/API without changing soname, revbump all dependants pkgname=libtorrent-rasterbar version=2.0.10 -revision=4 +revision=5 build_style=cmake configure_args="-Dbuild_examples=ON -Dbuild_tools=ON -Dpython-bindings=ON -Dbuild_tests=ON" From a1a4b59403428d45138728154448edb5329a072d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:44 -0500 Subject: [PATCH 0883/1664] python3-rencode: rebuild for Python 3.14 --- srcpkgs/python3-rencode/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-rencode/template b/srcpkgs/python3-rencode/template index db23ed44d7e81b..368c501fa01c55 100644 --- a/srcpkgs/python3-rencode/template +++ b/srcpkgs/python3-rencode/template @@ -1,7 +1,7 @@ # Template file for 'python3-rencode' pkgname=python3-rencode version=1.0.8 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-setuptools python3-Cython" makedepends="python3-devel" From 3c36735de5b1333ce22ec2ac4a9fd7e55f431068 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:44 -0500 Subject: [PATCH 0884/1664] glade3: rebuild for Python 3.14 --- srcpkgs/glade3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/glade3/template b/srcpkgs/glade3/template index 65106907a60669..aed43a230d409e 100644 --- a/srcpkgs/glade3/template +++ b/srcpkgs/glade3/template @@ -1,7 +1,7 @@ # Template file for 'glade3' pkgname=glade3 version=3.40.0 -revision=2 +revision=3 build_style=meson build_helper="gir qemu" configure_args="-Dgtk_doc=true -Dman=true -Dintrospection=true From 5c5b4d4cd8c94d4f388b748195e7b056f405113b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:44 -0500 Subject: [PATCH 0885/1664] python3-apsw: update to 3.51.0.0. --- srcpkgs/python3-apsw/template | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/srcpkgs/python3-apsw/template b/srcpkgs/python3-apsw/template index 3058146dfb0779..586fdf18d15ba6 100644 --- a/srcpkgs/python3-apsw/template +++ b/srcpkgs/python3-apsw/template @@ -1,26 +1,20 @@ # Template file for 'python3-apsw' pkgname=python3-apsw -version=3.39.3.0 -revision=4 -build_style=python3-module -make_build_args="--enable=load_extension" -hostmakedepends="python3-devel python3-setuptools" +version=3.51.0.0 +revision=1 +build_style=python3-pep517 +hostmakedepends="python3-setuptools" makedepends="python3-devel sqlite-devel" depends="python3" -checkdepends="python3-pytest $makedepends" short_desc="Another Python SQLite Wrapper (Python3)" maintainer="Orphaned " license="Zlib" homepage="https://github.com/rogerbinns/apsw" changelog="https://raw.githubusercontent.com/rogerbinns/apsw/master/doc/changes.rst" -distfiles="${homepage}/archive/${version/r/-r}.tar.gz" -checksum=d77db87e95db944b3e21cc73a3d359327e5dd1a7f9146f290379b2356ec42f9b +distfiles="${PYPI_SITE}/a/apsw/apsw-${version}.tar.gz" +checksum=a578d0ab75fd888991181e2d33be93374c7be9b0cd84de0fe53f254ba8c67e5d make_check=no # no test shipped -pre_check() { - $CC $CFLAGS -fPIC -shared -o ./testextension.sqlext src/testextension.c -} - post_install() { vlicense LICENSE } From 55f90f435c079ec064d649da327cb959b7b90255 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:44 -0500 Subject: [PATCH 0886/1664] rrdtool: rebuild for Python 3.14 --- srcpkgs/rrdtool/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/rrdtool/template b/srcpkgs/rrdtool/template index 2281ab25fa8bcd..7103f735377f89 100644 --- a/srcpkgs/rrdtool/template +++ b/srcpkgs/rrdtool/template @@ -1,7 +1,7 @@ # Template file for 'rrdtool' pkgname=rrdtool version=1.8.0 -revision=7 +revision=8 build_style=gnu-configure configure_args="--enable-perl --enable-perl-site-install --with-perl-options=INSTALLDIRS=vendor --enable-ruby From b93d18f740e2ed3c1a37d2cff0e861423b787ba5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:45 -0500 Subject: [PATCH 0887/1664] python3-pygls: rebuild for Python 3.14 --- srcpkgs/python3-pygls/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pygls/template b/srcpkgs/python3-pygls/template index dd26343bf58c2e..26582ab5635805 100644 --- a/srcpkgs/python3-pygls/template +++ b/srcpkgs/python3-pygls/template @@ -1,7 +1,7 @@ # Template file for 'python3-pygls' pkgname=python3-pygls version=1.3.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel python3-poetry-core" depends="python3-cattrs python3-lsprotocol" From 776b8a3569cf5aed310cf02acc7fb5c23d60ff2b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:45 -0500 Subject: [PATCH 0888/1664] caribou: rebuild for Python 3.14 --- srcpkgs/caribou/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/caribou/template b/srcpkgs/caribou/template index 67f0b9abe7bbdf..609f460f8d5a87 100644 --- a/srcpkgs/caribou/template +++ b/srcpkgs/caribou/template @@ -1,7 +1,7 @@ # Template file for 'caribou' pkgname=caribou version=0.4.21 -revision=10 +revision=11 build_style=gnu-configure build_helper="gir" configure_args="--disable-schemas-compile --disable-static --disable-gtk2-module From c9fadfb211505364eab2bfdea19c595e2d9effc4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:45 -0500 Subject: [PATCH 0889/1664] cinnamon-screensaver: rebuild for Python 3.14 --- srcpkgs/cinnamon-screensaver/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cinnamon-screensaver/template b/srcpkgs/cinnamon-screensaver/template index 40a01c6eb85b98..f428be790befee 100644 --- a/srcpkgs/cinnamon-screensaver/template +++ b/srcpkgs/cinnamon-screensaver/template @@ -1,7 +1,7 @@ # Template file for 'cinnamon-screensaver' pkgname=cinnamon-screensaver version=6.4.1 -revision=2 +revision=3 build_style=meson build_helper="gir" hostmakedepends="gettext glib-devel pkg-config python3-devel" From d3e59206619567c69752e937e7fe5dc424f15fe3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:45 -0500 Subject: [PATCH 0890/1664] python3-libsass: rebuild for Python 3.14 --- srcpkgs/python3-libsass/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-libsass/template b/srcpkgs/python3-libsass/template index 17842be1c2cc90..317f94521440ba 100644 --- a/srcpkgs/python3-libsass/template +++ b/srcpkgs/python3-libsass/template @@ -1,7 +1,7 @@ # Template file for 'python3-libsass' pkgname=python3-libsass version=0.23.0 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-wheel" makedepends="python3-devel libsass-devel" From efd78423b5dc5a8959d8cd0572292a8f9e31a6fc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:45 -0500 Subject: [PATCH 0891/1664] python3-pam: rebuild for Python 3.14 --- srcpkgs/python3-pam/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pam/template b/srcpkgs/python3-pam/template index d9c9fcf9c394b8..be843388d73b21 100644 --- a/srcpkgs/python3-pam/template +++ b/srcpkgs/python3-pam/template @@ -1,7 +1,7 @@ # Template file for 'python3-pam' pkgname=python3-pam version=1.8.4 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 pam" From bdf469e0de0a3ff188ed5002a0fb5bbc1abbd9af Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:45 -0500 Subject: [PATCH 0892/1664] python3-suds: rebuild for Python 3.14 --- srcpkgs/python3-suds/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-suds/template b/srcpkgs/python3-suds/template index dc85a233afa5d3..cb6a14900c9d11 100644 --- a/srcpkgs/python3-suds/template +++ b/srcpkgs/python3-suds/template @@ -1,7 +1,7 @@ # Template file for 'python3-suds' pkgname=python3-suds version=1.2.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 9897e7fdc68c5df151418fbd06589dd1bb06e80e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:46 -0500 Subject: [PATCH 0893/1664] python3-yattag: rebuild for Python 3.14 --- srcpkgs/python3-yattag/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-yattag/template b/srcpkgs/python3-yattag/template index 76835301172cc6..971435569b402e 100644 --- a/srcpkgs/python3-yattag/template +++ b/srcpkgs/python3-yattag/template @@ -1,7 +1,7 @@ # Template file for 'python3-yattag' pkgname=python3-yattag version=1.16.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From ffdcf046b36a86f5a5ead02f765a145990d89a20 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:46 -0500 Subject: [PATCH 0894/1664] certbot: rebuild for Python 3.14 --- srcpkgs/certbot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/certbot/template b/srcpkgs/certbot/template index dc988feee51958..9617f82fd1fc7c 100644 --- a/srcpkgs/certbot/template +++ b/srcpkgs/certbot/template @@ -1,7 +1,7 @@ # Template file for 'certbot' pkgname=certbot version=5.1.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-setuptools python3-wheel" depends="python3-acme python3-ConfigArgParse python3-configobj python3-openssl From 6edf732556260417e15953688799f39ac957e851 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:46 -0500 Subject: [PATCH 0895/1664] python3-augeas: rebuild for Python 3.14 --- srcpkgs/python3-augeas/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-augeas/template b/srcpkgs/python3-augeas/template index c5ee2390b304ef..e6a8f5cfac3df6 100644 --- a/srcpkgs/python3-augeas/template +++ b/srcpkgs/python3-augeas/template @@ -1,7 +1,7 @@ # Template file for 'python3-augeas' pkgname=python3-augeas version=1.1.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools augeas-devel python3-cffi" makedepends="python3-devel" From 39cfded07372d5bc11e05f1e7731f0bd80ff57e4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:46 -0500 Subject: [PATCH 0896/1664] compizconfig-python: rebuild for Python 3.14 --- srcpkgs/compizconfig-python/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/compizconfig-python/template b/srcpkgs/compizconfig-python/template index 32f9ec703770f1..53e9458981a283 100644 --- a/srcpkgs/compizconfig-python/template +++ b/srcpkgs/compizconfig-python/template @@ -1,7 +1,7 @@ # Template file for 'compizconfig-python' pkgname=compizconfig-python version=0.8.18 -revision=8 +revision=9 build_style=gnu-configure configure_args="--disable-static" hostmakedepends="automake libtool pkg-config glib-devel gettext-devel From b7d1bd5a105f4b1559c33062a00af93246b251b5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:46 -0500 Subject: [PATCH 0897/1664] python3-grequests: rebuild for Python 3.14 --- srcpkgs/python3-grequests/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-grequests/template b/srcpkgs/python3-grequests/template index c8c54b4f464dac..86579b34a9b4b4 100644 --- a/srcpkgs/python3-grequests/template +++ b/srcpkgs/python3-grequests/template @@ -1,7 +1,7 @@ # Template file for 'python3-grequests' pkgname=python3-grequests version=0.6.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-gevent python3-requests" From c5bcb4db6404b75946cc35c88cf590294c328185 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:46 -0500 Subject: [PATCH 0898/1664] canto-next: rebuild for Python 3.14 --- srcpkgs/canto-next/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/canto-next/template b/srcpkgs/canto-next/template index f61782a89824fa..56eac38d9d1abb 100644 --- a/srcpkgs/canto-next/template +++ b/srcpkgs/canto-next/template @@ -1,7 +1,7 @@ # Template file for 'canto-next' pkgname=canto-next version=0.9.8 -revision=4 +revision=5 build_style=python3-module pycompile_dirs="/usr/lib/canto/plugins" hostmakedepends="python3-setuptools" From cf143522575d17aa8c1144bf8ffb035d4451a9f9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:47 -0500 Subject: [PATCH 0899/1664] python3-cchardet: rebuild for Python 3.14 --- srcpkgs/python3-cchardet/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cchardet/template b/srcpkgs/python3-cchardet/template index 09fd2d559cb2f4..3752ebd7e0c291 100644 --- a/srcpkgs/python3-cchardet/template +++ b/srcpkgs/python3-cchardet/template @@ -1,7 +1,7 @@ # Template file for 'python3-cchardet' pkgname=python3-cchardet version=2.1.7 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" makedepends="python3-devel" From 7ddb48de47cfd3a9d7462c438dc943d488bf9afe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:47 -0500 Subject: [PATCH 0900/1664] python3-html5-parser: update to 0.4.12. --- srcpkgs/python3-html5-parser/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-html5-parser/template b/srcpkgs/python3-html5-parser/template index ca990d67e4f9f9..12165627a374b3 100644 --- a/srcpkgs/python3-html5-parser/template +++ b/srcpkgs/python3-html5-parser/template @@ -1,7 +1,7 @@ # Template file for 'python3-html5-parser' pkgname=python3-html5-parser -version=0.4.10 -revision=4 +version=0.4.12 +revision=1 build_style=python3-module hostmakedepends="python3-setuptools pkg-config" makedepends="python3-devel libxml2-devel" @@ -12,4 +12,4 @@ maintainer="Orphaned " license="Apache-2.0" homepage="https://html5-parser.readthedocs.io/" distfiles="${PYPI_SITE}/h/html5-parser/html5-parser-${version}.tar.gz" -checksum=f9294418c0da95c2d5facc19d3dc32941093a6b8e3b3e4b36cc7b5a1697fbca4 +checksum=3d7f89841aa48b976311f43863178c34c141abcf1dd45b67a7339e61cffe5306 From 4fa8c6a46fe452217b8ae1c087ffbd38a30b9eb9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:47 -0500 Subject: [PATCH 0901/1664] python3-mechanize: rebuild for Python 3.14 --- srcpkgs/python3-mechanize/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mechanize/template b/srcpkgs/python3-mechanize/template index 31cc6090972eb8..8bad032121d89e 100644 --- a/srcpkgs/python3-mechanize/template +++ b/srcpkgs/python3-mechanize/template @@ -1,7 +1,7 @@ # Template file for 'python3-mechanize' pkgname=python3-mechanize version=0.4.7 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 python3-html5lib" From 6a61197da558f75c91399c33b4877f4bae13c95a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:47 -0500 Subject: [PATCH 0902/1664] python3-py7zr: rebuild for Python 3.14 --- srcpkgs/python3-py7zr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-py7zr/template b/srcpkgs/python3-py7zr/template index a5828c728c6b22..0628bc72de1f0f 100644 --- a/srcpkgs/python3-py7zr/template +++ b/srcpkgs/python3-py7zr/template @@ -1,7 +1,7 @@ # Template file for 'python3-py7zr' pkgname=python3-py7zr version=1.0.0 -revision=1 +revision=2 build_style=python3-pep517 # - test_concurrent.py fails on timeout. This test downloads several different # 7z archives; likely failing due to slow download or dead links - From 9ff0c66586856d16b879adf4d9f1f3875f0fa4ff Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:47 -0500 Subject: [PATCH 0903/1664] python3-pychm: rebuild for Python 3.14 --- srcpkgs/python3-pychm/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pychm/template b/srcpkgs/python3-pychm/template index a4b7dc730f8b86..8bf022ae456818 100644 --- a/srcpkgs/python3-pychm/template +++ b/srcpkgs/python3-pychm/template @@ -1,7 +1,7 @@ # Template file for 'python3-pychm' pkgname=python3-pychm version=0.8.6 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3 python3-setuptools" makedepends="libchmlib-devel python3-devel" From 5e9b06e7522ad584ad7ca88670cdbdf9b5d2d5a9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:47 -0500 Subject: [PATCH 0904/1664] python3-pykakasi: rebuild for Python 3.14 --- srcpkgs/python3-pykakasi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pykakasi/template b/srcpkgs/python3-pykakasi/template index 77f348ddb56478..ea4b28094c1bc9 100644 --- a/srcpkgs/python3-pykakasi/template +++ b/srcpkgs/python3-pykakasi/template @@ -1,7 +1,7 @@ # Template file for 'python3-pykakasi' pkgname=python3-pykakasi version=2.3.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3-jaconv python3-deprecated" From 68f1759d5aa3eb5f771ded02a534be3b081980ff Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:48 -0500 Subject: [PATCH 0905/1664] python3-xxhash: rebuild for Python 3.14 --- srcpkgs/python3-xxhash/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-xxhash/template b/srcpkgs/python3-xxhash/template index 3bc63691f24d92..081805bc500124 100644 --- a/srcpkgs/python3-xxhash/template +++ b/srcpkgs/python3-xxhash/template @@ -1,7 +1,7 @@ # Template file for 'python3-xxhash' pkgname=python3-xxhash version=3.5.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools_scm" makedepends="python3-devel xxHash-devel" From ed06e327024972c481f830d55f32d88b0e50490a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:48 -0500 Subject: [PATCH 0906/1664] zeitgeist: rebuild for Python 3.14 --- srcpkgs/zeitgeist/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/zeitgeist/template b/srcpkgs/zeitgeist/template index f4ae3986f1255f..99060a20981cbb 100644 --- a/srcpkgs/zeitgeist/template +++ b/srcpkgs/zeitgeist/template @@ -1,7 +1,7 @@ # Template file for 'zeitgeist' pkgname=zeitgeist version=1.0.4 -revision=2 +revision=3 build_style=gnu-configure build_helper="gir" configure_args="--enable-fts --enable-datahub $(vopt_enable gir introspection)" From dbb2f9d55d28f9f7d30ba18c2feb0a27d2abad66 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:48 -0500 Subject: [PATCH 0907/1664] python3-ewmh: rebuild for Python 3.14 --- srcpkgs/python3-ewmh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ewmh/template b/srcpkgs/python3-ewmh/template index 6853e70ba6fc3e..e8fa4e93090f9c 100644 --- a/srcpkgs/python3-ewmh/template +++ b/srcpkgs/python3-ewmh/template @@ -1,7 +1,7 @@ # Template file for 'python3-ewmh' pkgname=python3-ewmh version=0.1.6 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-xlib" From 284db305c268fee568c9cb2c9b57281e4abdd2ac Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:48 -0500 Subject: [PATCH 0908/1664] python3-fuse: update to 1.0.9. --- srcpkgs/python3-fuse/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-fuse/template b/srcpkgs/python3-fuse/template index f3c727f9321b6d..bb0ad94e2a46bb 100644 --- a/srcpkgs/python3-fuse/template +++ b/srcpkgs/python3-fuse/template @@ -1,7 +1,7 @@ # Template file for 'python3-fuse' pkgname=python3-fuse -version=1.0.0 -revision=6 +version=1.0.9 +revision=1 build_style=python3-module hostmakedepends="pkg-config python3-setuptools" makedepends="fuse-devel python3-devel" @@ -11,4 +11,4 @@ maintainer="Orphaned " license="LGPL-2.1-or-later" homepage="https://github.com/libfuse/python-fuse" distfiles="https://github.com/libfuse/python-fuse/archive/v${version}.tar.gz" -checksum=caa90dd931128407df12b2c090200e49a67b9afb4176211aad03e2a19209a506 +checksum=d6a0add7b06870091050fda52b7893d76ed3dd38cfbc5a351842e1940a1d8b33 From e02fe2718fd062b6171eac1f4355c2e811c90b28 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:48 -0500 Subject: [PATCH 0909/1664] borg: rebuild for Python 3.14 --- srcpkgs/borg/patches/serial-cythonize.patch | 14 ++++++++++++++ srcpkgs/borg/template | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/borg/patches/serial-cythonize.patch diff --git a/srcpkgs/borg/patches/serial-cythonize.patch b/srcpkgs/borg/patches/serial-cythonize.patch new file mode 100644 index 00000000000000..7f4129c33535c0 --- /dev/null +++ b/srcpkgs/borg/patches/serial-cythonize.patch @@ -0,0 +1,14 @@ +Parallel cythonization throws a RuntimeError with this package. + +--- a/setup.py ++++ b/setup.py +@@ -209,9 +209,6 @@ + # 3str is the default in Cython3 and we do not support older Cython releases. + # we only set this to avoid the related FutureWarning from Cython3. + cython_opts = dict(compiler_directives={"language_level": "3str"}) +- if not is_win32: +- # compile .pyx extensions to .c in parallel, does not work on windows +- cython_opts["nthreads"] = cpu_threads + + # generate C code from Cython for ALL supported platforms, so we have them in the sdist. + # the sdist does not require Cython at install time, so we need all as C. diff --git a/srcpkgs/borg/template b/srcpkgs/borg/template index a14a5c6fafc0f3..8a3c8a6fcf57c4 100644 --- a/srcpkgs/borg/template +++ b/srcpkgs/borg/template @@ -1,7 +1,7 @@ # Template file for 'borg' pkgname=borg version=1.4.2 -revision=1 +revision=2 build_style=python3-module make_check_args="-k not((benchmark)or(readonly))" make_check_target="build/lib.*/borg/testsuite" From b84bc4c04bbd9f5f32d510c48b8617eae4e2f1ac Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:48 -0500 Subject: [PATCH 0910/1664] python3-confuse: rebuild for Python 3.14 --- srcpkgs/python3-confuse/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-confuse/template b/srcpkgs/python3-confuse/template index 8da5da4bcc3baf..38cca809ef8448 100644 --- a/srcpkgs/python3-confuse/template +++ b/srcpkgs/python3-confuse/template @@ -1,7 +1,7 @@ # Template file for 'python3-confuse' pkgname=python3-confuse version=2.0.0 -revision=4 +revision=5 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3-yaml" From e705df2db81dcda750bdad1358d1a18a3b821199 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:49 -0500 Subject: [PATCH 0911/1664] python3-jellyfish: update to 1.2.1. --- srcpkgs/python3-jellyfish/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-jellyfish/template b/srcpkgs/python3-jellyfish/template index 9a960f57c6affa..459a51620a2acf 100644 --- a/srcpkgs/python3-jellyfish/template +++ b/srcpkgs/python3-jellyfish/template @@ -1,7 +1,7 @@ # Template file for 'python3-jellyfish' pkgname=python3-jellyfish -version=1.1.2 -revision=3 +version=1.2.1 +revision=1 build_style=python3-pep517 build_helper="rust" hostmakedepends="maturin cargo" @@ -14,7 +14,7 @@ license="BSD-2-Clause" homepage="https://jamesturk.github.io/jellyfish/" changelog="https://raw.githubusercontent.com/jamesturk/jellyfish/main/docs/changelog.md" distfiles="${PYPI_SITE}/j/jellyfish/jellyfish-${version}.tar.gz" -checksum=a31de6ce7385746df3b65aa3401c30d0881b5abb518cff99090be7ef96129333 +checksum=72d2fda61b23babe862018729be73c8b0dc12e3e6601f36f6e65d905e249f4db if [ "$CROSS_BUILD" ]; then makedepends+=" rust-std" From c6b6fa4a8bb909575c7572d129e905d3613e8652 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:49 -0500 Subject: [PATCH 0912/1664] python3-lap: rebuild for Python 3.14 --- srcpkgs/python3-lap/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-lap/template b/srcpkgs/python3-lap/template index 7b3d3b1de85e46..1b5bf6ccd1bf57 100644 --- a/srcpkgs/python3-lap/template +++ b/srcpkgs/python3-lap/template @@ -1,7 +1,7 @@ # Template file for 'python3-lap' pkgname=python3-lap version=0.5.12 -revision=1 +revision=2 build_style=python3-pep517 make_check_target=".xbps-testdir/*/${py3_sitelib}/lap/tests" hostmakedepends="python3-setuptools python3-Cython python3-numpy" From 9050faa762798dae53c60bde315d8412f17ed9f6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:49 -0500 Subject: [PATCH 0913/1664] python3-mediafile: rebuild for Python 3.14 --- srcpkgs/python3-mediafile/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mediafile/template b/srcpkgs/python3-mediafile/template index 1a212f71ce3b3d..c2602067b3a165 100644 --- a/srcpkgs/python3-mediafile/template +++ b/srcpkgs/python3-mediafile/template @@ -1,7 +1,7 @@ # Template file for 'python3-mediafile' pkgname=python3-mediafile version=0.13.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3-mutagen python3-six python3-filetype" From bbdaa352ab4c22dcb62ad917e26e1a731b098222 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:49 -0500 Subject: [PATCH 0914/1664] llvm19: rebuild for Python 3.14, drop libcxx and libunwind options --- srcpkgs/llvm19/template | 150 ++-------------------------------------- 1 file changed, 7 insertions(+), 143 deletions(-) diff --git a/srcpkgs/llvm19/template b/srcpkgs/llvm19/template index 925c8195c7ce40..e422b5ae3716d0 100644 --- a/srcpkgs/llvm19/template +++ b/srcpkgs/llvm19/template @@ -1,7 +1,7 @@ # Template file for 'llvm19' pkgname=llvm19 version=19.1.4 -revision=7 +revision=8 build_wrksrc=llvm build_style=cmake _llvm_prefix=lib/llvm/19 @@ -11,7 +11,6 @@ _llvm_datadir=usr/${_llvm_prefix}/share _llvm_incdir=usr/${_llvm_prefix}/include _llvm_libdir=usr/${_llvm_prefix}/lib _llvm_libexecdir=usr/${_llvm_prefix}/libexec -_ext_suffix=".cpython-${py3_ver/./}-linux-${XBPS_TARGET_LIBC/glibc/gnu}.so" configure_args=" -DCMAKE_BUILD_TYPE=Release -Wno-dev -DCMAKE_INSTALL_PREFIX=/usr/${_llvm_prefix} @@ -39,9 +38,7 @@ configure_args=" -DLLVM_ENABLE_RTTI=YES -DLLVM_ENABLE_FFI=YES -DLLVM_BINUTILS_INCDIR=/usr/include - -DLLDB_PYTHON_RELATIVE_PATH=lib/python${py3_ver}/site-packages - -DLLDB_PYTHON_EXE_RELATIVE_PATH=bin/python${py3_ver} - -DLLDB_PYTHON_EXT_SUFFIX=$_ext_suffix + -DLLDB_ENABLE_PYTHON=NO -DLLVM_ENABLE_PER_TARGET_RUNTIME_DIR=NO -DLLVM_SPIRV=/usr/bin/llvm-spirv " @@ -49,7 +46,7 @@ hostmakedepends="perl python3 zlib-devel libffi-devel swig python3-Sphinx python3-sphinx-automodapi python3-sphinx-markdown-tables python3-yaml pkg-config python3-mdit-py-plugins python3-MyST-Parser python3-markdown-it patchelf $(vopt_if graphviz graphviz)" -makedepends="python3-devel zlib-devel elfutils-devel libffi-devel libedit-devel +makedepends="zlib-devel elfutils-devel libffi-devel libedit-devel libxml2-devel binutils-devel z3-devel" short_desc="LLVM Compiler Infrastructure Project - Version 19" maintainer="Daniel Martinez " @@ -62,9 +59,8 @@ lib32disabled=yes python_version=3 build_options="clang clang_tools_extra lld mlir libclc polly lldb flang bolt - openmp libc libcxx libunwind offload lto graphviz full_debug" -build_options_default="clang clang_tools_extra lld libclc polly lldb - libcxx libunwind mlir" + openmp libc offload lto graphviz full_debug" +build_options_default="clang clang_tools_extra lld libclc polly lldb mlir" # fails to build with libquadmth on musl case "$XBPS_TARGET_MACHINE" in @@ -128,8 +124,6 @@ subpackages=" $( vopt_if mlir 'mlir19 mlir19-devel' ) $( vopt_if flang 'flang19 flang19-devel' ) $( vopt_if openmp 'libomp19 libomp19-devel' ) - $( vopt_if libunwind 'llvm-libunwind llvm-libunwind-devel' ) - $( vopt_if libcxx 'libcxx libcxxabi libcxxabi-devel libcxx-devel' ) " _enabled_projects="$(vopt_if clang 'clang;')\ @@ -142,12 +136,8 @@ $(vopt_if libclc 'libclc;')\ $(vopt_if mlir 'mlir;')\ $(vopt_if flang 'flang;')" -_enabled_runtimes="compiler-rt\ -$(vopt_if openmp ';openmp')\ -$(vopt_if offload ';offload')\ -$(vopt_if libc ';libc')\ -$(vopt_if libunwind ';libunwind')\ -$(vopt_if libcxx ';libcxxabi;libcxx')" +_enabled_runtimes="compiler-rt;libunwind;libcxxabi;libcxx\ +$(vopt_if openmp ';openmp')$(vopt_if offload ';offload')$(vopt_if libc ';libc')" configure_args+=" -DLLVM_ENABLE_RUNTIMES=${_enabled_runtimes}" configure_args+=" -DLLVM_ENABLE_PROJECTS=${_enabled_projects}" @@ -284,50 +274,6 @@ pre_build() { _setup_debug } -post_build() { - - if [ "$CROSS_BUILD" ]; then - CC="clang" - CXX="clang++" - - CFLAGS+=" --target=${XBPS_CROSS_TRIPLET} --sysroot=${XBPS_CROSS_BASE} " - CFLAGS+=" --gcc-toolchain=/usr" - CFLAGS+=" -L/${_llvm_libdir}/${XBPS_CROSS_TRIPLET} " - - CXXFLAGS+=" --target=${XBPS_CROSS_TRIPLET} --sysroot=${XBPS_CROSS_BASE} " - CXXFLAGS+=" --gcc-toolchain=/usr" - CXXFLAGS+=" -L/${_llvm_libdir}/${XBPS_CROSS_TRIPLET} " - else - export CC=${wrksrc}/llvm/build/bin/clang - export CXX=${wrksrc}/llvm/build/bin/clang++ - fi - - mkdir -p ${wrksrc}/${build_wrksrc}/builddir_runtimes - cmake -G Ninja ${wrksrc}/runtimes -B ${wrksrc}/${build_wrksrc}/builddir_runtimes \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_ASM_COMPILER_TARGET=${_triplet} \ - -DCMAKE_C_COMPILER=$CC \ - -DCMAKE_C_COMPILER_TARGET=${_triplet} \ - -DCMAKE_CXX_COMPILER=$CXX \ - -DCMAKE_CXX_COMPILER_TARGET=${_triplet} \ - -DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi;libunwind" \ - -DLIBCXXABI_ENABLE_STATIC_UNWINDER=YES \ - -DLIBCXXABI_USE_COMPILER_RT=YES \ - -DLIBCXXABI_USE_LLVM_UNWINDER=YES \ - -DLIBCXX_CXX_ABI=libcxxabi \ - -DLIBCXX_ENABLE_STATIC_ABI_LIBRARY=YES \ - -DLIBCXX_USE_COMPILER_RT=YES \ - -DLLVM_ENABLE_SPHINX=ON \ - -DLLVM_TARGET_ARCH=${_arch} \ - -DLLVM_HOST_TRIPLE=${_triplet} \ - -DLLVM_DEFAULT_TARGET_TRIPLE=${_triplet} \ - -DLIBCXX_HAS_MUSL_LIBC=${_is_musl} \ - -DSPHINX_WARNINGS_AS_ERRORS=OFF - - ninja ${makejobs} -C ${wrksrc}/${build_wrksrc}/builddir_runtimes - ninja ${makejobs} -C ${wrksrc}/${build_wrksrc}/builddir_runtimes docs-libcxx-html docs-libunwind-html -} - post_install() { # Required for multilib. @@ -346,29 +292,6 @@ post_install() { rm -rf ${DESTDIR}/usr/share/gdb - if [ "$build_option_libcxx" ]; then - - cmake -DCMAKE_INSTALL_PREFIX=${DESTDIR}/usr \ - -P ${wrksrc}/${build_wrksrc}/builddir_runtimes/libcxx/docs/cmake_install.cmake - - LIBCXX_DOCS=${_llvm_datadir}/doc/LLVM/libcxx - vmkdir ${LIBCXX_DOCS} - vcopy ${wrksrc}/${build_wrksrc}/builddir_runtimes/libcxx/docs/html ${LIBCXX_DOCS} - fi - - if [ "$build_option_libunwind" ]; then - - cmake -DCMAKE_INSTALL_PREFIX=${DESTDIR}/usr \ - -P ${wrksrc}/${build_wrksrc}/builddir_runtimes/libunwind/docs/cmake_install.cmake - - LIBUNWIND_DOCS=${_llvm_datadir}/doc/LLVM/libunwind - vmkdir ${LIBUNWIND_DOCS} - vcopy ${wrksrc}/${build_wrksrc}/builddir_runtimes/libunwind/docs/html ${LIBUNWIND_DOCS} - fi - - cmake -DCMAKE_INSTALL_PREFIX=${DESTDIR}/usr \ - -P ${wrksrc}/${build_wrksrc}/builddir_runtimes/cmake_install.cmake - # Can this be disabled some other way? rm -f ${DESTDIR}/usr/lib64 @@ -736,7 +659,6 @@ llvm-bolt19_package() { lldb19_package() { lib32disabled=yes - depends+=" python3-six" conflicts="lldb18>=0 lldb17>=0 lldb15>=0" short_desc+=" - LLDB debugger" homepage="https://lldb.llvm.org/" @@ -746,7 +668,6 @@ lldb19_package() { bin/lldb-instr bin/lldb-server bin/lldb-dap - lib/python${py3_ver}/site-packages/lldb ) if [ -z "$CROSS_BUILD" ]; then _lldb19_files+=("lib/lua/5.3/lldb.so") @@ -958,63 +879,6 @@ libomp19-devel_package() { } } -llvm-libunwind_package() { - short_desc+=" - libunwind" - pkg_install() { - vmove "usr/lib/libunwind.so.*" - } -} - -llvm-libunwind-devel_package() { - short_desc+=" - libunwind - development files" - depends="llvm-libunwind>=${version}_${revision}" - conflicts="libunwind-devel>=0" - pkg_install() { - vmove usr/include/mach-o - vmove "usr/include/*unwind*" - vmove "usr/lib/libunwind.a" - vmove "usr/lib/libunwind.so" - } -} - -libcxxabi_package() { - short_desc+=" - low level support for libc++" - pkg_install() { - vmove "usr/lib/libc++abi.so.*" - } -} - -libcxxabi-devel_package() { - short_desc+=" - low level support for libc++ - development files" - depends="libcxxabi>=${version}_${revision}" - pkg_install() { - vmove usr/include/c++/v1/cxxabi.h - vmove usr/include/c++/v1/__cxxabi_config.h - vmove usr/lib/libc++abi.so - vmove usr/lib/libc++abi.a - } -} - -libcxx_package() { - short_desc+=" - C++ standard library" - pkg_install() { - vmove "usr/lib/libc++.so.*" - } -} - -libcxx-devel_package() { - short_desc+=" - C++ standard library - development files" - depends="libcxx>=${version}_${revision}" - pkg_install() { - vmove usr/lib/libc++.modules.json - vmove usr/include/c++ - vmove usr/share/libc++ - vmove "usr/lib/libc++.so" - vmove "usr/lib/libc++.a" - vmove "usr/lib/libc++experimental.a" - } -} - compiler-rt19_package() { short_desc+=" - runtime libraries" depends="clang19-headers>=${version}_${revision}" From d9e1537f3c3d9e70f91763d17c98eff61f7aa9a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:49 -0500 Subject: [PATCH 0915/1664] python3-b2sdk: rebuild for Python 3.14 --- srcpkgs/python3-b2sdk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-b2sdk/template b/srcpkgs/python3-b2sdk/template index f94c3646e52317..33494536e131a3 100644 --- a/srcpkgs/python3-b2sdk/template +++ b/srcpkgs/python3-b2sdk/template @@ -1,7 +1,7 @@ # Template file for 'python3-b2sdk' pkgname=python3-b2sdk version=2.10.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3 python3-build python3-packaging python3-pdm-backend python3-setuptools python3-setuptools_scm python3-wheel" depends="python3-annotated-types python3-logfury python3-Arrow python3-requests python3-tqdm" From b51303d479b6042d7f36a3ca6795e4f742cb0ea4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:50 -0500 Subject: [PATCH 0916/1664] python3-phx-class-registry: rebuild for Python 3.14 --- srcpkgs/python3-phx-class-registry/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-phx-class-registry/template b/srcpkgs/python3-phx-class-registry/template index c8e770327ae9fe..3d5de835802761 100644 --- a/srcpkgs/python3-phx-class-registry/template +++ b/srcpkgs/python3-phx-class-registry/template @@ -1,7 +1,7 @@ # Template file for 'python3-phx-class-registry' pkgname=python3-phx-class-registry version=4.0.5 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3" From 503e0bdef8ac59ee6f93067f986e7e71fe2f3b7c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:50 -0500 Subject: [PATCH 0917/1664] python3-rst2ansi: rebuild for Python 3.14 --- srcpkgs/python3-rst2ansi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-rst2ansi/template b/srcpkgs/python3-rst2ansi/template index f13a577ae4dace..984454bc4afdf1 100644 --- a/srcpkgs/python3-rst2ansi/template +++ b/srcpkgs/python3-rst2ansi/template @@ -1,7 +1,7 @@ # Template file for 'python3-rst2ansi' pkgname=python3-rst2ansi version=0.1.5 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-docutils" From 132ae6ce03cd34479e6ade495f05159778164624 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:50 -0500 Subject: [PATCH 0918/1664] python3-shxparser: rebuild for Python 3.14 --- srcpkgs/python3-shxparser/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-shxparser/template b/srcpkgs/python3-shxparser/template index 4f5172391c4f6c..923f9b0c9ee062 100644 --- a/srcpkgs/python3-shxparser/template +++ b/srcpkgs/python3-shxparser/template @@ -1,7 +1,7 @@ # Template file for 'python3-shxparser' pkgname=python3-shxparser version=0.0.2 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" checkdepends="python3-pytest python3-svgelements" From ab2e2db15d2ff9bf49cfc98f0adf0a7f939e29ec Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:50 -0500 Subject: [PATCH 0919/1664] python3-svgelements: rebuild for Python 3.14 --- srcpkgs/python3-svgelements/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-svgelements/template b/srcpkgs/python3-svgelements/template index 5664208f6c984e..e41f6efc63f48d 100644 --- a/srcpkgs/python3-svgelements/template +++ b/srcpkgs/python3-svgelements/template @@ -1,7 +1,7 @@ # Template file for 'python3-svgelements' pkgname=python3-svgelements version=1.9.6 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" checkdepends="python3-pytest python3-numpy python3-scipy python3-Pillow" From ea4e8599e251d5958b90d5e423ff98f66c06b6d1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:50 -0500 Subject: [PATCH 0920/1664] python3-boto3: rebuild for Python 3.14 --- srcpkgs/python3-boto3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-boto3/template b/srcpkgs/python3-boto3/template index 5c059215a7fd1a..b333d72e31bff0 100644 --- a/srcpkgs/python3-boto3/template +++ b/srcpkgs/python3-boto3/template @@ -1,7 +1,7 @@ # Template file for 'python3-boto3' pkgname=python3-boto3 version=1.35.92 -revision=1 +revision=2 build_style=python3-module make_check_args="--ignore=tests/integration" # These tests require aws credentials hostmakedepends="python3-setuptools" From 08c96478bdbe3a669069fccf867564b86f7be6bf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:50 -0500 Subject: [PATCH 0921/1664] python3-i3ipc: rebuild for Python 3.14 --- srcpkgs/python3-i3ipc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-i3ipc/template b/srcpkgs/python3-i3ipc/template index 18d465d595d26d..098e6fe37d1062 100644 --- a/srcpkgs/python3-i3ipc/template +++ b/srcpkgs/python3-i3ipc/template @@ -1,7 +1,7 @@ # Template file for 'python3-i3ipc' pkgname=python3-i3ipc version=2.2.1 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-xlib" From 72a850e47492eaf854b7098d37314a3e5291735a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:51 -0500 Subject: [PATCH 0922/1664] python3-llfuse: rebuild for Python 3.14 --- srcpkgs/python3-llfuse/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-llfuse/template b/srcpkgs/python3-llfuse/template index 87e96242b0f6a2..6cfcb4211e972a 100644 --- a/srcpkgs/python3-llfuse/template +++ b/srcpkgs/python3-llfuse/template @@ -1,7 +1,7 @@ # Template file for 'python3-llfuse' pkgname=python3-llfuse version=1.5.1 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools pkg-config" makedepends="python3-devel fuse-devel attr-devel" From d64e312e72e760dda3d2c1d592a52912f1b0e591 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:51 -0500 Subject: [PATCH 0923/1664] python3-pyasn: rebuild for Python 3.14 --- srcpkgs/python3-pyasn/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyasn/template b/srcpkgs/python3-pyasn/template index 1a740d79a4a1e9..4c316ef6228556 100644 --- a/srcpkgs/python3-pyasn/template +++ b/srcpkgs/python3-pyasn/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyasn' pkgname=python3-pyasn version=1.6.2 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From 9826f740f47764658a04ed90b6998481c21e0a00 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:51 -0500 Subject: [PATCH 0924/1664] python3-telnetlib-313-and-up: rebuild for Python 3.14 --- srcpkgs/python3-telnetlib-313-and-up/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-telnetlib-313-and-up/template b/srcpkgs/python3-telnetlib-313-and-up/template index 918e8e7ff6c8c1..68dfb7e9b67df4 100644 --- a/srcpkgs/python3-telnetlib-313-and-up/template +++ b/srcpkgs/python3-telnetlib-313-and-up/template @@ -1,7 +1,7 @@ # Template file for 'python3-telnetlib-313-and-up' pkgname=python3-telnetlib-313-and-up version=3.13.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3" From 35538a0b40f34c6d0ec7b2e91e888826035bc607 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:51 -0500 Subject: [PATCH 0925/1664] notmuch: rebuild for Python 3.14 --- srcpkgs/notmuch/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template index cc68651d9e6812..cadf847e848dd9 100644 --- a/srcpkgs/notmuch/template +++ b/srcpkgs/notmuch/template @@ -1,7 +1,7 @@ # Template file for 'notmuch' pkgname=notmuch version=0.39 -revision=3 +revision=4 build_style=configure build_helper=python3 configure_args="--prefix=/usr From fe8efc281517edf3d74112b467b9500460b09bde Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:51 -0500 Subject: [PATCH 0926/1664] llvm18: rebuild for Python 3.14 --- srcpkgs/llvm18/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/llvm18/template b/srcpkgs/llvm18/template index 0dfe6dc2f507b2..a43d7ffbc1e96f 100644 --- a/srcpkgs/llvm18/template +++ b/srcpkgs/llvm18/template @@ -1,7 +1,7 @@ # Template file for 'llvm18'. pkgname=llvm18 version=18.1.8 -revision=5 +revision=6 build_wrksrc=llvm build_style=cmake configure_args=" From 04641c0fc731a2bd2eb85eafefb95fd33ad44844 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:51 -0500 Subject: [PATCH 0927/1664] python3-dkimpy: rebuild for Python 3.14 --- srcpkgs/python3-dkimpy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-dkimpy/template b/srcpkgs/python3-dkimpy/template index ac88ac304e963b..6dee58c64862e5 100644 --- a/srcpkgs/python3-dkimpy/template +++ b/srcpkgs/python3-dkimpy/template @@ -1,7 +1,7 @@ # Template file for 'python3-dkimpy' pkgname=python3-dkimpy version=1.0.5 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-dnspython python3-authres python3-pynacl python3-aiodns" From d98a48b5157d1baf37408a69285739e9007f9c0b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:52 -0500 Subject: [PATCH 0928/1664] python3-aputils: rebuild for Python 3.14 --- srcpkgs/python3-aputils/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-aputils/template b/srcpkgs/python3-aputils/template index dd921c4b62729d..c208693f3df812 100644 --- a/srcpkgs/python3-aputils/template +++ b/srcpkgs/python3-aputils/template @@ -1,7 +1,7 @@ # Template file for 'python3-aputils' pkgname=python3-aputils version=0.1.4 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-pycryptodome" From bef493c6d335dcf6df8c3354436b9dd55331b420 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:52 -0500 Subject: [PATCH 0929/1664] python3-Markups: rebuild for Python 3.14 --- srcpkgs/python3-Markups/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Markups/template b/srcpkgs/python3-Markups/template index 38d0973bdb9edd..f705e12fe8cbb3 100644 --- a/srcpkgs/python3-Markups/template +++ b/srcpkgs/python3-Markups/template @@ -1,7 +1,7 @@ # Template file for 'python3-Markups' pkgname=python3-Markups version=3.0.0 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 python3-markdown-math" From 85ada76ea60fe894ea01d702c8a5c709774f5960 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:52 -0500 Subject: [PATCH 0930/1664] python3-Flask-Cors: rebuild for Python 3.14 --- srcpkgs/python3-Flask-Cors/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Flask-Cors/template b/srcpkgs/python3-Flask-Cors/template index daff2078497d41..be7181fb1b0a0f 100644 --- a/srcpkgs/python3-Flask-Cors/template +++ b/srcpkgs/python3-Flask-Cors/template @@ -1,7 +1,7 @@ # Template file for 'python3-Flask-Cors' pkgname=python3-Flask-Cors version=5.0.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-Flask python3-six" From 9ed6a9238c5166408bd40bfec3940cc81fe4d8e7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:52 -0500 Subject: [PATCH 0931/1664] python3-PyQt5-webengine: rebuild for Python 3.14 --- srcpkgs/python3-PyQt5-webengine/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-PyQt5-webengine/template b/srcpkgs/python3-PyQt5-webengine/template index fdee19ac139cdc..6d947b7e692570 100644 --- a/srcpkgs/python3-PyQt5-webengine/template +++ b/srcpkgs/python3-PyQt5-webengine/template @@ -1,7 +1,7 @@ # Template file for 'python3-PyQt5-webengine' pkgname=python3-PyQt5-webengine version=5.15.7 -revision=1 +revision=2 build_style=sip-build build_helper="qmake python3" hostmakedepends="pkg-config qt5-qmake sip python3-PyQt-builder" From bb7ad813b4f864e35d9deffe1c15e49f29d4d363 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:52 -0500 Subject: [PATCH 0932/1664] python3-QtAwesome: rebuild for Python 3.14 --- srcpkgs/python3-QtAwesome/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-QtAwesome/template b/srcpkgs/python3-QtAwesome/template index 3563bd96fdd2c7..f641074d6ed013 100644 --- a/srcpkgs/python3-QtAwesome/template +++ b/srcpkgs/python3-QtAwesome/template @@ -1,7 +1,7 @@ # Template file for 'python3-QtAwesome' pkgname=python3-QtAwesome version=1.3.1 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-QtPy python3-pyqt6-gui python3-pyqt6-widgets" From ff6e70e757c77e5ae5a1862e152517526d62261d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:52 -0500 Subject: [PATCH 0933/1664] python3-alembic: rebuild for Python 3.14 --- srcpkgs/python3-alembic/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-alembic/template b/srcpkgs/python3-alembic/template index 639a93d4ff541e..164c1d14440e63 100644 --- a/srcpkgs/python3-alembic/template +++ b/srcpkgs/python3-alembic/template @@ -1,7 +1,7 @@ # Template file for 'python3-alembic' pkgname=python3-alembic version=1.9.4 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-Mako python3-SQLAlchemy python3-dateutil python3-editor" From 63dca5f9389bdb3dab80bc32ce0133691933654c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:53 -0500 Subject: [PATCH 0934/1664] python3-pymediainfo: rebuild for Python 3.14 --- srcpkgs/python3-pymediainfo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pymediainfo/template b/srcpkgs/python3-pymediainfo/template index 9ab140f325b7a0..18ad2d5db9042d 100644 --- a/srcpkgs/python3-pymediainfo/template +++ b/srcpkgs/python3-pymediainfo/template @@ -1,7 +1,7 @@ # Template file for 'python3-pymediainfo' pkgname=python3-pymediainfo version=6.0.1 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="libmediainfo" From 9ae7aff2b1107420af9bf4ac4d124aa4228f64d9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:53 -0500 Subject: [PATCH 0935/1664] python3-vlc: rebuild for Python 3.14 --- srcpkgs/python3-vlc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-vlc/template b/srcpkgs/python3-vlc/template index 188551ac940987..c7a12ed861acb4 100644 --- a/srcpkgs/python3-vlc/template +++ b/srcpkgs/python3-vlc/template @@ -1,7 +1,7 @@ # Template file for 'python3-vlc' pkgname=python3-vlc version=3.0.20123 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 libvlc" From f708e754ffed5c99b1ae6009beef0940143e37d8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:53 -0500 Subject: [PATCH 0936/1664] python3-waitress: rebuild for Python 3.14 --- srcpkgs/python3-waitress/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-waitress/template b/srcpkgs/python3-waitress/template index e8143968d25f4f..58c835f6b6e797 100644 --- a/srcpkgs/python3-waitress/template +++ b/srcpkgs/python3-waitress/template @@ -1,7 +1,7 @@ # Template file for 'python3-waitress' pkgname=python3-waitress version=3.0.2 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From e0260c2f7bb1849b5d7024618bae5e62a602a269 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:53 -0500 Subject: [PATCH 0937/1664] python3-dateparser: rebuild for Python 3.14 --- srcpkgs/python3-dateparser/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-dateparser/template b/srcpkgs/python3-dateparser/template index 9aad3aaf145f86..b69b1ffb133ac3 100644 --- a/srcpkgs/python3-dateparser/template +++ b/srcpkgs/python3-dateparser/template @@ -1,7 +1,7 @@ # Template file for 'python3-dateparser' pkgname=python3-dateparser version=1.1.8 -revision=3 +revision=4 build_style=python3-module make_check_args="--ignore tests/test_hijri.py --ignore tests/test_jalali.py --ignore tests/test_language_detect.py --ignore tests/test_dateparser_data_integrity.py" From 85576b11c0591a497ef8d16115e69a9093bc88a1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:53 -0500 Subject: [PATCH 0938/1664] python3-modern_colorthief: rebuild for Python 3.14 --- .../patches/pyo3-update.patch | 14 ++++++++++++++ srcpkgs/python3-modern_colorthief/template | 6 +++++- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/python3-modern_colorthief/patches/pyo3-update.patch diff --git a/srcpkgs/python3-modern_colorthief/patches/pyo3-update.patch b/srcpkgs/python3-modern_colorthief/patches/pyo3-update.patch new file mode 100644 index 00000000000000..39022bf1673fb7 --- /dev/null +++ b/srcpkgs/python3-modern_colorthief/patches/pyo3-update.patch @@ -0,0 +1,14 @@ +Upstream has moved to pyo3 0.25.0, which compiles with Python 3.14, but has not +tagged a release. + +--- a/Cargo.toml ++++ b/Cargo.toml +@@ -10,7 +10,7 @@ + path = "src/rust/lib.rs" + + [dependencies] +-pyo3 = "0.22.5" ++pyo3 = "0.25.0" + color-thief = "0.2" + image = "0.25.4" + itertools = "0.13.0" diff --git a/srcpkgs/python3-modern_colorthief/template b/srcpkgs/python3-modern_colorthief/template index e6a94310c65ab4..a1be3565c25480 100644 --- a/srcpkgs/python3-modern_colorthief/template +++ b/srcpkgs/python3-modern_colorthief/template @@ -1,7 +1,7 @@ # Template file for 'python3-modern_colorthief' pkgname=python3-modern_colorthief version=0.1.7 -revision=1 +revision=2 build_helper=rust build_style=python3-pep517 hostmakedepends="maturin cargo" @@ -14,6 +14,10 @@ homepage="https://github.com/baseplate-admin/modern_colorthief" distfiles="${PYPI_SITE}/m/modern-colorthief/modern_colorthief-${version}.tar.gz" checksum=2ff10dcb9a7c4cfbd1aeba899e3fe60d8ac652bc492f013784e05aafa2fa6a23 +post_patch() { + cargo update --package pyo3@0.22.5 --precise 0.25.0 +} + post_install() { vlicense LICENSE } From 03d8e5bb0b96e7fe66ac74f7258493af05451396 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:53 -0500 Subject: [PATCH 0939/1664] python3-piexif: rebuild for Python 3.14 --- srcpkgs/python3-piexif/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-piexif/template b/srcpkgs/python3-piexif/template index 0edc585d69cd74..156664731cfc1b 100644 --- a/srcpkgs/python3-piexif/template +++ b/srcpkgs/python3-piexif/template @@ -1,7 +1,7 @@ # Template file for 'python3-piexif' pkgname=python3-piexif version=1.1.3 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From eed0676641f1afa569367b034669d5ffae3ff9f2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:54 -0500 Subject: [PATCH 0940/1664] python3-pure-protobuf: rebuild for Python 3.14 --- srcpkgs/python3-pure-protobuf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pure-protobuf/template b/srcpkgs/python3-pure-protobuf/template index 7002ee0149bd65..d221bebdf9f70a 100644 --- a/srcpkgs/python3-pure-protobuf/template +++ b/srcpkgs/python3-pure-protobuf/template @@ -1,7 +1,7 @@ # Template file for 'python3-pure-protobuf' pkgname=python3-pure-protobuf version=2.0.1 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From f8d6c091dd00587b8ae96869d62de4798018b896 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:54 -0500 Subject: [PATCH 0941/1664] python3-pyliblo3: rebuild for Python 3.14 --- srcpkgs/python3-pyliblo3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyliblo3/template b/srcpkgs/python3-pyliblo3/template index 39d47e82ec866d..b0ffcb7eb141f4 100644 --- a/srcpkgs/python3-pyliblo3/template +++ b/srcpkgs/python3-pyliblo3/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyliblo3' pkgname=python3-pyliblo3 version=0.16.3 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" makedepends="python3-devel liblo-devel" From 303a7bd3b5e85c909ecf6c1f0799c4eb3271ba5f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:54 -0500 Subject: [PATCH 0942/1664] zulip-term: rebuild for Python 3.14 --- srcpkgs/zulip-term/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/zulip-term/template b/srcpkgs/zulip-term/template index 48aebb02e16392..514d19b8643349 100644 --- a/srcpkgs/zulip-term/template +++ b/srcpkgs/zulip-term/template @@ -1,7 +1,7 @@ # Template file for 'zulip-term' pkgname=zulip-term version=0.7.0 -revision=2 +revision=3 build_style=python3-pep517 # these two tests don't expect "pytest" to be called as "pytest3" make_check_target=" From 50774b4dd45e615e59f8db3f0e3dca41d3ce7689 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:54 -0500 Subject: [PATCH 0943/1664] znc: rebuild for Python 3.14 --- srcpkgs/znc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/znc/template b/srcpkgs/znc/template index a95d717e71b53a..81f787abcf6a6e 100644 --- a/srcpkgs/znc/template +++ b/srcpkgs/znc/template @@ -1,7 +1,7 @@ # Template file for 'znc' pkgname=znc version=1.10.1 -revision=3 +revision=4 build_style=cmake configure_args="-DWANT_PYTHON=YES -DWANT_PERL=YES -DWANT_TCL=YES -DWANT_ARGON=YES -DWANT_I18N=YES" From af45a22047d066546dba67c41a677f9be0b10704 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:54 -0500 Subject: [PATCH 0944/1664] zim: rebuild for Python 3.14 --- srcpkgs/zim/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template index b886509937abb2..d30820217b769e 100644 --- a/srcpkgs/zim/template +++ b/srcpkgs/zim/template @@ -1,7 +1,7 @@ # Template file for 'zim' pkgname=zim version=0.76.3 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-gobject python3-xdg python3-setuptools gtk+3" depends="python3-gobject python3-xdg gtk+3 desktop-file-utils" From 5033a6dd2f4b2ebe1513a9083fa49c7cef0bdc61 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:54 -0500 Subject: [PATCH 0945/1664] zeek: rebuild for Python 3.14 --- srcpkgs/zeek/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/zeek/template b/srcpkgs/zeek/template index 484c3bbb2ec43d..0684e9452ced10 100644 --- a/srcpkgs/zeek/template +++ b/srcpkgs/zeek/template @@ -1,7 +1,7 @@ # Template file for 'zeek' pkgname=zeek version=8.0.4 -revision=1 +revision=2 archs="x86_64* i686* aarch64* armv7* ppc64*" build_style=cmake build_helper=qemu From d8ac1ce27856417b7d8891ade3e9c8ff03294c45 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:55 -0500 Subject: [PATCH 0946/1664] yubikey-manager: rebuild for Python 3.14 --- srcpkgs/yubikey-manager/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/yubikey-manager/template b/srcpkgs/yubikey-manager/template index 6581321d37590a..edc1fee3b53e77 100644 --- a/srcpkgs/yubikey-manager/template +++ b/srcpkgs/yubikey-manager/template @@ -1,7 +1,7 @@ # Template file for 'yubikey-manager' pkgname=yubikey-manager version=5.7.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="libfido2 python3-click python3-fido2 python3-cryptography From a6c173e977ffc01ac57b2aa8b33e0dc97ab9f340 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:55 -0500 Subject: [PATCH 0947/1664] ytmdl: rebuild for Python 3.14 --- srcpkgs/ytmdl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ytmdl/template b/srcpkgs/ytmdl/template index 888605a125b45a..c7a3381dc5fb00 100644 --- a/srcpkgs/ytmdl/template +++ b/srcpkgs/ytmdl/template @@ -1,7 +1,7 @@ # Template file for 'ytmdl' pkgname=ytmdl version=2024.08.15.1 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="ffmpeg yt-dlp python3-mutagen python3-requests python3-colorama From bc92192d173485e422be0ce074a4a8706240063f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:55 -0500 Subject: [PATCH 0948/1664] ytcc: rebuild for Python 3.14 --- srcpkgs/ytcc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template index 3fbc8d0cfdbb33..4d97799ed6a2cd 100644 --- a/srcpkgs/ytcc/template +++ b/srcpkgs/ytcc/template @@ -1,7 +1,7 @@ # Template file for 'ytcc' pkgname=ytcc version=2.8.0 -revision=1 +revision=2 build_style=python3-pep517 make_check_args="-m not(flaky)" hostmakedepends="python3-build hatchling python3-installer python3-wheel" From 0d74b7511b8b5fd9d3880f65989e863fa076ed9d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:55 -0500 Subject: [PATCH 0949/1664] yq: rebuild for Python 3.14 --- srcpkgs/yq/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template index 6f1ad6ce324243..87e23c713b3fae 100644 --- a/srcpkgs/yq/template +++ b/srcpkgs/yq/template @@ -1,7 +1,7 @@ # Template file for 'yq' pkgname=yq version=3.4.3 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3-yaml python3-xmltodict python3-tomlkit python3-argcomplete jq" From ae33a4d2fd6ca1ca642a54ef3d973d847c627412 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:55 -0500 Subject: [PATCH 0950/1664] you-get: rebuild for Python 3.14 --- srcpkgs/you-get/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/you-get/template b/srcpkgs/you-get/template index 820c69ffa53bdc..1bd08b9795ba2c 100644 --- a/srcpkgs/you-get/template +++ b/srcpkgs/you-get/template @@ -1,7 +1,7 @@ # Template file for 'you-get' pkgname=you-get version=0.4.1650 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pysocks python3-setuptools" From adf303d8346f00487f0c2ba47ac00b96b6c56c91 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:55 -0500 Subject: [PATCH 0951/1664] yewtube: rebuild for Python 3.14 --- srcpkgs/yewtube/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/yewtube/template b/srcpkgs/yewtube/template index 0f365e355523f9..bff468febb41f6 100644 --- a/srcpkgs/yewtube/template +++ b/srcpkgs/yewtube/template @@ -1,7 +1,7 @@ # Template file for 'yewtube' pkgname=yewtube version=2.12.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests python3-pyperclip python3-youtubesearch python3-pylast yt-dlp From 7271e18cfe3d3605b378cdbeb99d831577f65901 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:56 -0500 Subject: [PATCH 0952/1664] xpra: update to 6.3.6. --- srcpkgs/xpra/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/xpra/template b/srcpkgs/xpra/template index 109fa1c537c2d4..88cc96bba301c9 100644 --- a/srcpkgs/xpra/template +++ b/srcpkgs/xpra/template @@ -1,6 +1,6 @@ # Template file for 'xpra' pkgname=xpra -version=6.3.5 +version=6.3.6 revision=1 build_style=python3-module make_build_args="--without-cuda_kernels --without-cuda_rebuild @@ -20,7 +20,7 @@ license="GPL-2.0-or-later" homepage="https://xpra.org/" changelog="https://raw.githubusercontent.com/Xpra-org/xpra/master/docs/CHANGELOG.md" distfiles="https://github.com/Xpra-org/xpra/archive/v${version}.tar.gz" -checksum=81a928712fa914374fcb783b442562c272f09b7ac90cf03a5292eb5b5f0ae81e +checksum=5aa24cfdf4291f719532791584d80ca32fad1d8f6395a65c0419a86a4a0adff8 conf_files="/etc/xpra/xpra.conf /etc/xpra/xorg.conf /etc/xpra/conf.d/*" # Tests don't run properly without package installed make_check=no From 3992f86666c749676016c68b587ff608023b6888 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:56 -0500 Subject: [PATCH 0953/1664] xonsh: rebuild for Python 3.14 --- srcpkgs/xonsh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template index ba9782d0db45d5..a790c53627095e 100644 --- a/srcpkgs/xonsh/template +++ b/srcpkgs/xonsh/template @@ -1,7 +1,7 @@ # Template file for 'xonsh' pkgname=xonsh version=0.19.3 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools python3-wheel" depends="python3 python3-Pygments" From 8787d1ba04bf3c0f7428f5a6f8d1e26e1e2904e7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:56 -0500 Subject: [PATCH 0954/1664] xmldiff: rebuild for Python 3.14 --- srcpkgs/xmldiff/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xmldiff/template b/srcpkgs/xmldiff/template index bc47c82f6c50e6..7a1f218391d5f6 100644 --- a/srcpkgs/xmldiff/template +++ b/srcpkgs/xmldiff/template @@ -1,7 +1,7 @@ # Template file for 'xmldiff' pkgname=xmldiff version=2.7.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-lxml python3-setuptools" From fb3a8f06dcdae8b5aef42251063ff2ddc5c45154 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:56 -0500 Subject: [PATCH 0955/1664] xml2rfc: rebuild for Python 3.14 --- srcpkgs/xml2rfc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xml2rfc/template b/srcpkgs/xml2rfc/template index ffab213eb90b78..e9e5da19c4d248 100644 --- a/srcpkgs/xml2rfc/template +++ b/srcpkgs/xml2rfc/template @@ -1,7 +1,7 @@ # Template file for 'xml2rfc' pkgname=xml2rfc version=3.31.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-setuptools" depends="python3-appdirs python3-ConfigArgParse python3-html5lib From ac6434b3627af636a6a95a85e0bb7a6a8e1b4fb1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:56 -0500 Subject: [PATCH 0956/1664] xkcdpass: rebuild for Python 3.14 --- srcpkgs/xkcdpass/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template index c574c197e2f393..9bb913e7042046 100644 --- a/srcpkgs/xkcdpass/template +++ b/srcpkgs/xkcdpass/template @@ -1,7 +1,7 @@ # Template file for 'xkcdpass' pkgname=xkcdpass version=1.19.9 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools" From e05227e7623790b6b69fd1123a290d0093399014 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:56 -0500 Subject: [PATCH 0957/1664] xen: rebuild for Python 3.14 --- srcpkgs/xen/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xen/template b/srcpkgs/xen/template index 4611a1ca860818..a25b025e078d13 100644 --- a/srcpkgs/xen/template +++ b/srcpkgs/xen/template @@ -1,7 +1,7 @@ # Template file for 'xen' pkgname=xen version=4.19.1 -revision=2 +revision=3 # grep -R IPXE_GIT_TAG src/xen-*/tools/firmware/etherboot _git_tag_ipxe=1d1cf74a5e58811822bee4b3da3cff7282fcdfca # TODO: arm / aarch64 From 56bd950d7558ad52d5b08a334991cd4afba6bd7a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:57 -0500 Subject: [PATCH 0958/1664] xdot: rebuild for Python 3.14 --- srcpkgs/xdot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template index 557cc4929aabae..e5b91effaf665e 100644 --- a/srcpkgs/xdot/template +++ b/srcpkgs/xdot/template @@ -1,7 +1,7 @@ # Template file for 'xdot' pkgname=xdot version=1.3 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="graphviz gtk+3 python3-gobject python3-numpy" From 1cc9c9abce94a64b1fb795df2f6ab8b2b1b98a9f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:57 -0500 Subject: [PATCH 0959/1664] xcb-proto: rebuild for Python 3.14 --- srcpkgs/xcb-proto/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xcb-proto/template b/srcpkgs/xcb-proto/template index c01dde6bc8292f..98a1d451e7b351 100644 --- a/srcpkgs/xcb-proto/template +++ b/srcpkgs/xcb-proto/template @@ -1,7 +1,7 @@ # Template file for 'xcb-proto' pkgname=xcb-proto version=1.17.0 -revision=1 +revision=2 build_style=gnu-configure hostmakedepends="python3 automake" makedepends="libxml2" From 7559c4ddc1a518d39f6fd7335625ee15a6833920 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:57 -0500 Subject: [PATCH 0960/1664] wpgtk: rebuild for Python 3.14 --- srcpkgs/wpgtk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template index b14473451d00fc..bcb90c3134e113 100644 --- a/srcpkgs/wpgtk/template +++ b/srcpkgs/wpgtk/template @@ -1,7 +1,7 @@ # Template file for 'wpgtk' pkgname=wpgtk version=6.1.3 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="gtk+3 python3-gobject python3-Pillow pywal libxslt" From 0d63f49310e5654a113feacbbde54455d7d3cc33 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:57 -0500 Subject: [PATCH 0961/1664] wicd: rebuild for Python 3.14 --- srcpkgs/wicd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/wicd/template b/srcpkgs/wicd/template index 9ff5c6b2c511a6..084e78a8ad04b0 100644 --- a/srcpkgs/wicd/template +++ b/srcpkgs/wicd/template @@ -1,7 +1,7 @@ # Template file for 'wicd' pkgname=wicd version=1.7.4 -revision=10 +revision=11 _ver=$version+tb2+2019.09.18git2e0ba579-1 build_style="python3-module" hostmakedepends="python3-setuptools python3-Babel" From b011625bb9784ccc321914cb182323366bf71a9a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:57 -0500 Subject: [PATCH 0962/1664] whipper: rebuild for Python 3.14 --- srcpkgs/whipper/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/whipper/template b/srcpkgs/whipper/template index 41b80c4631ba81..964ec5ed379cbb 100644 --- a/srcpkgs/whipper/template +++ b/srcpkgs/whipper/template @@ -1,7 +1,7 @@ # Template file for 'whipper' pkgname=whipper version=0.10.0 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools_scm" makedepends="libsndfile-devel python3-devel" From 4108b2f3dea1dabee4ba69722e1ee4faf1ac7f21 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:57 -0500 Subject: [PATCH 0963/1664] wfuzz: rebuild for Python 3.14 --- srcpkgs/wfuzz/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template index bcb0dbc8dd5ea8..234073977b6fdb 100644 --- a/srcpkgs/wfuzz/template +++ b/srcpkgs/wfuzz/template @@ -1,7 +1,7 @@ # Template file for 'wfuzz' pkgname=wfuzz version=3.1.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-chardet python3-curl python3-future python3-lxml python3-parse From cff5f559882df9b6dc483151c2d5bd9da1337048 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:58 -0500 Subject: [PATCH 0964/1664] weechat: rebuild for Python 3.14 --- srcpkgs/weechat/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/weechat/template b/srcpkgs/weechat/template index 2cd79e176c9169..1291c05da9f344 100644 --- a/srcpkgs/weechat/template +++ b/srcpkgs/weechat/template @@ -1,7 +1,7 @@ # Template file for 'weechat' pkgname=weechat version=4.8.1 -revision=1 +revision=2 build_style=cmake configure_args="-DENABLE_MAN=ON -DENABLE_PERL=ON -DENABLE_LUA=ON -DENABLE_RUBY=ON -DENABLE_SPELL=ON From be8710acbc0d62acb95fe6cc2f2920d6cd9edda0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:58 -0500 Subject: [PATCH 0965/1664] weather: rebuild for Python 3.14 --- srcpkgs/weather/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template index 83ed18c737e238..f39f65db728329 100644 --- a/srcpkgs/weather/template +++ b/srcpkgs/weather/template @@ -1,7 +1,7 @@ # Template file for 'weather' pkgname=weather version=2.5.0 -revision=1 +revision=2 depends="python3" conf_files="/etc/weatherrc" short_desc="CLI utility for current (METAR) weather conditions and forecasts" From 79daf314adc655392264f1391bf66a5cee6a8727 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:58 -0500 Subject: [PATCH 0966/1664] waydroid: rebuild for Python 3.14 --- srcpkgs/waydroid/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/waydroid/template b/srcpkgs/waydroid/template index e59fe4f20d7524..001770c47ae667 100644 --- a/srcpkgs/waydroid/template +++ b/srcpkgs/waydroid/template @@ -1,7 +1,7 @@ # Template file for 'waydroid' pkgname=waydroid version=1.6.0 -revision=2 +revision=3 # https://developer.android.com/ndk/guides/abis#sa archs="aarch64* armv7* i686* x86_64*" build_style=gnu-makefile From 3cbed521336cc3e2a38b5d3118e6fa903e6ad7cc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:58 -0500 Subject: [PATCH 0967/1664] vpn-slice: rebuild for Python 3.14 --- srcpkgs/vpn-slice/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/vpn-slice/template b/srcpkgs/vpn-slice/template index 9b2cd8d2cc7f76..7135aadca4c3d8 100644 --- a/srcpkgs/vpn-slice/template +++ b/srcpkgs/vpn-slice/template @@ -1,7 +1,7 @@ # Template file for 'vpn-slice' pkgname=vpn-slice version=0.16.1 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-dnspython python3-setproctitle iproute2" From a499aa7f4f27e4b4a5e2c46da57f8bff18f38a6f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:58 -0500 Subject: [PATCH 0968/1664] volctl: rebuild for Python 3.14 --- srcpkgs/volctl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template index ea97d013a7d3aa..e2f8483c6dcf38 100644 --- a/srcpkgs/volctl/template +++ b/srcpkgs/volctl/template @@ -1,7 +1,7 @@ # Template file for 'volctl' pkgname=volctl version=0.9.3 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-gobject gtk+3 desktop-file-utils python3-cairo python3-pulsectl" From fe094ad2c5c00adb013844650556252b822745e1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:59 -0500 Subject: [PATCH 0969/1664] vit: rebuild for Python 3.14 --- srcpkgs/vit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/vit/template b/srcpkgs/vit/template index c5ab4e31e3bbf1..8b9fd9bb8630f8 100644 --- a/srcpkgs/vit/template +++ b/srcpkgs/vit/template @@ -1,7 +1,7 @@ # Template file for 'vit' pkgname=vit version=2.3.2 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="task python3-urwid python3-tasklib" From 029896f85d10cdd37c92a5acda30392269cf04c6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:59 -0500 Subject: [PATCH 0970/1664] visidata: rebuild for Python 3.14 --- srcpkgs/visidata/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template index 3a52e07a92d99b..ddcd365cae71d4 100644 --- a/srcpkgs/visidata/template +++ b/srcpkgs/visidata/template @@ -1,7 +1,7 @@ # Template file for 'visidata' pkgname=visidata version=3.1.1 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-dateutil python3-importlib_metadata python3-setuptools" From 6ba101a8679fe83d3c6f071c30013253e0f763aa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:59 -0500 Subject: [PATCH 0971/1664] virtualenvwrapper: rebuild for Python 3.14 --- srcpkgs/virtualenvwrapper/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template index 45aa0e36de233c..5a7a388ad93fd5 100644 --- a/srcpkgs/virtualenvwrapper/template +++ b/srcpkgs/virtualenvwrapper/template @@ -1,7 +1,7 @@ # Template file for 'virtualenvwrapper' pkgname=virtualenvwrapper version=4.8.4 -revision=8 +revision=9 build_style=python3-module pycompile_module="virtualenvwrapper" hostmakedepends="python3-setuptools python3-pbr" From a8fe10a4d7c235078b36d88ff76f4deba53cf359 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:59 -0500 Subject: [PATCH 0972/1664] virtme: rebuild for Python 3.14 --- srcpkgs/virtme/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template index 34c32391c6967f..6547006b77ee76 100644 --- a/srcpkgs/virtme/template +++ b/srcpkgs/virtme/template @@ -1,7 +1,7 @@ # Template file for 'virtme' pkgname=virtme version=0.1.1 -revision=7 +revision=8 build_style=python3-module pycompile_module="virtme" hostmakedepends="python3-setuptools" From 20930c41347bc5cbe4e3c8d8bcb3b3e659eb66dd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:59 -0500 Subject: [PATCH 0973/1664] virt-manager: rebuild for Python 3.14 --- srcpkgs/virt-manager/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/virt-manager/template b/srcpkgs/virt-manager/template index aa4c63790edc71..22259aea0d4c59 100644 --- a/srcpkgs/virt-manager/template +++ b/srcpkgs/virt-manager/template @@ -1,7 +1,7 @@ # Template file for 'virt-manager' pkgname=virt-manager version=5.1.0 -revision=1 +revision=2 build_style=meson configure_args="-Dupdate-icon-cache=false -Dcompile-schemas=false" make_check_args="pytest" From d603823c3238d378dc78cb252a670f55d94de42a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:59 -0500 Subject: [PATCH 0974/1664] vimiv: rebuild for Python 3.14 --- srcpkgs/vimiv/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/vimiv/template b/srcpkgs/vimiv/template index 8945bee96a13f4..6a4836ffc38a85 100644 --- a/srcpkgs/vimiv/template +++ b/srcpkgs/vimiv/template @@ -1,7 +1,7 @@ # Template file for 'vimiv' pkgname=vimiv version=0.9.1 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From 037a4d5b93d4ef09af868ff07bd35579895c72ec Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:00 -0500 Subject: [PATCH 0975/1664] vim: update to 9.1.1918. --- srcpkgs/vim/template | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template index a2444d54373d2a..20e6ac658d6dbc 100644 --- a/srcpkgs/vim/template +++ b/srcpkgs/vim/template @@ -1,9 +1,10 @@ # Template file for 'vim' pkgname=vim -version=9.1.1215 -revision=3 +version=9.1.1918 +revision=1 create_wrksrc=required -hostmakedepends="gettext glib-devel pkg-config" +hostmakedepends="gettext glib-devel pkg-config + $(vopt_if gtk3 wayland-devel)" makedepends="acl-devel ncurses-devel $(vopt_if x11 libXt-devel) $(vopt_if gtk3 gtk+3-devel) @@ -15,7 +16,7 @@ maintainer="Leah Neukirchen " license="Vim" homepage="https://www.vim.org" distfiles="https://github.com/vim/vim/archive/refs/tags/v${version}.tar.gz" -checksum=2f60d34f90a0c7854e9484c9b2fda4194b9b7996b938996b9838db38b548c7db +checksum=184d2ec64af07cd198cef43a363a653f002878aa47e42042fad9f05877f9f70b python_version=3 build_options="x11 gtk3 huge" From a1cf65460cae55d4de1ef3dac7c0c1484623a924 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:00 -0500 Subject: [PATCH 0976/1664] vidcutter: rebuild for Python 3.14 --- srcpkgs/vidcutter/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template index 424866533b6b0b..72d5de545ae398 100644 --- a/srcpkgs/vidcutter/template +++ b/srcpkgs/vidcutter/template @@ -1,7 +1,7 @@ # Template file for 'vidcutter' pkgname=vidcutter version=6.0.5.3 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" makedepends="mpv-devel python3-devel" From 6be0c051c52ceaffc56d63917901819a2e809698 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:00 -0500 Subject: [PATCH 0977/1664] vdirsyncer: rebuild for Python 3.14 --- srcpkgs/vdirsyncer/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template index 88b36794d2c25e..eec0125652eff1 100644 --- a/srcpkgs/vdirsyncer/template +++ b/srcpkgs/vdirsyncer/template @@ -1,7 +1,7 @@ # Template file for 'vdirsyncer' pkgname=vdirsyncer version=0.20.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm" depends="python3-click python3-click-log python3-requests python3-aiohttp From 01553c9aa4f97d1123424634a879e9f39033a540 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:00 -0500 Subject: [PATCH 0978/1664] variety: rebuild for Python 3.14 --- srcpkgs/variety/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template index e547830975b66b..b8780a1b24ac7b 100644 --- a/srcpkgs/variety/template +++ b/srcpkgs/variety/template @@ -1,7 +1,7 @@ # Template file for 'variety' pkgname=variety version=0.8.13 -revision=1 +revision=2 build_style=python3-module pycompile_dirs="usr/share/variety/plugins" hostmakedepends="python3-setuptools python3-distutils-extra intltool" From c6e969bf7456f159597eefa851fab1571cdcca59 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:00 -0500 Subject: [PATCH 0979/1664] vapoursynth: rebuild for Python 3.14 --- srcpkgs/vapoursynth/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/vapoursynth/template b/srcpkgs/vapoursynth/template index 219a9e3fc2b7f9..e9140d8ab68e37 100644 --- a/srcpkgs/vapoursynth/template +++ b/srcpkgs/vapoursynth/template @@ -1,7 +1,7 @@ # Template file for 'vapoursynth' pkgname=vapoursynth version=R66 -revision=3 +revision=4 build_style=gnu-configure hostmakedepends="automake libtool nasm pkg-config python3-Cython" makedepends="python3-devel zimg-devel" From 45a6850cfea5a10baf29bcea9489449ab22831d1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:01 -0500 Subject: [PATCH 0980/1664] uwsgi: rebuild for Python 3.14 --- srcpkgs/uwsgi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/uwsgi/template b/srcpkgs/uwsgi/template index 55066c9fa2b899..acaa422986ba2b 100644 --- a/srcpkgs/uwsgi/template +++ b/srcpkgs/uwsgi/template @@ -1,7 +1,7 @@ # Template file for 'uwsgi' pkgname=uwsgi version=2.0.31 -revision=1 +revision=2 hostmakedepends="python3-setuptools" makedepends="python3-devel openssl-devel" short_desc="Fast, self-healing application container server" From 4ad134c26d65b68f8afede4366ad79cfe69c5901 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:01 -0500 Subject: [PATCH 0981/1664] urlwatch: rebuild for Python 3.14 --- srcpkgs/urlwatch/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template index e57c7df1832945..3edeab99bc5b0f 100644 --- a/srcpkgs/urlwatch/template +++ b/srcpkgs/urlwatch/template @@ -1,7 +1,7 @@ # Template file for 'urlwatch' pkgname=urlwatch version=2.29 -revision=1 +revision=2 build_style=python3-module # skip the tests that require python modules that aren't packaged # (pdftotext & pytesseract) From 8400730b2c19c48de22838d7d99b5c4f36b2e93a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:01 -0500 Subject: [PATCH 0982/1664] urlscan: rebuild for Python 3.14 --- srcpkgs/urlscan/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template index 3c05a3a8d2601d..cb40720317c33f 100644 --- a/srcpkgs/urlscan/template +++ b/srcpkgs/urlscan/template @@ -1,7 +1,7 @@ # Template file for 'urlscan' pkgname=urlscan version=1.0.1 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3-urwid" From 2b31c544689a62f2225d4937f869e3625a438f9d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:01 -0500 Subject: [PATCH 0983/1664] urh: rebuild for Python 3.14 --- srcpkgs/urh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/urh/template b/srcpkgs/urh/template index 8e0ce69c28aed0..2948f4b1c1417b 100644 --- a/srcpkgs/urh/template +++ b/srcpkgs/urh/template @@ -1,7 +1,7 @@ # Template file for 'urh' pkgname=urh version=2.9.8 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools python3-Cython python3-numpy" makedepends="python3-devel python3-PyQt5 libairspy-devel librtlsdr-devel From d29a869030c40e09bfa7b9dc1d8910be077ffc96 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:01 -0500 Subject: [PATCH 0984/1664] unknown-horizons: rebuild for Python 3.14 --- srcpkgs/unknown-horizons/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/unknown-horizons/template b/srcpkgs/unknown-horizons/template index 4b1b13a9120824..ea6d1ecc5712ac 100644 --- a/srcpkgs/unknown-horizons/template +++ b/srcpkgs/unknown-horizons/template @@ -1,7 +1,7 @@ # Template file for 'unknown-horizons' pkgname=unknown-horizons version=2019.1 -revision=10 +revision=11 build_style=python3-module hostmakedepends="python3 python3-setuptools intltool git python3-Pillow" depends="fifengine python3-yaml" From c58a4371e169aa9f51b0e9d4530e2ce134b1c35e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:01 -0500 Subject: [PATCH 0985/1664] ulauncher: rebuild for Python 3.14 --- srcpkgs/ulauncher/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ulauncher/template b/srcpkgs/ulauncher/template index b26b3ced7b81c3..d9bda118620848 100644 --- a/srcpkgs/ulauncher/template +++ b/srcpkgs/ulauncher/template @@ -1,7 +1,7 @@ # Template file for 'ulauncher' pkgname=ulauncher version=5.15.7 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-distutils-extra intltool python3-Levenshtein python3-dbus python3-gobject python3-inotify python3-websocket-client From 3d2c35b23319fdf7729df612e9f579b256b4b47b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:02 -0500 Subject: [PATCH 0986/1664] ueberzug: rebuild for Python 3.14 --- srcpkgs/ueberzug/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ueberzug/template b/srcpkgs/ueberzug/template index f3ded48231ec9d..536a586ba9989c 100644 --- a/srcpkgs/ueberzug/template +++ b/srcpkgs/ueberzug/template @@ -1,7 +1,7 @@ # Template file for 'ueberzug' pkgname=ueberzug version=18.1.9 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel libX11-devel libXext-devel" From 45d9fcffd2db82541e71f9cc795b80546029e24e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:02 -0500 Subject: [PATCH 0987/1664] udiskie: rebuild for Python 3.14 --- srcpkgs/udiskie/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template index 66ad02d8e3c8dd..f84bb2249f143d 100644 --- a/srcpkgs/udiskie/template +++ b/srcpkgs/udiskie/template @@ -1,7 +1,7 @@ # Template file for 'udiskie' pkgname=udiskie version=2.5.8 -revision=1 +revision=2 build_style=python3-module hostmakedepends="gettext asciidoc python3-setuptools" depends="gtk+3 libnotify python3-docopt python3-gobject python3-keyutils From e279acab8292923da4a0c2cefcf8564a2659e238 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:02 -0500 Subject: [PATCH 0988/1664] tzupdate: rebuild for Python 3.14 --- srcpkgs/tzupdate/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template index 20d323b55b39c0..7f7356c2411bc6 100644 --- a/srcpkgs/tzupdate/template +++ b/srcpkgs/tzupdate/template @@ -1,7 +1,7 @@ # Template file for 'tzupdate' pkgname=tzupdate version=2.1.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 9c3fbad75b2b3503588d2a32a2ff7cd663d841b6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:02 -0500 Subject: [PATCH 0989/1664] txt2tags: rebuild for Python 3.14 --- srcpkgs/txt2tags/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/txt2tags/template b/srcpkgs/txt2tags/template index c962b052e1a252..d6f964613cbbeb 100644 --- a/srcpkgs/txt2tags/template +++ b/srcpkgs/txt2tags/template @@ -1,7 +1,7 @@ # Template file for 'txt2tags' pkgname=txt2tags version=3.9 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools" depends="python3" From e018f75fa2819dabc5fbbbc55b9893add985d546 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:02 -0500 Subject: [PATCH 0990/1664] tuir: rebuild for Python 3.14 --- srcpkgs/tuir/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template index 0bd7723112d06c..4a9ffba8acd1b5 100644 --- a/srcpkgs/tuir/template +++ b/srcpkgs/tuir/template @@ -1,7 +1,7 @@ # Template file for 'tuir' pkgname=tuir version=1.29.0 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="ncurses python3-BeautifulSoup4 python3-decorator python3-kitchen From 860602b50ed06acf3fab7ffdc3af91956a2cceb1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:03 -0500 Subject: [PATCH 0991/1664] tuimoji: rebuild for Python 3.14 --- srcpkgs/tuimoji/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template index d83c37741f0dc7..96414e6765ac51 100644 --- a/srcpkgs/tuimoji/template +++ b/srcpkgs/tuimoji/template @@ -1,7 +1,7 @@ # Template file for 'tuimoji' pkgname=tuimoji version=1.0.0 -revision=8 +revision=9 build_style=python3-module pycompile_module="tuimoji" hostmakedepends="python3-setuptools" From b75dfeaa88423bc54eb03e8483c114725f92eb0b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:03 -0500 Subject: [PATCH 0992/1664] tryton: rebuild for Python 3.14 --- srcpkgs/tryton/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template index a25c297fdcb95a..72bbbd68d516aa 100644 --- a/srcpkgs/tryton/template +++ b/srcpkgs/tryton/template @@ -1,7 +1,7 @@ # Template file for 'tryton' pkgname=tryton version=7.2.8 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="gtk+3 python3-dateutil python3-gobject" From 17d51ab8be159ac91512e94d2546159d497acb45 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:03 -0500 Subject: [PATCH 0993/1664] treeline: rebuild for Python 3.14 --- srcpkgs/treeline/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/treeline/template b/srcpkgs/treeline/template index f0f9a807530ffd..17d61bc1c7eb38 100644 --- a/srcpkgs/treeline/template +++ b/srcpkgs/treeline/template @@ -1,7 +1,7 @@ # Template file for 'treeline' pkgname=treeline version=3.2.1 -revision=1 +revision=2 pycompile_dirs="usr/share/treeline" hostmakedepends="python3" depends="python3-pyqt6" From 69c1d3f21769b17c63e9e8303c30803d16887dc8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:03 -0500 Subject: [PATCH 0994/1664] trash-cli: rebuild for Python 3.14 --- srcpkgs/trash-cli/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/trash-cli/template b/srcpkgs/trash-cli/template index 5517756541dfea..3fcdc3843b013a 100644 --- a/srcpkgs/trash-cli/template +++ b/srcpkgs/trash-cli/template @@ -1,7 +1,7 @@ # Template file for 'trash-cli' pkgname=trash-cli version=0.24.5.26 -revision=2 +revision=3 build_style=python3-pep517 make_check_args="--ignore=tests/test_put/cmd/e2e/test_on_links_to_dirs.py" hostmakedepends="python3-wheel" From 0236058573c3eba98ae2ee8c12dde9bac6ecd5b7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:03 -0500 Subject: [PATCH 0995/1664] transifex-cli: rebuild for Python 3.14 --- srcpkgs/transifex-cli/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/transifex-cli/template b/srcpkgs/transifex-cli/template index 675110b1658f5b..a4d89e194f9202 100644 --- a/srcpkgs/transifex-cli/template +++ b/srcpkgs/transifex-cli/template @@ -1,7 +1,7 @@ # Template file for 'transifex-cli' pkgname=transifex-cli version=1.6.6 -revision=6 +revision=7 build_style=go go_import_path="github.com/transifex/cli" go_ldflags="-X github.com/transifex/cli/internal/txlib.Version=${version}" From 03368d3ed47c132743b9561d905928e9aa6d90d9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:03 -0500 Subject: [PATCH 0996/1664] trackma: rebuild for Python 3.14 --- srcpkgs/trackma/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template index 0ef65c114eea62..b493f0617e992a 100644 --- a/srcpkgs/trackma/template +++ b/srcpkgs/trackma/template @@ -1,7 +1,7 @@ # Template file for 'trackma' pkgname=trackma version=0.8.4 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-urwid python3-gobject" From 1f2b2e4591256047d48ad8fd50f79aa8bf16faf9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:04 -0500 Subject: [PATCH 0997/1664] tox: rebuild for Python 3.14 --- srcpkgs/tox/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tox/template b/srcpkgs/tox/template index 4fb8bb19a78841..2915aa8306f35e 100644 --- a/srcpkgs/tox/template +++ b/srcpkgs/tox/template @@ -1,7 +1,7 @@ # Template file for 'tox' pkgname=tox version=4.27.0 -revision=1 +revision=2 build_style=python3-pep517 # these two tests fail with "OSError: out of pty devices" make_check_args=" From 2edce711c19baa8a5f2f690337d9174c73103ffe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:04 -0500 Subject: [PATCH 0998/1664] totem: rebuild for Python 3.14 --- srcpkgs/totem/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/totem/template b/srcpkgs/totem/template index 1d18af469f9801..103bab380ecda6 100644 --- a/srcpkgs/totem/template +++ b/srcpkgs/totem/template @@ -1,7 +1,7 @@ # Template file for 'totem' pkgname=totem version=43.2 -revision=1 +revision=2 build_style=meson build_helper="gir" configure_args="-Denable-python=yes" From 90fee9bf5d869fa4fd2a19d5e85bea028164842f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:04 -0500 Subject: [PATCH 0999/1664] torbrowser-launcher: rebuild for Python 3.14 --- srcpkgs/torbrowser-launcher/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/torbrowser-launcher/template b/srcpkgs/torbrowser-launcher/template index 6e826498d5167c..0657eaf7ab081c 100644 --- a/srcpkgs/torbrowser-launcher/template +++ b/srcpkgs/torbrowser-launcher/template @@ -1,7 +1,7 @@ # Template file for 'torbrowser-launcher' pkgname=torbrowser-launcher version=0.3.7 -revision=2 +revision=3 archs="i686 x86_64" # limited by Tor Browser itself build_style=python3-module hostmakedepends="gettext python3-distro python3-setuptools" From fe7635cee98620a5eaba823c75d0bbe04f82aa01 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:04 -0500 Subject: [PATCH 1000/1664] toot: rebuild for Python 3.14 --- srcpkgs/toot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template index fc7a98234fcd3a..7039f82bebf8e3 100644 --- a/srcpkgs/toot/template +++ b/srcpkgs/toot/template @@ -1,7 +1,7 @@ # Template file for 'toot' pkgname=toot version=0.47.1 -revision=2 +revision=3 build_style=python3-pep517 _depends="python3-click python3-requests python3-BeautifulSoup4 python3-wcwidth python3-urwid python3-urwidgets python3-tomlkit python3-Pillow python3-term-image" From e2ed96027c9fbfd917cbc802f078ef175f868e3d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:04 -0500 Subject: [PATCH 1001/1664] todoman: rebuild for Python 3.14 --- srcpkgs/todoman/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template index a236a9ca44c556..9bb9462ad260dc 100644 --- a/srcpkgs/todoman/template +++ b/srcpkgs/todoman/template @@ -1,7 +1,7 @@ # Template file for 'todoman' pkgname=todoman version=4.4.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3-icalendar python3-urwid python3-xdg python3-parsedatetime From ec1b2c3c9b286cf5cf41be2feefe45ae6894bc8e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:04 -0500 Subject: [PATCH 1002/1664] tlpui: rebuild for Python 3.14 --- srcpkgs/tlpui/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tlpui/template b/srcpkgs/tlpui/template index cb6e741a050638..7d9ba461544194 100644 --- a/srcpkgs/tlpui/template +++ b/srcpkgs/tlpui/template @@ -1,7 +1,7 @@ # Template file for 'tlpui' pkgname=tlpui version=1.8.0 -revision=1 +revision=2 build_style="python3-pep517" hostmakedepends="python3-poetry-core" depends="gtk+3 tlp python3-gobject python3-yaml" From fa765315496e72cc0f602ccc4a039d845077e278 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:05 -0500 Subject: [PATCH 1003/1664] timer-cli: rebuild for Python 3.14 --- srcpkgs/timer-cli/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/timer-cli/template b/srcpkgs/timer-cli/template index 8aa76a1c1f5ee2..3120354ee5e1d6 100644 --- a/srcpkgs/timer-cli/template +++ b/srcpkgs/timer-cli/template @@ -1,7 +1,7 @@ # Template file for 'timer-cli' pkgname=timer-cli version=0.1.2 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-rich python3-click python3-art" From 44e46a5e744b7ce5bed200150e336d93246e68f2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:05 -0500 Subject: [PATCH 1004/1664] thinkpad-scripts: rebuild for Python 3.14 --- srcpkgs/thinkpad-scripts/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/thinkpad-scripts/template b/srcpkgs/thinkpad-scripts/template index 8f65c8698fa840..5a7718233e87fa 100644 --- a/srcpkgs/thinkpad-scripts/template +++ b/srcpkgs/thinkpad-scripts/template @@ -1,7 +1,7 @@ # Template file for 'thinkpad-scripts' pkgname=thinkpad-scripts version=4.12.0 -revision=7 +revision=8 build_style=python3-module pycompile_module="tps" hostmakedepends="gettext python3-setuptools" From d02a068d801d6936c77a85644dbf1797f47982e1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:05 -0500 Subject: [PATCH 1005/1664] thefuck: remove package This hasn't been udpated in more than three years, nothing requires it, and it fails to build with Python 3.14. --- srcpkgs/removed-packages/template | 1 + ...442e778dd7bc53bdbdb50278eea2c207dc74.patch | 53 ------------------- srcpkgs/thefuck/template | 31 ----------- 3 files changed, 1 insertion(+), 84 deletions(-) delete mode 100644 srcpkgs/thefuck/patches/0420442e778dd7bc53bdbdb50278eea2c207dc74.patch delete mode 100644 srcpkgs/thefuck/template diff --git a/srcpkgs/removed-packages/template b/srcpkgs/removed-packages/template index 2df7a47c2bb823..553c45d27f964e 100644 --- a/srcpkgs/removed-packages/template +++ b/srcpkgs/removed-packages/template @@ -938,6 +938,7 @@ replaces=" text-engine<=0.1.1_1 text-engine-devel<=0.1.1_1 text-engine-demo<=0.1.1_1 + thefuck<=3.32_5 threadweaver<=5.116.0_1 tilp2<=1.18_2 tlsdate<=0.0.13_16 diff --git a/srcpkgs/thefuck/patches/0420442e778dd7bc53bdbdb50278eea2c207dc74.patch b/srcpkgs/thefuck/patches/0420442e778dd7bc53bdbdb50278eea2c207dc74.patch deleted file mode 100644 index c33f8259cb2637..00000000000000 --- a/srcpkgs/thefuck/patches/0420442e778dd7bc53bdbdb50278eea2c207dc74.patch +++ /dev/null @@ -1,53 +0,0 @@ -From 0420442e778dd7bc53bdbdb50278eea2c207dc74 Mon Sep 17 00:00:00 2001 -From: Pablo Santiago Blum de Aguiar -Date: Mon, 10 Jul 2023 14:43:45 +0200 -Subject: [PATCH] #1248: Use imp only when importlib.util not available - -The imp module is deprecated and will be removed in Python 12. ---- - thefuck/conf.py | 12 +++++++++++- - thefuck/types.py | 3 +-- - 3 files changed, 13 insertions(+), 4 deletions(-) - -diff --git a/thefuck/conf.py b/thefuck/conf.py -index 27876ef47..611ec84b7 100644 ---- a/thefuck/conf.py -+++ b/thefuck/conf.py -@@ -1,4 +1,3 @@ --from imp import load_source - import os - import sys - from warnings import warn -@@ -6,6 +5,17 @@ - from . import const - from .system import Path - -+try: -+ import importlib.util -+ -+ def load_source(name, pathname, _file=None): -+ module_spec = importlib.util.spec_from_file_location(name, pathname) -+ module = importlib.util.module_from_spec(module_spec) -+ module_spec.loader.exec_module(module) -+ return module -+except ImportError: -+ from imp import load_source -+ - - class Settings(dict): - def __getattr__(self, item): -diff --git a/thefuck/types.py b/thefuck/types.py -index 96e6ace67..b3b64c35d 100644 ---- a/thefuck/types.py -+++ b/thefuck/types.py -@@ -1,9 +1,8 @@ --from imp import load_source - import os - import sys - from . import logs - from .shells import shell --from .conf import settings -+from .conf import settings, load_source - from .const import DEFAULT_PRIORITY, ALL_ENABLED - from .exceptions import EmptyCommand - from .utils import get_alias, format_raw_script diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template deleted file mode 100644 index 377e816781ec79..00000000000000 --- a/srcpkgs/thefuck/template +++ /dev/null @@ -1,31 +0,0 @@ -# Template file for 'thefuck' -pkgname=thefuck -version=3.32 -revision=5 -build_style=python3-module -hostmakedepends="python3-setuptools" -depends="python3-colorama python3-decorator python3-psutil python3-pyte - python3-requests" -checkdepends="python3-pytest-mock $depends" -short_desc="Magnificent app which corrects your previous console command" -maintainer="Orphaned " -license="MIT" -homepage="https://github.com/nvbn/thefuck" -distfiles="https://github.com/nvbn/thefuck/archive/${version}.tar.gz" -checksum=76cbb014473672d1c384922857f8fbc1f6f7774f74f784149ad88751854ecfdf - -case "$XBPS_TARGET_MACHINE" in - # archs where go is available - the test suite uses it - x86_64*|i686*|armv[67]*|aarch64*|ppc64le*) checkdepends+=" go" ;; - *) make_check=no ;; # go is not available -esac - -pre_check() { - # on python3 mock is unittest.mock - sed -i 's|from mock|from unittest.mock|g' tests/**.py - sed -i 's|from mock|from unittest.mock|g' tests/**/*.py -} - -post_install() { - vlicense LICENSE.md -} From c69dd9b14c259a6cbfe1151b113ac2dabb194cd2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:05 -0500 Subject: [PATCH 1006/1664] texworks: rebuild for Python 3.14 --- srcpkgs/texworks/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/texworks/template b/srcpkgs/texworks/template index d413730ec3bb4b..942623c16b7bf9 100644 --- a/srcpkgs/texworks/template +++ b/srcpkgs/texworks/template @@ -1,7 +1,7 @@ # Template file for 'texworks' pkgname=texworks version=0.6.6 -revision=4 +revision=5 build_style=cmake configure_args="-DTW_BUILD_ID=Void -DWITH_LUA=ON -DWITH_PYTHON=ON -DDESIRED_QT_VERSION:STRING=5" From dd8bf4604db685c9672c95677aaf7dead5acebfb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:05 -0500 Subject: [PATCH 1007/1664] termtosvg: rebuild for Python 3.14 --- srcpkgs/termtosvg/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/termtosvg/template b/srcpkgs/termtosvg/template index e2a6161ce61c35..7d0ab27d156a8e 100644 --- a/srcpkgs/termtosvg/template +++ b/srcpkgs/termtosvg/template @@ -1,7 +1,7 @@ # Template file for 'termtosvg' pkgname=termtosvg version=1.1.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pyte python3-lxml python3-wcwidth" From f0b6b5db035858d727b9e67ff5255dbcfbebd1d0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:05 -0500 Subject: [PATCH 1008/1664] terminator: rebuild for Python 3.14 --- srcpkgs/terminator/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/terminator/template b/srcpkgs/terminator/template index f15009ec1f6511..8ef1112e054f8f 100644 --- a/srcpkgs/terminator/template +++ b/srcpkgs/terminator/template @@ -1,7 +1,7 @@ # Template file for 'terminator' pkgname=terminator version=2.1.4 -revision=1 +revision=2 build_style=python3-module hostmakedepends="intltool python3-setuptools" depends="desktop-file-utils gsettings-desktop-schemas libkeybinder3 libnotify From fb2991c07bc3e71480ba0adaef692216adaf8875 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:05 -0500 Subject: [PATCH 1009/1664] termdown: rebuild for Python 3.14 --- srcpkgs/termdown/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template index 160529b87aee4c..31e38e37f534b9 100644 --- a/srcpkgs/termdown/template +++ b/srcpkgs/termdown/template @@ -1,7 +1,7 @@ # Template file for 'termdown' pkgname=termdown version=1.18.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-dateutil python3-click python3-pyfiglet" From 40b9c01b55c09bfd050171355fbc9a41e224021b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:06 -0500 Subject: [PATCH 1010/1664] telegram-tg: rebuild for Python 3.14 --- srcpkgs/telegram-tg/patches/update-poetry-version.patch | 2 +- srcpkgs/telegram-tg/template | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/telegram-tg/patches/update-poetry-version.patch b/srcpkgs/telegram-tg/patches/update-poetry-version.patch index b59c5348ecbbd3..9b855769bc0299 100644 --- a/srcpkgs/telegram-tg/patches/update-poetry-version.patch +++ b/srcpkgs/telegram-tg/patches/update-poetry-version.patch @@ -7,7 +7,7 @@ Fix build for new poetry version [build-system] -requires = ["poetry-core>=1.0.0,<2.0.0"] -+requires = ["poetry-core>=1.0.0,<2.2.0"] ++requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.mypy] diff --git a/srcpkgs/telegram-tg/template b/srcpkgs/telegram-tg/template index 6bf3523f7b2ff9..25ec19a32578bc 100644 --- a/srcpkgs/telegram-tg/template +++ b/srcpkgs/telegram-tg/template @@ -1,7 +1,7 @@ # Template file for 'telegram-tg' pkgname=telegram-tg version=0.22.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-telegram python3-mailcap_fix" From 9e95739892872af6b38ed50baad9f42a53750e73 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:06 -0500 Subject: [PATCH 1011/1664] targetcli-fb: rebuild for Python 3.14 --- srcpkgs/targetcli-fb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/targetcli-fb/template b/srcpkgs/targetcli-fb/template index f1f1027763d7fe..c3ed0319cace05 100644 --- a/srcpkgs/targetcli-fb/template +++ b/srcpkgs/targetcli-fb/template @@ -1,7 +1,7 @@ # Template file for 'targetcli-fb' pkgname=targetcli-fb version=3.0.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="configshell-fb python3-six rtslib-fb python3-parsing python3-gobject" From 62b41a60d9c62dd390d4aae02881d8727fe3d5f8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:06 -0500 Subject: [PATCH 1012/1664] system-config-printer: rebuild for Python 3.14 --- srcpkgs/system-config-printer/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/system-config-printer/template b/srcpkgs/system-config-printer/template index 69b24c07350796..54d77b2ec4369d 100644 --- a/srcpkgs/system-config-printer/template +++ b/srcpkgs/system-config-printer/template @@ -1,7 +1,7 @@ # Template file for 'system-config-printer' pkgname=system-config-printer version=1.5.18 -revision=4 +revision=5 build_style=gnu-configure pycompile_dirs="usr/share/system-config-printer" configure_args="--with-udev-rules" From b14b5ec2f48d0547f42ef604410926b0d32fb340 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:06 -0500 Subject: [PATCH 1013/1664] syncthing-gtk: rebuild for Python 3.14 --- srcpkgs/syncthing-gtk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/syncthing-gtk/template b/srcpkgs/syncthing-gtk/template index 1a55f055902c10..6f3a3f7616994f 100644 --- a/srcpkgs/syncthing-gtk/template +++ b/srcpkgs/syncthing-gtk/template @@ -2,7 +2,7 @@ pkgname=syncthing-gtk reverts="0.14.36_1 0.9.4.4+ds+git20220108+9023143f8b93_1 0.9.4.4+ds+git20220108+9023143f8b93_2" version=0.9.4.4 -revision=9 +revision=10 _debianver="ds+git20221205+12a9702d29ab" build_style=python3-module hostmakedepends="python3-setuptools gettext" From 04f7e1476d20172cc7e05ac8d02b82e53483eed3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:06 -0500 Subject: [PATCH 1014/1664] syncplay: rebuild for Python 3.14 --- srcpkgs/syncplay/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/syncplay/template b/srcpkgs/syncplay/template index 89e152887a663f..359536fdc2daff 100644 --- a/srcpkgs/syncplay/template +++ b/srcpkgs/syncplay/template @@ -1,7 +1,7 @@ # Template file for 'syncplay' pkgname=syncplay version=1.7.4 -revision=2 +revision=3 build_style=gnu-makefile pycompile_dirs="usr/lib/syncplay/syncplay" depends="desktop-file-utils python3-Twisted From b600f83c51e841f3a1adc5779b5b7afccecb35b8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:06 -0500 Subject: [PATCH 1015/1664] synapse: rebuild for Python 3.14 --- srcpkgs/synapse/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template index 317e7c09f72395..6c8b5141ac6494 100644 --- a/srcpkgs/synapse/template +++ b/srcpkgs/synapse/template @@ -1,7 +1,7 @@ # Template file for 'synapse' pkgname=synapse version=1.139.2 -revision=1 +revision=2 build_style=python3-pep517 build_helper=rust make_check_target=tests From e6fc890846d3906885919a38dc481ab45fee440b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:06 -0500 Subject: [PATCH 1016/1664] sumo: rebuild for Python 3.14 --- srcpkgs/sumo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sumo/template b/srcpkgs/sumo/template index 0feb84944d305b..a7797e868aa7ac 100644 --- a/srcpkgs/sumo/template +++ b/srcpkgs/sumo/template @@ -1,7 +1,7 @@ # Template file for 'sumo' pkgname=sumo version=1.12.0 -revision=9 +revision=10 build_style=cmake hostmakedepends="libgdal-tools pkg-config swig python3-setuptools" makedepends="python3-devel ffmpeg6-devel fox-devel gl2ps-devel libgdal-devel From 7b948c3f0817d02eb0d3ad32294c97309761c3f4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:07 -0500 Subject: [PATCH 1017/1664] subversion: rebuild for Python 3.14 --- srcpkgs/subversion/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/subversion/template b/srcpkgs/subversion/template index 399b40d061a18e..1399f5bc17b6a6 100644 --- a/srcpkgs/subversion/template +++ b/srcpkgs/subversion/template @@ -4,7 +4,7 @@ # pkgname=subversion version=1.14.5 -revision=1 +revision=2 build_style=gnu-configure configure_args="--disable-javahl --disable-static --config-cache --with-gnome-keyring --with-editor=vi --disable-mod-activation From 61f885a942f0d565589a038f8a1305222c23e2ad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:07 -0500 Subject: [PATCH 1018/1664] subuser: rebuild for Python 3.14 --- srcpkgs/subuser/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/subuser/template b/srcpkgs/subuser/template index f604a286078fc9..2e40b8be648cbc 100644 --- a/srcpkgs/subuser/template +++ b/srcpkgs/subuser/template @@ -1,7 +1,7 @@ # Template file for 'subuser' pkgname=subuser version=0.6.2 -revision=8 +revision=9 archs="x86_64*" build_style=python3-module hostmakedepends="python3-setuptools" From b130ff7302b07283cc3c9b55f2a7874fdef7f2c6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:07 -0500 Subject: [PATCH 1019/1664] subliminal: rebuild for Python 3.14 --- srcpkgs/subliminal/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/subliminal/template b/srcpkgs/subliminal/template index 4ae4e7de297908..94c5388fd01614 100644 --- a/srcpkgs/subliminal/template +++ b/srcpkgs/subliminal/template @@ -1,7 +1,7 @@ # Template file for 'subliminal' pkgname=subliminal version=2.1.0 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 python3-guessit python3-babelfish python3-enzyme From f3738279c74181e99ce4ba25f0624772a1b92feb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:07 -0500 Subject: [PATCH 1020/1664] streamlink: rebuild for Python 3.14 --- srcpkgs/streamlink/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template index 27d790649d6dcf..dfc1f7c400e463 100644 --- a/srcpkgs/streamlink/template +++ b/srcpkgs/streamlink/template @@ -1,7 +1,7 @@ # Template file for 'streamlink' pkgname=streamlink version=7.5.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel python3-versioningit" depends="python3-lxml python3-pycryptodome python3-pycountry From 26ec1adba9c87c418b0fc2b6867ba556ba40599e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:07 -0500 Subject: [PATCH 1021/1664] stig: rebuild for Python 3.14 --- srcpkgs/stig/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template index 5f152ef6f88419..97b9dfbffadc02 100644 --- a/srcpkgs/stig/template +++ b/srcpkgs/stig/template @@ -1,7 +1,7 @@ # Template file for 'stig' pkgname=stig version=0.14.0a0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-aiohttp python3-aiohttp_socks python3-async-timeout From 564b752d2401b886932c88428ea3560c3ede82a1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:07 -0500 Subject: [PATCH 1022/1664] stcgal: rebuild for Python 3.14 --- srcpkgs/stcgal/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template index 3c9c6361fac8de..c030124c37db99 100644 --- a/srcpkgs/stcgal/template +++ b/srcpkgs/stcgal/template @@ -1,7 +1,7 @@ # Template file for 'stcgal' pkgname=stcgal version=1.6 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pyserial python3-setuptools python3-tqdm" From af86a64037bee5b0e3f4d6d0a393da94d5ecdec6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:08 -0500 Subject: [PATCH 1023/1664] sssd: update to 2.11.1. --- srcpkgs/sssd/patches/configure_cross.patch | 26 ++++++---------------- srcpkgs/sssd/template | 8 +++---- 2 files changed, 11 insertions(+), 23 deletions(-) diff --git a/srcpkgs/sssd/patches/configure_cross.patch b/srcpkgs/sssd/patches/configure_cross.patch index 15874b31c5da54..02d4418942a9bd 100644 --- a/srcpkgs/sssd/patches/configure_cross.patch +++ b/srcpkgs/sssd/patches/configure_cross.patch @@ -7,27 +7,15 @@ Skipping execution is preferred to quitting in this case. --- a/configure +++ b/configure -@@ -20460,10 +20460,7 @@ - - if test "$cross_compiling" = yes - then : -- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 --printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} --as_fn_error $? "cannot run test program while cross compiling --See \`config.log' for more details" "$LINENO" 5; } -+ : - else $as_nop - cat confdefs.h - <<_ACEOF >conftest.$ac_ext - /* end confdefs.h. */ -@@ -22915,10 +22912,7 @@ - LIBS="$LIBS -L${sambalibdir} -lidmap-samba4 -Wl,-rpath ${sambalibdir}" +@@ -23955,10 +23955,7 @@ + LIBS="$LIBS -L${sambalibdir} -l${IDMAP_SAMBA_LIBS} -Wl,-rpath ${sambalibdir}" if test "$cross_compiling" = yes then : -- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 --printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} +- { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 +-printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} -as_fn_error $? "cannot run test program while cross compiling --See \`config.log' for more details" "$LINENO" 5; } +-See 'config.log' for more details" "$LINENO" 5; } + : - else $as_nop - cat confdefs.h - <<_ACEOF >conftest.$ac_ext + else case e in #( + e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ diff --git a/srcpkgs/sssd/template b/srcpkgs/sssd/template index aac23b21782dd7..44aaf9726a362f 100644 --- a/srcpkgs/sssd/template +++ b/srcpkgs/sssd/template @@ -1,7 +1,7 @@ # Template file for 'sssd' pkgname=sssd -version=2.8.2 -revision=5 +version=2.11.1 +revision=1 # upstream explicitly hardcodes to use glibc: # https://github.com/SSSD/sssd/blob/2.8.2/src/util/nss_dl_load.c archs="~*-musl" @@ -16,7 +16,7 @@ hostmakedepends="libxslt pkg-config bind-utils docbook-xsl python3-setuptools" makedepends="pam-devel popt-devel talloc-devel tdb-devel tevent-devel ldb-devel ding-libs-devel libldap-devel mit-krb5-devel c-ares-devel glib-devel libnfsidmap-devel p11-kit-devel jansson-devel python3-devel libcurl-devel - libunistring-devel" + libunistring-devel libcap-devel" make_dirs="/var/lib/sss/db 0700 root root /var/lib/sss/secrets 0700 root root /var/lib/sss/pubconf/krb5.include.d 0700 root root @@ -32,7 +32,7 @@ maintainer="Yuusha Spacewolf " license="GPL-3.0-or-later" homepage="https://sssd.io" distfiles="https://github.com/SSSD/sssd/releases/download/${version}/${pkgname}-${version}.tar.gz" -checksum=ae16447d06bb725bfa9ccb47a9287135015f789ba7414f50cebcb62d52402fef +checksum=80935c9f0cffde6e74b2751398c8677c90d31644d2474dade2d336c56ab76d35 python_version=3 # These modules in /usr/lib/sssd are required by sssd-python3 shlib_provides="libsss_util.so libsss_crypt.so libsss_debug.so" From ca83ec8544d12e14750cecf378a400d80b97b0c8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:08 -0500 Subject: [PATCH 1024/1664] sshuttle: rebuild for Python 3.14 --- srcpkgs/sshuttle/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template index 0560a6e8092926..00dc2a589cc89a 100644 --- a/srcpkgs/sshuttle/template +++ b/srcpkgs/sshuttle/template @@ -1,7 +1,7 @@ # Template file for 'sshuttle' pkgname=sshuttle version=1.1.2 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-Sphinx" depends="python3-psutil" From be7f241a02567f29fa03cca45a730ba2df3fba28 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:08 -0500 Subject: [PATCH 1025/1664] ssh-audit: rebuild for Python 3.14 --- srcpkgs/ssh-audit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ssh-audit/template b/srcpkgs/ssh-audit/template index e51fe27a1d84f4..b6ea2dae77ee94 100644 --- a/srcpkgs/ssh-audit/template +++ b/srcpkgs/ssh-audit/template @@ -1,7 +1,7 @@ # Template file for 'ssh-audit' pkgname=ssh-audit version=3.3.0 -revision=2 +revision=3 build_style="python3-module" hostmakedepends="python3-setuptools" depends="python3" From 0d0cc13404bc2ca0542921fbd8c10c5b9d7e5bb0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:08 -0500 Subject: [PATCH 1026/1664] sqlmap: rebuild for Python 3.14 --- srcpkgs/sqlmap/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sqlmap/template b/srcpkgs/sqlmap/template index 06ff7b232fddab..c9b376b51c102b 100644 --- a/srcpkgs/sqlmap/template +++ b/srcpkgs/sqlmap/template @@ -1,7 +1,7 @@ # Template file for 'sqlmap' pkgname=sqlmap version=1.9.11 -revision=1 +revision=2 pycompile_dirs="usr/libexec/sqlmap" depends="python3" short_desc="Automatic SQL injection and database takeover tool" From 1a34e5986193de3d2ed5e55f77b7bfea31ee0436 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:08 -0500 Subject: [PATCH 1027/1664] speedtest-cli: rebuild for Python 3.14 --- srcpkgs/speedtest-cli/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/speedtest-cli/template b/srcpkgs/speedtest-cli/template index 025cc24bbecf43..3c97340b291cb3 100644 --- a/srcpkgs/speedtest-cli/template +++ b/srcpkgs/speedtest-cli/template @@ -1,7 +1,7 @@ # Template file for 'speedtest-cli' pkgname=speedtest-cli version=2.1.3 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 01fca34dd85500b30e707d11590ba60f579f498b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:08 -0500 Subject: [PATCH 1028/1664] soundconverter: rebuild for Python 3.14 --- srcpkgs/soundconverter/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/soundconverter/template b/srcpkgs/soundconverter/template index f1147993d4686e..f342a60f9d366a 100644 --- a/srcpkgs/soundconverter/template +++ b/srcpkgs/soundconverter/template @@ -1,7 +1,7 @@ # Template file for 'soundconverter' pkgname=soundconverter version=4.0.3 -revision=3 +revision=4 build_style=python3-module pycompile_dirs="/usr/lib/${pkgname}/python/${pkgname}" hostmakedepends="glib intltool pkg-config python3-gobject python3-distutils-extra" From 9550bf4c5fe672e89718081c403cab480ccba92b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:09 -0500 Subject: [PATCH 1029/1664] sonata: rebuild for Python 3.14 --- srcpkgs/sonata/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template index 67b74f44fc0946..1859767bfdb843 100644 --- a/srcpkgs/sonata/template +++ b/srcpkgs/sonata/template @@ -3,7 +3,7 @@ pkgname=sonata # allow updating to 1.7.0, xbps considers 1.7a1 and 1.7b1 to be newer than 1.7.0 reverts="1.7a2_1 1.7a2_2 1.7a2_3 1.7b1_1 1.7b1_2 1.7b1_3 1.7b1_4" version=1.7.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="gettext python3-setuptools" depends="python3-mpd2 python3-gobject gtk+3" From cbdf7d7cbadb8722e2deb986369020789c45754f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:09 -0500 Subject: [PATCH 1030/1664] sigil: rebuild for Python 3.14 --- srcpkgs/sigil/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sigil/template b/srcpkgs/sigil/template index 985474db813035..65822c8cbdd12c 100644 --- a/srcpkgs/sigil/template +++ b/srcpkgs/sigil/template @@ -1,7 +1,7 @@ # Template file for 'sigil' pkgname=sigil version=2.4.0 -revision=2 +revision=3 build_style=cmake configure_args="-DUSE_SYSTEM_LIBS=ON" hostmakedepends="pkg-config qt6-tools" From 20c8e04b7df973653935e57fb63bb6a85c901323 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:09 -0500 Subject: [PATCH 1031/1664] showtime: rebuild for Python 3.14 --- srcpkgs/showtime/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/showtime/template b/srcpkgs/showtime/template index 6d676900af4ea0..97e069a8dfda29 100644 --- a/srcpkgs/showtime/template +++ b/srcpkgs/showtime/template @@ -1,7 +1,7 @@ # Template file for 'showtime' pkgname=showtime version=48.1 -revision=1 +revision=2 build_style=meson hostmakedepends="blueprint-compiler desktop-file-utils gettext glib-devel gtk4-update-icon-cache pkg-config" From f3b732d14baf6ddfb7a0f0e469bfe5355fa3356d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:09 -0500 Subject: [PATCH 1032/1664] setzer: rebuild for Python 3.14 --- srcpkgs/setzer/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/setzer/template b/srcpkgs/setzer/template index fdcb0c9fdff980..d7e5a95170e593 100644 --- a/srcpkgs/setzer/template +++ b/srcpkgs/setzer/template @@ -1,7 +1,7 @@ # Template file for 'setzer' pkgname=setzer version=65 -revision=2 +revision=3 build_style=meson hostmakedepends="gettext" depends="poppler-glib virtual?tex gspell python3-gobject gtksourceview5 python3-pexpect From 962bf7d4695998a92acbc3c9cf7e8eea15d5fb2b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:09 -0500 Subject: [PATCH 1033/1664] setconf: rebuild for Python 3.14 --- srcpkgs/setconf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template index 92d57e4fcde2b8..b0592a31f7fe13 100644 --- a/srcpkgs/setconf/template +++ b/srcpkgs/setconf/template @@ -1,7 +1,7 @@ # Template file for 'setconf' pkgname=setconf version=0.7.7 -revision=6 +revision=7 build_style=python3-module pycompile_module="setconf.py" hostmakedepends="python3-setuptools" From 36072298b393a1ce36b0033947cad6e146d8cc40 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:09 -0500 Subject: [PATCH 1034/1664] seafile-libclient: rebuild for Python 3.14 --- srcpkgs/seafile-libclient/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/seafile-libclient/template b/srcpkgs/seafile-libclient/template index ef20488ee6a481..019ab222268d8c 100644 --- a/srcpkgs/seafile-libclient/template +++ b/srcpkgs/seafile-libclient/template @@ -1,7 +1,7 @@ # Template file for 'seafile-libclient' pkgname=seafile-libclient version=8.0.10 -revision=4 +revision=5 _distname="${pkgname/-libclient/}" build_style=gnu-configure configure_args="PYTHON=python3 --disable-static" From 133c0969c2e203b7e2cd510d49e8e8df240f3651 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:09 -0500 Subject: [PATCH 1035/1664] scribus: rebuild for Python 3.14 --- srcpkgs/scribus/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/scribus/template b/srcpkgs/scribus/template index 2a03bfcdbd383c..fae484d89dd9b0 100644 --- a/srcpkgs/scribus/template +++ b/srcpkgs/scribus/template @@ -1,7 +1,7 @@ # Template file for 'scribus' pkgname=scribus version=1.6.4 -revision=3 +revision=4 build_style=cmake configure_args="-DWANT_DISTROBUILD=ON -DQT_PREFIX=${XBPS_CROSS_BASE}/usr -DWANT_GRAPHICSMAGICK=1 -DWANT_CPP20=ON" From 36119d095e5adddaadd4c6343317bcf60cc68e3b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:10 -0500 Subject: [PATCH 1036/1664] screenplain: rebuild for Python 3.14 --- srcpkgs/screenplain/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template index 46f50972f14343..387ed200685618 100644 --- a/srcpkgs/screenplain/template +++ b/srcpkgs/screenplain/template @@ -1,7 +1,7 @@ # Template file for 'screenplain' pkgname=screenplain version=0.10.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-reportlab" From ad555e69f90e6620e048899f19cfa47361aeb0ad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:10 -0500 Subject: [PATCH 1037/1664] screenkey: rebuild for Python 3.14 --- srcpkgs/screenkey/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/screenkey/template b/srcpkgs/screenkey/template index ed697b7ac271f3..f3519201cb8819 100644 --- a/srcpkgs/screenkey/template +++ b/srcpkgs/screenkey/template @@ -1,7 +1,7 @@ # Template file for 'screenkey' pkgname=screenkey version=1.5 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools python3-Babel" depends="gtk+3 libX11 python3-gobject python3-cairo python3-dbus" From aa86351759c9e4da969e8b787218e717d44e57aa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:10 -0500 Subject: [PATCH 1038/1664] scapy: rebuild for Python 3.14 --- srcpkgs/scapy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template index ffb6dd3293ec45..380fb7ff5b2920 100644 --- a/srcpkgs/scapy/template +++ b/srcpkgs/scapy/template @@ -1,7 +1,7 @@ # Template file for 'scapy' pkgname=scapy version=2.5.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="tcpdump python3" From 4dbe0bb6d0a64d396e554cea227928bbdbf8922e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:10 -0500 Subject: [PATCH 1039/1664] sc-controller: rebuild for Python 3.14 --- srcpkgs/sc-controller/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sc-controller/template b/srcpkgs/sc-controller/template index 7559b2580818a7..e2c25e246473fe 100644 --- a/srcpkgs/sc-controller/template +++ b/srcpkgs/sc-controller/template @@ -1,7 +1,7 @@ # Template file for 'sc-controller' pkgname=sc-controller version=0.4.8.10 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel zlib-devel" From 9fd891f68f090211a2bef7b0d6a1e5ba8c157f57 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:10 -0500 Subject: [PATCH 1040/1664] salt: rebuild for Python 3.14 --- srcpkgs/salt/patches/68327.patch | 42 ++++++++++++++++++++++++++++++++ srcpkgs/salt/template | 2 +- 2 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/salt/patches/68327.patch diff --git a/srcpkgs/salt/patches/68327.patch b/srcpkgs/salt/patches/68327.patch new file mode 100644 index 00000000000000..f11db592d07dd2 --- /dev/null +++ b/srcpkgs/salt/patches/68327.patch @@ -0,0 +1,42 @@ +From 10041953dd0ad4938836496e72219f335c6d8ca4 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= + +Date: Sun, 14 Sep 2025 04:08:44 +0200 +Subject: [PATCH] Prepare multiprocessing handling for Python 3.14 + +Python 3.14 changed multiprocessing method from 'fork' to 'forkserver' +on Linux too: +https://github.com/python/cpython/issues/84559 + +This leads to issue similar to when Python 3.8 changed it on Mac OS: +https://github.com/saltstack/salt/issues/57742 + +Change the condition to check for != 'fork' instead of == 'spawn'. +--- + changelog/68148.changed.md | 1 + + salt/utils/platform.py | 8 ++++++-- + 2 files changed, 7 insertions(+), 2 deletions(-) + +diff --git a/salt/utils/platform.py b/salt/utils/platform.py +index 59a04b451bcd..1ed145ab1e3d 100644 +--- a/salt/utils/platform.py ++++ b/salt/utils/platform.py +@@ -237,12 +237,16 @@ def is_aarch64(): + + def spawning_platform(): + """ +- Returns True if multiprocessing.get_start_method(allow_none=False) returns "spawn" ++ Returns True if multiprocessing.get_start_method(allow_none=False) != "fork" ++ ("spawn" or "forkserver") + + This is the default for Windows Python >= 3.4 and macOS on Python >= 3.8. + Salt, however, will force macOS to spawning by default on all python versions ++ Starting with Python 3.14, Linux also defaults to not "fork", but it uses ++ (new) "forkserver" instead of "spawn". Functionally, it's very similar as ++ far as Salt is concerned (process state is not inherited). + """ +- return multiprocessing.get_start_method(allow_none=False) == "spawn" ++ return multiprocessing.get_start_method(allow_none=False) != "fork" + + + def get_machine_identifier(): diff --git a/srcpkgs/salt/template b/srcpkgs/salt/template index 8a07a4986d186a..5f837c18e8f7d3 100644 --- a/srcpkgs/salt/template +++ b/srcpkgs/salt/template @@ -1,7 +1,7 @@ # Template file for 'salt' pkgname=salt version=3007.9 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="dmidecode pciutils python3-Jinja2 python3-M2Crypto python3-MarkupSafe From a3716b6ad2950ecbedbceff4106135fa3af89d2d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:10 -0500 Subject: [PATCH 1041/1664] sagemath-giac: rebuild for Python 3.14 --- srcpkgs/sagemath-giac/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sagemath-giac/template b/srcpkgs/sagemath-giac/template index c1ca4a89869851..612915f8ef312c 100644 --- a/srcpkgs/sagemath-giac/template +++ b/srcpkgs/sagemath-giac/template @@ -1,7 +1,7 @@ # Template file for 'sagemath-giac' pkgname=sagemath-giac version=0.1.3 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-meson-python python3-Cython" makedepends="python3-cysignals python3-gmpy2 sagemath libmpc-devel giac-devel" From e1d24a36d663ecb0e92c2a4f3485c54445e158b6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:11 -0500 Subject: [PATCH 1042/1664] safeeyes: rebuild for Python 3.14 --- srcpkgs/safeeyes/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template index 8f3e4fd3dc33de..fc72e5e34c4dc6 100644 --- a/srcpkgs/safeeyes/template +++ b/srcpkgs/safeeyes/template @@ -1,7 +1,7 @@ # Template file for 'safeeyes' pkgname=safeeyes version=2.1.6 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools python3-devel pkg-config" makedepends="python3-devel cairo-devel libgirepository-devel" From a2435ddfd18a88d965fca78fe000e759f80aa381 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:11 -0500 Subject: [PATCH 1043/1664] sabnzbd: rebuild for Python 3.14 --- srcpkgs/sabnzbd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sabnzbd/template b/srcpkgs/sabnzbd/template index 6d7fd017d828af..44d0a4041de49c 100644 --- a/srcpkgs/sabnzbd/template +++ b/srcpkgs/sabnzbd/template @@ -1,7 +1,7 @@ # Template file for 'sabnzbd' pkgname=sabnzbd version=4.4.1 -revision=1 +revision=2 pycompile_dirs="/usr/share/sabnzbd" hostmakedepends="python3 gettext" depends="par2cmdline python3-cheetah3 python3-cryptography From ff095df5e7f6ef8e0c2b886ba2261a56e41ee7a7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:11 -0500 Subject: [PATCH 1044/1664] s3cmd: rebuild for Python 3.14 --- srcpkgs/s3cmd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/s3cmd/template b/srcpkgs/s3cmd/template index 8699f41d03104d..19b4478b69276c 100644 --- a/srcpkgs/s3cmd/template +++ b/srcpkgs/s3cmd/template @@ -1,7 +1,7 @@ # Template file for 's3cmd' pkgname=s3cmd version=2.4.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-dateutil" From bb7fc3dcb68713e7b153599f03f532d267ea88f2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:11 -0500 Subject: [PATCH 1045/1664] ruff: rebuild for Python 3.14 --- srcpkgs/ruff/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ruff/template b/srcpkgs/ruff/template index 28d9bc0f857a6c..e9a7146663434c 100644 --- a/srcpkgs/ruff/template +++ b/srcpkgs/ruff/template @@ -1,7 +1,7 @@ # Template file for 'ruff' pkgname=ruff version=0.14.5 -revision=1 +revision=2 build_style=python3-pep517 build_helper="rust qemu" hostmakedepends="maturin cargo pkg-config" From ee30882441178591e503a434b2eeb868c7b50d2c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:11 -0500 Subject: [PATCH 1046/1664] rubber: rebuild for Python 3.14 --- srcpkgs/rubber/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template index 1bd86faae66cb3..7554c9b781f19d 100644 --- a/srcpkgs/rubber/template +++ b/srcpkgs/rubber/template @@ -1,7 +1,7 @@ # Template file for 'rubber' pkgname=rubber version=1.5.1 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3 python3-setuptools" depends="python3 virtual?tex" From bc37e5a4406700b7c163efbcc9c4cd3e085bbe5c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:11 -0500 Subject: [PATCH 1047/1664] root: rebuild for Python 3.14 --- srcpkgs/root/patches/lseek-fix.patch | 84 ++++++++++++++++++++++++++++ srcpkgs/root/template | 2 +- 2 files changed, 85 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/root/patches/lseek-fix.patch diff --git a/srcpkgs/root/patches/lseek-fix.patch b/srcpkgs/root/patches/lseek-fix.patch new file mode 100644 index 00000000000000..894e1a7360316b --- /dev/null +++ b/srcpkgs/root/patches/lseek-fix.patch @@ -0,0 +1,84 @@ +From 5cd554303ead0f8891eee3cd6d25cb07f5a7bf67 Mon Sep 17 00:00:00 2001 +From: Khem Raj +Date: Sat, 4 Feb 2023 13:54:41 -0800 +Subject: [PATCH] cmake: Enable 64bit off_t on 32bit glibc systems + +Pass -D_FILE_OFFSET_BITS=64 to compiler flags on 32bit glibc based +systems. This will make sure that 64bit versions of LFS functions are +used e.g. seek will behave same as lseek64. Also revert [1] partially +because this added a cmake test to detect lseek64 but then forgot to +pass the needed macro to actual compile, this test was incomplete too +since libc implementations like musl has 64bit off_t by default on 32bit +systems and does not bundle[2] -D_LARGEFILE64_SOURCE under -D_GNU_SOURCE +like glibc, which means the compile now fails on musl because the cmake +check passes but we do not have _LARGEFILE64_SOURCE defined. Using the +*64 function was transitional anyways so use -D_FILE_OFFSET_BITS=64 +instead + +[1] https://github.com/llvm/llvm-project/commit/8db7e5e4eed4c4e697dc3164f2c9351d8c3e942b +[2] https://git.musl-libc.org/cgit/musl/commit/?id=25e6fee27f4a293728dd15b659170e7b9c7db9bc + +Reviewed By: MaskRay + +Differential Revision: https://reviews.llvm.org/D139752 +--- + llvm/cmake/config-ix.cmake | 8 +++++--- + llvm/include/llvm/Config/config.h.cmake | 3 --- + llvm/lib/interpreter/llvm-project/Support/raw_ostream.cpp | 2 -- + llvm/utils/gn/secondary/llvm/include/llvm/Config/BUILD.gn | 2 -- + utils/bazel/llvm_configs/config.h.cmake | 3 --- + 5 files changed, 5 insertions(+), 13 deletions(-) + +diff --git a/interpreter/llvm-project/llvm/cmake/config-ix.cmake b/interpreter/llvm-project/llvm/cmake/config-ix.cmake +index f959cd1f88484..b78c1b34ab8b9 100644 +--- a/interpreter/llvm-project/llvm/cmake/config-ix.cmake ++++ b/interpreter/llvm-project/llvm/cmake/config-ix.cmake +@@ -284,9 +284,6 @@ check_symbol_exists(futimes sys/time.h HAVE_FUTIMES) + if( HAVE_SIGNAL_H AND NOT LLVM_USE_SANITIZER MATCHES ".*Address.*" AND NOT APPLE ) + check_symbol_exists(sigaltstack signal.h HAVE_SIGALTSTACK) + endif() +-set(CMAKE_REQUIRED_DEFINITIONS "-D_LARGEFILE64_SOURCE") +-check_symbol_exists(lseek64 "sys/types.h;unistd.h" HAVE_LSEEK64) +-set(CMAKE_REQUIRED_DEFINITIONS "") + check_symbol_exists(mallctl malloc_np.h HAVE_MALLCTL) + check_symbol_exists(mallinfo malloc.h HAVE_MALLINFO) + check_symbol_exists(mallinfo2 malloc.h HAVE_MALLINFO2) +@@ -340,6 +337,11 @@ check_symbol_exists(__GLIBC__ stdio.h LLVM_USING_GLIBC) + if( LLVM_USING_GLIBC ) + add_compile_definitions(_GNU_SOURCE) + list(APPEND CMAKE_REQUIRED_DEFINITIONS "-D_GNU_SOURCE") ++# enable 64bit off_t on 32bit systems using glibc ++ if (CMAKE_SIZEOF_VOID_P EQUAL 4) ++ add_compile_definitions(_FILE_OFFSET_BITS=64) ++ list(APPEND CMAKE_REQUIRED_DEFINITIONS "-D_FILE_OFFSET_BITS=64") ++ endif() + endif() + + # This check requires _GNU_SOURCE. +diff --git a/interpreter/llvm-project/llvm/include/llvm/Config/config.h.cmake b/interpreter/llvm-project/llvm/include/llvm/Config/config.h.cmake +index 3543e6fc29944..29ac536b4c31b 100644 +--- a/interpreter/llvm-project/llvm/include/llvm/Config/config.h.cmake ++++ b/interpreter/llvm-project/llvm/include/llvm/Config/config.h.cmake +@@ -128,9 +128,6 @@ + /* Define to 1 if you have the header file. */ + #cmakedefine HAVE_LINK_H ${HAVE_LINK_H} + +-/* Define to 1 if you have the `lseek64' function. */ +-#cmakedefine HAVE_LSEEK64 ${HAVE_LSEEK64} +- + /* Define to 1 if you have the header file. */ + #cmakedefine HAVE_MACH_MACH_H ${HAVE_MACH_MACH_H} + +diff --git a/interpreter/llvm-project/llvm/lib/interpreter/llvm-project/Support/raw_ostream.cpp b/llvm/lib/Support/raw_ostream.cpp +index 92b15f14c62fd..8943c4478c7f2 100644 +--- a/interpreter/llvm-project/llvm/lib/interpreter/llvm-project/Support/raw_ostream.cpp ++++ b/interpreter/llvm-project/llvm/lib/Support/raw_ostream.cpp +@@ -802,8 +802,6 @@ uint64_t raw_fd_ostream::seek(uint64_t off) { + flush(); + #ifdef _WIN32 + pos = ::_lseeki64(FD, off, SEEK_SET); +-#elif defined(HAVE_LSEEK64) +- pos = ::lseek64(FD, off, SEEK_SET); + #else + pos = ::lseek(FD, off, SEEK_SET); + #endif diff --git a/srcpkgs/root/template b/srcpkgs/root/template index 81dc77f668340e..d843711cfd20d0 100644 --- a/srcpkgs/root/template +++ b/srcpkgs/root/template @@ -1,7 +1,7 @@ # Template file for 'root' pkgname=root version=6.30.06 -revision=2 +revision=3 # Only i686 and x86_64 seem to be officially supported archs="i686* x86_64*" build_style=cmake From 8f042ef0ca7dec37f31f24c96ba2908c20bef15d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:11 -0500 Subject: [PATCH 1048/1664] rofimoji: rebuild for Python 3.14 --- srcpkgs/rofimoji/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/rofimoji/template b/srcpkgs/rofimoji/template index 7d604f61fdedc8..dd32d43cd1ff96 100644 --- a/srcpkgs/rofimoji/template +++ b/srcpkgs/rofimoji/template @@ -1,7 +1,7 @@ # Template file for 'rofimoji' pkgname=rofimoji version=6.7.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3-ConfigArgParse" From cb473e98a270c4a0ddfe9e9bc76aa0cfc13bf4dd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:12 -0500 Subject: [PATCH 1049/1664] rofi-rbw: rebuild for Python 3.14 --- srcpkgs/rofi-rbw/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/rofi-rbw/template b/srcpkgs/rofi-rbw/template index 415e8a58abf827..37aefef1b224c4 100644 --- a/srcpkgs/rofi-rbw/template +++ b/srcpkgs/rofi-rbw/template @@ -1,7 +1,7 @@ # Template file for 'rofi-rbw' pkgname=rofi-rbw version=1.5.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3 python3-ConfigArgParse rbw" From 6c5a527ae8d9aa370b02a29ff6b34b0176a9a4ae Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:12 -0500 Subject: [PATCH 1050/1664] rmlint: rebuild for Python 3.14 --- srcpkgs/rmlint/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/rmlint/template b/srcpkgs/rmlint/template index f05a994628ce43..6e1cea10d566e9 100644 --- a/srcpkgs/rmlint/template +++ b/srcpkgs/rmlint/template @@ -1,7 +1,7 @@ # Template file for 'rmlint' pkgname=rmlint version=2.10.3 -revision=1 +revision=2 build_style=scons make_build_args="VERBOSE=1" hostmakedepends="pkg-config python3-Sphinx python3-setuptools glib-devel" From b3e64e7df174cc25b5a7de5b0f709d2a6c3f3ce5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:12 -0500 Subject: [PATCH 1051/1664] ripe-atlas-tools: rebuild for Python 3.14 --- srcpkgs/ripe-atlas-tools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ripe-atlas-tools/template b/srcpkgs/ripe-atlas-tools/template index 0ad19ff4ac1dd5..b29ae78d9daac7 100644 --- a/srcpkgs/ripe-atlas-tools/template +++ b/srcpkgs/ripe-atlas-tools/template @@ -1,7 +1,7 @@ # Template file for 'ripe-atlas-tools' pkgname=ripe-atlas-tools version=3.0.2 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-tzlocal python3-yaml python3-dateutil python3-openssl From 56f759697a12edce4bad64fae7c541048cf5f79d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:12 -0500 Subject: [PATCH 1052/1664] rhythmbox: rebuild for Python 3.14 --- srcpkgs/rhythmbox/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/rhythmbox/template b/srcpkgs/rhythmbox/template index 8b5bc74f4995ea..941a475c61b8c6 100644 --- a/srcpkgs/rhythmbox/template +++ b/srcpkgs/rhythmbox/template @@ -1,7 +1,7 @@ # Template file for 'rhythmbox' pkgname=rhythmbox version=3.4.8 -revision=1 +revision=2 build_style=meson build_helper=gir configure_args="-Dgudev=enabled $(vopt_feature gir plugins_vala) -Ddaap=enabled" From 94d584a751a1ec76ca005c681879915262cc049f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:12 -0500 Subject: [PATCH 1053/1664] reuse: rebuild for Python 3.14 --- srcpkgs/reuse/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/reuse/template b/srcpkgs/reuse/template index 2fde7e12c89235..19cbf64f930ee4 100644 --- a/srcpkgs/reuse/template +++ b/srcpkgs/reuse/template @@ -1,7 +1,7 @@ # Template file for 'reuse' pkgname=reuse version=3.0.1 -revision=2 +revision=3 build_style=python3-pep517 # These tests pass on local machine but don't pass in CI. make_check_args="--deselect tests/test_lint.py::test_lint_read_errors From d133f023a62332070b710143d7436057e0eedb25 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:12 -0500 Subject: [PATCH 1054/1664] renderdoc: rebuild for Python 3.14 --- srcpkgs/renderdoc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/renderdoc/template b/srcpkgs/renderdoc/template index f40eb3fb87938e..1e4c9ee198bdee 100644 --- a/srcpkgs/renderdoc/template +++ b/srcpkgs/renderdoc/template @@ -1,7 +1,7 @@ # Template file for 'renderdoc' pkgname=renderdoc version=1.21 -revision=5 +revision=6 _plt_ver=dbadbe14d601913b81a4a7533b284b6ccd7351d8 build_style=cmake configure_args="-DENABLE_GL=ON -DENABLE_GLES=ON -DENABLE_QRENDERDOC=ON From 36d173507d4696db40acf06d5053375e45b2d29f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:13 -0500 Subject: [PATCH 1055/1664] remmina: rebuild for Python 3.14 --- srcpkgs/remmina/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/remmina/template b/srcpkgs/remmina/template index a305b2e7369bbb..3490c740726eb7 100644 --- a/srcpkgs/remmina/template +++ b/srcpkgs/remmina/template @@ -1,7 +1,7 @@ # Template file for 'remmina' pkgname=remmina version=1.4.39 -revision=3 +revision=4 build_style=cmake configure_args="-DCMAKE_USE_PTHREADS_INIT=ON -DWITH_KF6WALLET=on" hostmakedepends="glib-devel intltool pkg-config shared-mime-info freerdp From 73b72527e7c06c21dbf35996798eb2c41861286b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:13 -0500 Subject: [PATCH 1056/1664] remhind: rebuild for Python 3.14 --- srcpkgs/remhind/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/remhind/template b/srcpkgs/remhind/template index f6518c35e37784..af56cdcc31a57b 100644 --- a/srcpkgs/remhind/template +++ b/srcpkgs/remhind/template @@ -1,7 +1,7 @@ # Template file for 'remhind' pkgname=remhind version=0.1.1 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools python3-gobject-devel python3-cairo-devel" depends="python3-icalendar python3-dateutil python3-gobject python3-toml From c40e6a3f86dda8783c8e8cf03f707df4ca1cffd6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:13 -0500 Subject: [PATCH 1057/1664] redshift: rebuild for Python 3.14 --- srcpkgs/redshift/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/redshift/template b/srcpkgs/redshift/template index 5a9a9cabe55ac1..063851159213ac 100644 --- a/srcpkgs/redshift/template +++ b/srcpkgs/redshift/template @@ -1,7 +1,7 @@ # Template file for 'redshift' pkgname=redshift version=1.12 -revision=9 +revision=10 build_style=gnu-configure configure_args="--enable-gui --enable-geoclue2" hostmakedepends="gettext-devel intltool pkg-config python3-devel" From cb6a189d04d04908a3ed29bcd1394710ba07a8a9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:13 -0500 Subject: [PATCH 1058/1664] rednotebook: rebuild for Python 3.14 --- srcpkgs/rednotebook/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template index 8283688e9d7cf1..873607208f198e 100644 --- a/srcpkgs/rednotebook/template +++ b/srcpkgs/rednotebook/template @@ -1,7 +1,7 @@ # Template file for 'rednotebook' pkgname=rednotebook version=2.35 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools gettext" depends="desktop-file-utils gtksourceview hicolor-icon-theme python3-enchant From a2edcd1b3fcad07c5503f6b1c3bd3826833bdda3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:13 -0500 Subject: [PATCH 1059/1664] recoll: rebuild for Python 3.14 --- srcpkgs/recoll/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/recoll/template b/srcpkgs/recoll/template index 83ec7fc677eca9..723f52318db426 100644 --- a/srcpkgs/recoll/template +++ b/srcpkgs/recoll/template @@ -1,7 +1,7 @@ # Template file for 'recoll' pkgname=recoll version=1.40.4 -revision=2 +revision=3 build_style=meson build_helper="qmake" configure_args="-Drecollq=true -Dpython-chm=false -Dx11mon=false From b5b306056d68bf72881784b9664584ac485e6769 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:13 -0500 Subject: [PATCH 1060/1664] rdiff-backup: rebuild for Python 3.14 --- srcpkgs/rdiff-backup/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/rdiff-backup/template b/srcpkgs/rdiff-backup/template index b1ab0434d88abb..4d155f698763be 100644 --- a/srcpkgs/rdiff-backup/template +++ b/srcpkgs/rdiff-backup/template @@ -1,7 +1,7 @@ # Template file for 'rdiff-backup' pkgname=rdiff-backup version=2.2.6 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3 python3-setuptools_scm python3-pip" makedepends="python3-devel librsync-devel" From 894388200b55b674abceed6922a92541a182ab3d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:13 -0500 Subject: [PATCH 1061/1664] ranger: rebuild for Python 3.14 --- srcpkgs/ranger/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template index 00bf39244f77d6..882bf1cd2991b2 100644 --- a/srcpkgs/ranger/template +++ b/srcpkgs/ranger/template @@ -1,7 +1,7 @@ # Template file for 'ranger' pkgname=ranger version=1.9.4 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3 python3-setuptools" makedepends="python3-devel" From 101c1604830800c9fe3b26ab41b17b0778a0a27d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:14 -0500 Subject: [PATCH 1062/1664] qytdl: rebuild for Python 3.14 --- srcpkgs/qytdl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qytdl/template b/srcpkgs/qytdl/template index 1e4185cd75bb82..10abbb133d749b 100644 --- a/srcpkgs/qytdl/template +++ b/srcpkgs/qytdl/template @@ -1,7 +1,7 @@ # Template file for 'qytdl' pkgname=qytdl version=1.6 -revision=4 +revision=5 pycompile_dirs="usr/share/qytdl/src" depends="desktop-file-utils python3-PyQt5 yt-dlp" short_desc="Simple Qt (PyQt5) frontend to Youtube-DL" From 9baaff1fe2a83f5dafc451d2112a9c9734aa31e7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:14 -0500 Subject: [PATCH 1063/1664] qutebrowser: update to 3.6.3. --- srcpkgs/qutebrowser/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template index ddd75b82e37b2f..3aca14d0d6ccee 100644 --- a/srcpkgs/qutebrowser/template +++ b/srcpkgs/qutebrowser/template @@ -1,6 +1,6 @@ # Template file for 'qutebrowser' pkgname=qutebrowser -version=3.6.1 +version=3.6.3 revision=1 build_style=python3-module hostmakedepends="python3-setuptools asciidoc" @@ -11,7 +11,7 @@ license="GPL-3.0-or-later" homepage="https://qutebrowser.org/" changelog="https://raw.githubusercontent.com/qutebrowser/qutebrowser/master/doc/changelog.asciidoc" distfiles="https://github.com/qutebrowser/qutebrowser/releases/download/v${version}/qutebrowser-${version}.tar.gz" -checksum=f5bdf550f2739ac1825e608021bfbc5cc1232a7bc52043b4328cd696e1d86d90 +checksum=6dbe2889e61ebd63003ae40b319e1e81f306e924e8316c6795ae4884021c2faf nostrip=yes # testing requires unpackaged plugins: # pytest-bdd, pytest-benchmark, pytest-instafail, pytest-rerunfailures From eca0e7fe4f6ad8709ab816e6a3cd7b5768b4392a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:14 -0500 Subject: [PATCH 1064/1664] quodlibet: rebuild for Python 3.14 --- srcpkgs/quodlibet/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template index 8b399b49527231..2bc47ebeb3a8d2 100644 --- a/srcpkgs/quodlibet/template +++ b/srcpkgs/quodlibet/template @@ -1,7 +1,7 @@ # Template file for 'quodlibet' pkgname=quodlibet version=4.6.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="intltool python3-devel python3-setuptools" depends="desktop-file-utils gst-plugins-bad1 gst-plugins-base1 gst-plugins-good1 From 51780564e4189024eca83165c6ccb5649f9feec0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:14 -0500 Subject: [PATCH 1065/1664] qomui: rebuild for Python 3.14 --- srcpkgs/qomui/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template index 883c1dd7615d55..ad6b005d2194d1 100644 --- a/srcpkgs/qomui/template +++ b/srcpkgs/qomui/template @@ -1,7 +1,7 @@ # Template file for 'qomui' pkgname=qomui version=0.8.2 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-PyQt5 python3-dbus python3-psutil From 07e4de507f02532efba961b4b145aae1f8312331 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:14 -0500 Subject: [PATCH 1066/1664] qmk: rebuild for Python 3.14 --- srcpkgs/qmk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qmk/template b/srcpkgs/qmk/template index 1c2ea0b126a33a..63e952d417ee97 100644 --- a/srcpkgs/qmk/template +++ b/srcpkgs/qmk/template @@ -1,7 +1,7 @@ # Template file for 'qmk' pkgname=qmk version=1.1.6 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel" # This includes the requirements from requirements.txt in the qmk_firmware From e55ee7515945dbc7876431ce97120b1aad6e9006 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:14 -0500 Subject: [PATCH 1067/1664] qgis: rebuild for Python 3.14 --- srcpkgs/qgis/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qgis/template b/srcpkgs/qgis/template index 7318401332cb99..f0816231092a0a 100644 --- a/srcpkgs/qgis/template +++ b/srcpkgs/qgis/template @@ -1,7 +1,7 @@ # Template file for 'qgis' pkgname=qgis version=3.44.4 -revision=3 +revision=4 build_style=cmake configure_args="-DENABLE_TESTS=OFF -DWITH_3D=True -DWITH_PDAL=True -DBUILD_WITH_QT6=ON -DWITH_PDF4QT=ON -DWITH_QTWEBKIT=NO From 300474dff2a9978c4f4a7e526baaf396235bb33d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:15 -0500 Subject: [PATCH 1068/1664] python3-zope.security: rebuild for Python 3.14 --- srcpkgs/python3-zope.security/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zope.security/template b/srcpkgs/python3-zope.security/template index 88cab87359f775..2077b1c02729fe 100644 --- a/srcpkgs/python3-zope.security/template +++ b/srcpkgs/python3-zope.security/template @@ -1,7 +1,7 @@ # Template file for 'python3-zope.security' pkgname=python3-zope.security version=7.3 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools python3-zope.proxy" makedepends="python3-devel" From 0b9a472cfe7b1b6d5bca878fcc7d930f2312df8b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:15 -0500 Subject: [PATCH 1069/1664] python3-zope.copy: rebuild for Python 3.14 --- srcpkgs/python3-zope.copy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zope.copy/template b/srcpkgs/python3-zope.copy/template index 0c737c5a8e6361..10125aea4d1ca9 100644 --- a/srcpkgs/python3-zope.copy/template +++ b/srcpkgs/python3-zope.copy/template @@ -1,7 +1,7 @@ # Template file for 'python3-zope.copy' pkgname=python3-zope.copy version=4.2 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 4e010791b9c3a0e6060a0e40083d9e97f799fc13 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:15 -0500 Subject: [PATCH 1070/1664] python3-zope.cachedescriptors: rebuild for Python 3.14 --- srcpkgs/python3-zope.cachedescriptors/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zope.cachedescriptors/template b/srcpkgs/python3-zope.cachedescriptors/template index f36b77925dd1c8..7a60d6327bbd58 100644 --- a/srcpkgs/python3-zope.cachedescriptors/template +++ b/srcpkgs/python3-zope.cachedescriptors/template @@ -1,7 +1,7 @@ # Template file for 'python3-zope.cachedescriptors' pkgname=python3-zope.cachedescriptors version=4.4 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 python3-setuptools" From e628e466cf760127e28da870feadea71dcf83867 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:15 -0500 Subject: [PATCH 1071/1664] python3-zipstream: rebuild for Python 3.14 --- srcpkgs/python3-zipstream/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zipstream/template b/srcpkgs/python3-zipstream/template index 5042219010f235..bbd4582b17b5e7 100644 --- a/srcpkgs/python3-zipstream/template +++ b/srcpkgs/python3-zipstream/template @@ -1,7 +1,7 @@ # Template file for 'python3-zipstream' pkgname=python3-zipstream version=1.1.4 -revision=10 +revision=11 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From ab204d91f77e47f915f9fe4931fcc46e0e1d923c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:15 -0500 Subject: [PATCH 1072/1664] python3-zipfile-deflate64: rebuild for Python 3.14 --- srcpkgs/python3-zipfile-deflate64/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-zipfile-deflate64/template b/srcpkgs/python3-zipfile-deflate64/template index f1961f8779814c..9fc252b4631d5d 100644 --- a/srcpkgs/python3-zipfile-deflate64/template +++ b/srcpkgs/python3-zipfile-deflate64/template @@ -1,7 +1,7 @@ # Template file for 'python3-zipfile-deflate64' pkgname=python3-zipfile-deflate64 version=0.2.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools_scm" makedepends="python3-devel" From 39abf1a7a66a5790f11bac8b5a9f90bc18294cbf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:15 -0500 Subject: [PATCH 1073/1664] python3-xvfbwrapper: rebuild for Python 3.14 --- srcpkgs/python3-xvfbwrapper/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-xvfbwrapper/template b/srcpkgs/python3-xvfbwrapper/template index 8627d6c34ae672..0c1f3956d32950 100644 --- a/srcpkgs/python3-xvfbwrapper/template +++ b/srcpkgs/python3-xvfbwrapper/template @@ -1,7 +1,7 @@ # Template file for 'python3-xvfbwrapper' pkgname=python3-xvfbwrapper version=0.2.9 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="xorg-server-xvfb" From 555790ee0a5b63611de93612743fc42f39414479 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:16 -0500 Subject: [PATCH 1074/1664] python3-xlrd: rebuild for Python 3.14 --- srcpkgs/python3-xlrd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-xlrd/template b/srcpkgs/python3-xlrd/template index 2e129552b59c78..a1609edbc7f4cb 100644 --- a/srcpkgs/python3-xlrd/template +++ b/srcpkgs/python3-xlrd/template @@ -1,7 +1,7 @@ # Template file for 'python3-xlrd' pkgname=python3-xlrd version=2.0.1 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 3b1cc18e95cf0bb9f75a529ee90dbd7fa6080584 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:16 -0500 Subject: [PATCH 1075/1664] python3-wikipedia: rebuild for Python 3.14 --- srcpkgs/python3-wikipedia/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-wikipedia/template b/srcpkgs/python3-wikipedia/template index 87a31c4669e6cc..674ddec6971fc9 100644 --- a/srcpkgs/python3-wikipedia/template +++ b/srcpkgs/python3-wikipedia/template @@ -1,7 +1,7 @@ # Template file for 'python3-wikipedia' pkgname=python3-wikipedia version=1.4.0 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-BeautifulSoup4 python3-requests" From f18c8f92324f6d80573ca3165615a88f6a651193 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:16 -0500 Subject: [PATCH 1076/1664] python3-webassets: rebuild for Python 3.14 --- srcpkgs/python3-webassets/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-webassets/template b/srcpkgs/python3-webassets/template index 723e08882c0cb5..6d548f2a8c4126 100644 --- a/srcpkgs/python3-webassets/template +++ b/srcpkgs/python3-webassets/template @@ -1,7 +1,7 @@ # Template file for 'python3-webassets' pkgname=python3-webassets version=0.12.1 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools" From 1cb024d4247489f9eadf29d107798fabec496b6f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:16 -0500 Subject: [PATCH 1077/1664] python3-watchman: rebuild for Python 3.14 --- srcpkgs/python3-watchman/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-watchman/template b/srcpkgs/python3-watchman/template index dfe4abd43267e9..201dad236515ad 100644 --- a/srcpkgs/python3-watchman/template +++ b/srcpkgs/python3-watchman/template @@ -1,7 +1,7 @@ # Template file for 'python3-watchman' pkgname=python3-watchman version=1.4.1 -revision=11 +revision=12 create_wrksrc=yes build_wrksrc="pywatchman-${version}" build_style=python3-module From ab7a1a266aac9e490b64136b38c6d11f04f10022 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:16 -0500 Subject: [PATCH 1078/1664] python3-voluptuous: rebuild for Python 3.14 --- srcpkgs/python3-voluptuous/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-voluptuous/template b/srcpkgs/python3-voluptuous/template index 620f624ebeca40..34c9b6a0e1708f 100644 --- a/srcpkgs/python3-voluptuous/template +++ b/srcpkgs/python3-voluptuous/template @@ -1,7 +1,7 @@ # Template file for 'python3-voluptuous' pkgname=python3-voluptuous version=0.11.5 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From f6424538c01e50dadd380077db71f4e4fe493883 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:16 -0500 Subject: [PATCH 1079/1664] python3-vispy: rebuild for Python 3.14 --- srcpkgs/python3-vispy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-vispy/template b/srcpkgs/python3-vispy/template index 5b81d0afaea611..ef3d9d1b7b87b5 100644 --- a/srcpkgs/python3-vispy/template +++ b/srcpkgs/python3-vispy/template @@ -1,7 +1,7 @@ # Template file for 'python3-vispy' pkgname=python3-vispy version=0.6.1 -revision=10 +revision=11 build_style=python3-module build_helper=numpy hostmakedepends="python3-setuptools python3-Cython python3-numpy" From 153d51b45dd1bc1acdf318fb646f3df49938f3a8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:16 -0500 Subject: [PATCH 1080/1664] python3-vint: rebuild for Python 3.14 --- srcpkgs/python3-vint/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-vint/template b/srcpkgs/python3-vint/template index ac3afa3c590113..6b59c24d5d3fbd 100644 --- a/srcpkgs/python3-vint/template +++ b/srcpkgs/python3-vint/template @@ -1,7 +1,7 @@ # Template file for 'python3-vint' pkgname=python3-vint version=0.3.21 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-ansicolor python3-chardet python3-yaml" From bf4da0cf0366ce001b74cf9c25539b523b59841a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:17 -0500 Subject: [PATCH 1081/1664] python3-urlgrabber: rebuild for Python 3.14 --- srcpkgs/python3-urlgrabber/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-urlgrabber/template b/srcpkgs/python3-urlgrabber/template index 826cf9ea07b520..c1868333bda038 100644 --- a/srcpkgs/python3-urlgrabber/template +++ b/srcpkgs/python3-urlgrabber/template @@ -1,7 +1,7 @@ # Template file for 'python3-urlgrabber' pkgname=python3-urlgrabber version=4.0.0 -revision=7 +revision=8 build_style=python3-module pycompile_module="urlgrabber" hostmakedepends="python3-setuptools python3-six" From 4d3763a39c1d6311db55662664ca0aa785871061 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:17 -0500 Subject: [PATCH 1082/1664] python3-urbandict: rebuild for Python 3.14 --- srcpkgs/python3-urbandict/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-urbandict/template b/srcpkgs/python3-urbandict/template index 64c1fc64166c2a..04bb966e256382 100644 --- a/srcpkgs/python3-urbandict/template +++ b/srcpkgs/python3-urbandict/template @@ -1,7 +1,7 @@ # Template file for 'python3-urbandict' pkgname=python3-urbandict version=0.6.1 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 43fcd90ba4133b76f0d6abdff7aad66468073c24 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:17 -0500 Subject: [PATCH 1083/1664] python3-unittest-mixins: rebuild for Python 3.14 --- srcpkgs/python3-unittest-mixins/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-unittest-mixins/template b/srcpkgs/python3-unittest-mixins/template index 684ccb7855b306..4a854f204d3388 100644 --- a/srcpkgs/python3-unittest-mixins/template +++ b/srcpkgs/python3-unittest-mixins/template @@ -1,7 +1,7 @@ # Template file for 'python3-unittest-mixins' pkgname=python3-unittest-mixins version=1.6 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-six" From 176be8409d9833da340cb249b1a916a586fc8237 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:17 -0500 Subject: [PATCH 1084/1664] python3-txredisapi: rebuild for Python 3.14 --- srcpkgs/python3-txredisapi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-txredisapi/template b/srcpkgs/python3-txredisapi/template index b091a906d2311d..c5158662c5dcb4 100644 --- a/srcpkgs/python3-txredisapi/template +++ b/srcpkgs/python3-txredisapi/template @@ -1,7 +1,7 @@ # Template file for 'python3-txredisapi' pkgname=python3-txredisapi version=1.4.10 -revision=3 +revision=4 build_style=python3-module make_check_args="--ignore tests/test_basics.py --ignore tests/test_bitops.py From b617a46a9c61cc77f36abb6947fad0224fd5aa0f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:17 -0500 Subject: [PATCH 1085/1664] python3-twitter: rebuild for Python 3.14 --- srcpkgs/python3-twitter/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-twitter/template b/srcpkgs/python3-twitter/template index 0e705e3db151c0..93e80b9899a477 100644 --- a/srcpkgs/python3-twitter/template +++ b/srcpkgs/python3-twitter/template @@ -2,7 +2,7 @@ pkgname=python3-twitter _pkgname=${pkgname/3/} version=3.5 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-future python3-requests python3-requests-oauthlib" From 69579387f0912209d715267f7886a3267e0ecb58 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:17 -0500 Subject: [PATCH 1086/1664] python3-tweepy: rebuild for Python 3.14 --- srcpkgs/python3-tweepy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tweepy/template b/srcpkgs/python3-tweepy/template index 216c374213492a..ad16a3cf09e862 100644 --- a/srcpkgs/python3-tweepy/template +++ b/srcpkgs/python3-tweepy/template @@ -1,7 +1,7 @@ # Template file for 'python3-tweepy' pkgname=python3-tweepy version=4.8.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests-oauthlib python3-pysocks" From 7da13e7aca0aa5e80bc7ec8920a0c48a839573ba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:18 -0500 Subject: [PATCH 1087/1664] python3-ttystatus: rebuild for Python 3.14 --- srcpkgs/python3-ttystatus/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ttystatus/template b/srcpkgs/python3-ttystatus/template index 95e91cb7b56814..01a19729d08aa5 100644 --- a/srcpkgs/python3-ttystatus/template +++ b/srcpkgs/python3-ttystatus/template @@ -2,7 +2,7 @@ pkgname=python3-ttystatus _pkgname=${pkgname/3/} version=0.38 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From c44b7aef1d3d94a44f9f14f8ddfcbfb432200c99 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:18 -0500 Subject: [PATCH 1088/1664] python3-trustme: rebuild for Python 3.14 --- srcpkgs/python3-trustme/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-trustme/template b/srcpkgs/python3-trustme/template index e812baf6e9afc0..1e8bb56ce99dfa 100644 --- a/srcpkgs/python3-trustme/template +++ b/srcpkgs/python3-trustme/template @@ -1,7 +1,7 @@ # Template file for 'python3-trustme' pkgname=python3-trustme version=1.2.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3-cryptography python3-idna" From 156b92d53bda1c72e21c2e1280e482c813b2f957 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:18 -0500 Subject: [PATCH 1089/1664] python3-trimesh: rebuild for Python 3.14 --- srcpkgs/python3-trimesh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-trimesh/template b/srcpkgs/python3-trimesh/template index 549812abaa7594..71a6c04df4fa75 100644 --- a/srcpkgs/python3-trimesh/template +++ b/srcpkgs/python3-trimesh/template @@ -1,7 +1,7 @@ # Template file for 'python3-trimesh' pkgname=python3-trimesh version=4.4.3 -revision=2 +revision=3 build_style=python3-pep517 make_check_target="tests" # Ignored tests require unpackaged dependencies From 889c663f6201485792ba61d99f703c353c2cccc6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:18 -0500 Subject: [PATCH 1090/1664] python3-tokenize-rt: rebuild for Python 3.14 --- srcpkgs/python3-tokenize-rt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tokenize-rt/template b/srcpkgs/python3-tokenize-rt/template index 8d45a0af6a9dc2..09c29a11b52e60 100644 --- a/srcpkgs/python3-tokenize-rt/template +++ b/srcpkgs/python3-tokenize-rt/template @@ -1,7 +1,7 @@ # Template file for 'python3-tokenize-rt' pkgname=python3-tokenize-rt version=5.0.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 0c837f59767a8badf842427814a5a98bf75569d9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:18 -0500 Subject: [PATCH 1091/1664] python3-tmuxp: rebuild for Python 3.14 --- srcpkgs/python3-tmuxp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tmuxp/template b/srcpkgs/python3-tmuxp/template index d134107dba6fb3..73d56b0f05d448 100644 --- a/srcpkgs/python3-tmuxp/template +++ b/srcpkgs/python3-tmuxp/template @@ -1,7 +1,7 @@ # Template file for 'python3-tmuxp' pkgname=python3-tmuxp version=1.47.0 -revision=2 +revision=3 build_style=python3-pep517 # XXX: https://github.com/tmux-python/tmuxp/issues/855 make_check_args="--deselect tests/workspace/test_builder.py::test_window_shell" From cf45cded2973537b0f29637201893751ca07c928 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:18 -0500 Subject: [PATCH 1092/1664] python3-tldextract: rebuild for Python 3.14 --- srcpkgs/python3-tldextract/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tldextract/template b/srcpkgs/python3-tldextract/template index 78174521ef2ad4..7d93074b252ac1 100644 --- a/srcpkgs/python3-tldextract/template +++ b/srcpkgs/python3-tldextract/template @@ -1,7 +1,7 @@ # Template file for 'python3-tldextract' pkgname=python3-tldextract version=3.4.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools_scm python3-wheel" makedepends="python3-filelock python3-idna python3-requests python3-requests-file" From bdfd1ac10850969627ac89b9b7e3679a523f4b53 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:18 -0500 Subject: [PATCH 1093/1664] python3-tinycss: rebuild for Python 3.14 --- srcpkgs/python3-tinycss/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tinycss/template b/srcpkgs/python3-tinycss/template index 00f3123a53aa04..a5b4fc1bd6cdfe 100644 --- a/srcpkgs/python3-tinycss/template +++ b/srcpkgs/python3-tinycss/template @@ -1,7 +1,7 @@ # Template file for 'python3-tinycss' pkgname=python3-tinycss version=0.4 -revision=7 +revision=8 build_style=python3-module pycompile_module="tinycss" hostmakedepends="python3-setuptools" From 95889eb3880d21f3a30cf6bf203841aa39cac41f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:19 -0500 Subject: [PATCH 1094/1664] python3-tiny-proxy: rebuild for Python 3.14 --- srcpkgs/python3-tiny-proxy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tiny-proxy/template b/srcpkgs/python3-tiny-proxy/template index 100d3ac35934bb..7a1dc2bf4914b6 100644 --- a/srcpkgs/python3-tiny-proxy/template +++ b/srcpkgs/python3-tiny-proxy/template @@ -1,7 +1,7 @@ # Template file for 'python3-tiny-proxy' pkgname=python3-tiny-proxy version=0.2.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-anyio" From 208d9b425ae604b2710bbbd6c8ec91ba738ccabc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:19 -0500 Subject: [PATCH 1095/1664] python3-time-machine: rebuild for Python 3.14 --- srcpkgs/python3-time-machine/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-time-machine/template b/srcpkgs/python3-time-machine/template index e27e90dceca55d..4c7fede9e56f5b 100644 --- a/srcpkgs/python3-time-machine/template +++ b/srcpkgs/python3-time-machine/template @@ -1,7 +1,7 @@ # Template file for 'python3-time-machine' pkgname=python3-time-machine version=2.16.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" makedepends="python3-devel" From 3b1fb321c76179e8d058d5c58f4a491fa2764529 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:19 -0500 Subject: [PATCH 1096/1664] python3-thefuzz: rebuild for Python 3.14 --- srcpkgs/python3-thefuzz/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-thefuzz/template b/srcpkgs/python3-thefuzz/template index 2aeb9126fbeb9a..092f9ffaa41890 100644 --- a/srcpkgs/python3-thefuzz/template +++ b/srcpkgs/python3-thefuzz/template @@ -1,7 +1,7 @@ # Template file for 'python3-thefuzz' pkgname=python3-thefuzz version=0.19.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-Levenshtein" From 3734a228be1167610b9fda75eda711aa03adf6f9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:19 -0500 Subject: [PATCH 1097/1664] python3-testpath: rebuild for Python 3.14 --- srcpkgs/python3-testpath/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-testpath/template b/srcpkgs/python3-testpath/template index e060948b79cb00..62ce6639d4d565 100644 --- a/srcpkgs/python3-testpath/template +++ b/srcpkgs/python3-testpath/template @@ -1,7 +1,7 @@ # Template file for 'python3-testpath' pkgname=python3-testpath version=0.6.0 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3" From 09340a48efd2d20cbaf29a94530b15027d5e2e2d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:19 -0500 Subject: [PATCH 1098/1664] python3-terminaltables: rebuild for Python 3.14 --- srcpkgs/python3-terminaltables/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-terminaltables/template b/srcpkgs/python3-terminaltables/template index bb609f5c778532..faf5dfabc2ee3a 100644 --- a/srcpkgs/python3-terminaltables/template +++ b/srcpkgs/python3-terminaltables/template @@ -1,7 +1,7 @@ # Template file for 'python3-terminaltables' pkgname=python3-terminaltables version=3.1.0 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From b1cca6dc1a88f501acf9d00d28cad495bed5fa02 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:19 -0500 Subject: [PATCH 1099/1664] python3-tempita: rebuild for Python 3.14 --- srcpkgs/python3-tempita/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tempita/template b/srcpkgs/python3-tempita/template index 2842248265c62a..51002142c88865 100644 --- a/srcpkgs/python3-tempita/template +++ b/srcpkgs/python3-tempita/template @@ -1,7 +1,7 @@ # Template file for 'python3-tempita' pkgname=python3-tempita version=0.5.2 -revision=10 +revision=11 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From b0d7f04381615d6c50f366619a5226fd78b6bd34 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:19 -0500 Subject: [PATCH 1100/1664] python3-subunit: rebuild for Python 3.14 --- srcpkgs/python3-subunit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-subunit/template b/srcpkgs/python3-subunit/template index 178c255bfd5ba2..0b27d8d20736de 100644 --- a/srcpkgs/python3-subunit/template +++ b/srcpkgs/python3-subunit/template @@ -1,7 +1,7 @@ # Template file for 'python3-subunit' pkgname=python3-subunit version=1.4.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-testtools" From 5d195a7f800720164064c9b9e43c7f4f47dc81d5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:20 -0500 Subject: [PATCH 1101/1664] python3-strict-rfc3339: rebuild for Python 3.14 --- srcpkgs/python3-strict-rfc3339/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-strict-rfc3339/template b/srcpkgs/python3-strict-rfc3339/template index 0fc4b3f7a44cdb..fa40b0621f53b6 100644 --- a/srcpkgs/python3-strict-rfc3339/template +++ b/srcpkgs/python3-strict-rfc3339/template @@ -1,7 +1,7 @@ # Template file for 'python3-strict-rfc3339' pkgname=python3-strict-rfc3339 version=0.7 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 0aec3f30d37ad78652ee86330bfa5f341ad3f696 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:20 -0500 Subject: [PATCH 1102/1664] python3-sphinx-tabs: rebuild for Python 3.14 --- srcpkgs/python3-sphinx-tabs/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sphinx-tabs/template b/srcpkgs/python3-sphinx-tabs/template index f4766c37a3f5d7..3049371bbd3886 100644 --- a/srcpkgs/python3-sphinx-tabs/template +++ b/srcpkgs/python3-sphinx-tabs/template @@ -1,7 +1,7 @@ # Template file for 'python3-sphinx-tabs' pkgname=python3-sphinx-tabs version=3.4.7 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" # https://github.com/executablebooks/sphinx-tabs/issues/159 From 9050cde6d9181ab8bf33c0a5db5e1fd8ccd78ead Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:20 -0500 Subject: [PATCH 1103/1664] python3-sphinx-copybutton: rebuild for Python 3.14 --- srcpkgs/python3-sphinx-copybutton/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sphinx-copybutton/template b/srcpkgs/python3-sphinx-copybutton/template index de760833700602..15bdaeb2ff866b 100644 --- a/srcpkgs/python3-sphinx-copybutton/template +++ b/srcpkgs/python3-sphinx-copybutton/template @@ -1,7 +1,7 @@ # Template file for 'python3-sphinx-copybutton' pkgname=python3-sphinx-copybutton version=0.5.2 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-Sphinx" From e321f5a8995bf55379eb82e9ab0dba0a3bc23778 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:20 -0500 Subject: [PATCH 1104/1664] python3-snappy: rebuild for Python 3.14 --- srcpkgs/python3-snappy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-snappy/template b/srcpkgs/python3-snappy/template index 1dd47dcc772a24..5a86f1a50e760f 100644 --- a/srcpkgs/python3-snappy/template +++ b/srcpkgs/python3-snappy/template @@ -2,7 +2,7 @@ pkgname=python3-snappy _pkgname=python-snappy version=0.6.1 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel snappy-devel python3-cffi libffi-devel" From 3c7e0fa8f6bc2679f7ce51d7865c660a2b07127f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:20 -0500 Subject: [PATCH 1105/1664] python3-simplegeneric: rebuild for Python 3.14 --- srcpkgs/python3-simplegeneric/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-simplegeneric/template b/srcpkgs/python3-simplegeneric/template index 7184a96c91590e..b025b443ee6043 100644 --- a/srcpkgs/python3-simplegeneric/template +++ b/srcpkgs/python3-simplegeneric/template @@ -1,7 +1,7 @@ # Template file for 'python3-simplegeneric' pkgname=python3-simplegeneric version=0.8.1 -revision=11 +revision=12 build_style=python3-module hostmakedepends="unzip python3-setuptools" depends="python3" From 3f951b0c1115753c52d6d3474d3cb39e0e8aee10 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:20 -0500 Subject: [PATCH 1106/1664] python3-simplebayes: rebuild for Python 3.14 --- srcpkgs/python3-simplebayes/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-simplebayes/template b/srcpkgs/python3-simplebayes/template index 58def0e40773a5..db76e9c9b5b437 100644 --- a/srcpkgs/python3-simplebayes/template +++ b/srcpkgs/python3-simplebayes/template @@ -1,7 +1,7 @@ # Template file for 'python3-simplebayes' pkgname=python3-simplebayes version=1.5.8 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 378f3c9f3d79d2a14c617f355de7486ce1825f7b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:21 -0500 Subject: [PATCH 1107/1664] python3-sentry: rebuild for Python 3.14 --- srcpkgs/python3-sentry/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sentry/template b/srcpkgs/python3-sentry/template index 81488b850d7d95..16ce1760897fc9 100644 --- a/srcpkgs/python3-sentry/template +++ b/srcpkgs/python3-sentry/template @@ -1,7 +1,7 @@ # Template file for 'python3-sentry' pkgname=python3-sentry version=1.0.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends=python3-setuptools depends="python3-certifi python3-urllib3" From eac9005ba24fc6c31013c5061d3239ce1d315caf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:21 -0500 Subject: [PATCH 1108/1664] python3-seaborn: rebuild for Python 3.14 --- srcpkgs/python3-seaborn/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-seaborn/template b/srcpkgs/python3-seaborn/template index f4ce6369ebfc1a..ef26e24b49ce24 100644 --- a/srcpkgs/python3-seaborn/template +++ b/srcpkgs/python3-seaborn/template @@ -1,7 +1,7 @@ # Template file for 'python3-seaborn' pkgname=python3-seaborn version=0.13.2 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3-numpy python3-matplotlib python3-pandas" From 630a802f26e82f497e127250ba011ce9910a77b7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:21 -0500 Subject: [PATCH 1109/1664] python3-scour: rebuild for Python 3.14 --- srcpkgs/python3-scour/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-scour/template b/srcpkgs/python3-scour/template index 6fc98f75e2d4d0..5dc0a64f3795af 100644 --- a/srcpkgs/python3-scour/template +++ b/srcpkgs/python3-scour/template @@ -1,7 +1,7 @@ # Template file for 'python3-scour' pkgname=python3-scour version=0.38.2 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-six" From 93989cddaddb1dac8cd8b793cca46e845165cca6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:21 -0500 Subject: [PATCH 1110/1664] python3-scikit-learn: rebuild for Python 3.14 --- srcpkgs/python3-scikit-learn/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-scikit-learn/template b/srcpkgs/python3-scikit-learn/template index f80a5eb549e7f0..7cb6d41735f4b9 100644 --- a/srcpkgs/python3-scikit-learn/template +++ b/srcpkgs/python3-scikit-learn/template @@ -1,7 +1,7 @@ # Template file for 'python3-scikit-learn' pkgname=python3-scikit-learn version=1.5.0 -revision=2 +revision=3 build_style=python3-pep517 build_helper="numpy meson" hostmakedepends="python3-Cython python3-numpy python3-scipy From d6c24212fb1f9eff68249d1de8baac8b1c3a8a5e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:21 -0500 Subject: [PATCH 1111/1664] python3-scikit-image: rebuild for Python 3.14 --- srcpkgs/python3-scikit-image/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-scikit-image/template b/srcpkgs/python3-scikit-image/template index ad2e5243cca6f9..8b9851ccde8b93 100644 --- a/srcpkgs/python3-scikit-image/template +++ b/srcpkgs/python3-scikit-image/template @@ -1,7 +1,7 @@ # Template file for 'python3-scikit-image' pkgname=python3-scikit-image version=0.25.2 -revision=1 +revision=2 build_style=python3-pep517 build_helper="meson numpy" make_build_args="--skip-dependency-check" From 308ac6327b257776df837b4c4cf7a787981c48b2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:21 -0500 Subject: [PATCH 1112/1664] python3-scikit-build: rebuild for Python 3.14 --- srcpkgs/python3-scikit-build/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-scikit-build/template b/srcpkgs/python3-scikit-build/template index fe6df7241f9ea2..2a89874061c4b8 100644 --- a/srcpkgs/python3-scikit-build/template +++ b/srcpkgs/python3-scikit-build/template @@ -1,7 +1,7 @@ # Template file for 'python3-scikit-build' pkgname=python3-scikit-build version=0.18.1 -revision=2 +revision=3 build_style=python3-pep517 # test requires setuptools_scm to not be installed make_check_args="-k not(nosetuptoolsscm)" From 6ecebd14fc0f02bd311243a5c83f1bab70e24fa1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:21 -0500 Subject: [PATCH 1113/1664] python3-scandir: rebuild for Python 3.14 --- srcpkgs/python3-scandir/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-scandir/template b/srcpkgs/python3-scandir/template index 89851d7abf1889..757bab1927612e 100644 --- a/srcpkgs/python3-scandir/template +++ b/srcpkgs/python3-scandir/template @@ -1,7 +1,7 @@ # Template file for 'python3-scandir' pkgname=python3-scandir version=1.10.0 -revision=11 +revision=12 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From 6c52a35dc5e0b2ebb3f445c89598358c18589681 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:22 -0500 Subject: [PATCH 1114/1664] python3-s-tui: rebuild for Python 3.14 --- srcpkgs/python3-s-tui/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-s-tui/template b/srcpkgs/python3-s-tui/template index 0c64b15607c508..231e74e9e40141 100644 --- a/srcpkgs/python3-s-tui/template +++ b/srcpkgs/python3-s-tui/template @@ -1,7 +1,7 @@ # Template file for 'python3-s-tui' pkgname=python3-s-tui version=1.2.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="stress-ng python3-urwid python3-psutil" From d8d74517eda80110b0e74a870f03ac91c33e51ed Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:22 -0500 Subject: [PATCH 1115/1664] python3-rss2email: rebuild for Python 3.14 --- srcpkgs/python3-rss2email/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-rss2email/template b/srcpkgs/python3-rss2email/template index dbedb900b49b8a..3a2d8ad4ed8cdf 100644 --- a/srcpkgs/python3-rss2email/template +++ b/srcpkgs/python3-rss2email/template @@ -1,7 +1,7 @@ # Template file for 'python3-rss2email' pkgname=python3-rss2email version=3.14 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-feedparser python3-html2text" From a170f3db2eb0a9e2187f4ab4f4d75bd59ca99b53 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:22 -0500 Subject: [PATCH 1116/1664] python3-rope: rebuild for Python 3.14 --- srcpkgs/python3-rope/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-rope/template b/srcpkgs/python3-rope/template index ce459d90195a63..6a3bcebc262c4b 100644 --- a/srcpkgs/python3-rope/template +++ b/srcpkgs/python3-rope/template @@ -1,7 +1,7 @@ # Template file for 'python3-rope' pkgname=python3-rope version=1.12.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 98a74ac64f772865b342e7e5889d46adfd4e365d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:22 -0500 Subject: [PATCH 1117/1664] python3-rfc3987: rebuild for Python 3.14 --- srcpkgs/python3-rfc3987/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-rfc3987/template b/srcpkgs/python3-rfc3987/template index 10d47558bdeda3..94ee1f75fc088c 100644 --- a/srcpkgs/python3-rfc3987/template +++ b/srcpkgs/python3-rfc3987/template @@ -1,7 +1,7 @@ # Template file for 'python3-rfc3987' pkgname=python3-rfc3987 version=1.3.8 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From c279dd4fa836151e35679598b698d5eafbff35b7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:22 -0500 Subject: [PATCH 1118/1664] python3-rfc3986: rebuild for Python 3.14 --- srcpkgs/python3-rfc3986/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-rfc3986/template b/srcpkgs/python3-rfc3986/template index a28c9352e649b2..8d5deec81507f2 100644 --- a/srcpkgs/python3-rfc3986/template +++ b/srcpkgs/python3-rfc3986/template @@ -1,7 +1,7 @@ # Template file for 'python3-rfc3986' pkgname=python3-rfc3986 version=2.0.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-idna" From af0ed6bcdea39f850a10df7a4fd604e80ee12d4e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:22 -0500 Subject: [PATCH 1119/1664] python3-requests-unixsocket: rebuild for Python 3.14 --- srcpkgs/python3-requests-unixsocket/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-requests-unixsocket/template b/srcpkgs/python3-requests-unixsocket/template index f60fe1226c8f30..0b30bf05ef04a6 100644 --- a/srcpkgs/python3-requests-unixsocket/template +++ b/srcpkgs/python3-requests-unixsocket/template @@ -1,7 +1,7 @@ # Template file for 'python3-requests-unixsocket' pkgname=python3-requests-unixsocket version=0.4.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-setuptools_scm python3-pbr" depends="python3-requests python3-urllib3" From 67db196ef98caad179e238d5f3f1aadb621ea8f7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:23 -0500 Subject: [PATCH 1120/1664] python3-requests-mock: rebuild for Python 3.14 --- srcpkgs/python3-requests-mock/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-requests-mock/template b/srcpkgs/python3-requests-mock/template index 8ebeff8806fd30..6d67dc0ec74c05 100644 --- a/srcpkgs/python3-requests-mock/template +++ b/srcpkgs/python3-requests-mock/template @@ -1,7 +1,7 @@ # Template file for 'python3-requests-mock' pkgname=python3-requests-mock version=1.8.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools python3-pbr" depends="python3-requests python3-six" From 9c038c3a92cdc2d967a0cfc2dc0767bfa79cfddf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:23 -0500 Subject: [PATCH 1121/1664] python3-reflink: rebuild for Python 3.14 --- srcpkgs/python3-reflink/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-reflink/template b/srcpkgs/python3-reflink/template index c0d9f98e93268c..6d3ebd9f64af17 100644 --- a/srcpkgs/python3-reflink/template +++ b/srcpkgs/python3-reflink/template @@ -1,7 +1,7 @@ # Template file for 'python3-reflink' pkgname=python3-reflink version=0.2.1 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel python3-cffi" From 4314eb8310a85c0910277eef6f1faf1a9c29f34c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:23 -0500 Subject: [PATCH 1122/1664] python3-readlike: rebuild for Python 3.14 --- srcpkgs/python3-readlike/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-readlike/template b/srcpkgs/python3-readlike/template index d666d61301aded..426279a82fef13 100644 --- a/srcpkgs/python3-readlike/template +++ b/srcpkgs/python3-readlike/template @@ -1,7 +1,7 @@ # Template file for 'python3-readlike' pkgname=python3-readlike version=0.1.3 -revision=7 +revision=8 build_style=python3-module pycompile_module="readlike.py" hostmakedepends="python3-setuptools" From 48ca85f025153774912ecc3ca96a87f0f352ca58 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:23 -0500 Subject: [PATCH 1123/1664] python3-re-assert: rebuild for Python 3.14 --- srcpkgs/python3-re-assert/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-re-assert/template b/srcpkgs/python3-re-assert/template index 5f981fd0ea07d7..aaa273561275c1 100644 --- a/srcpkgs/python3-re-assert/template +++ b/srcpkgs/python3-re-assert/template @@ -1,7 +1,7 @@ # Template file for 'python3-re-assert' pkgname=python3-re-assert version=1.1.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-regex" From d4203561db25219ec3e82cf27605ed80c16d1fd5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:23 -0500 Subject: [PATCH 1124/1664] python3-raven: rebuild for Python 3.14 --- srcpkgs/python3-raven/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-raven/template b/srcpkgs/python3-raven/template index c51b7455138d02..ed06c1ab53d70a 100644 --- a/srcpkgs/python3-raven/template +++ b/srcpkgs/python3-raven/template @@ -1,7 +1,7 @@ # Template file for 'python3-raven' pkgname=python3-raven version=6.10.0 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="ca-certificates python3-setuptools" From 44158ed434042011f8c23586d948c2cc11256b21 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:23 -0500 Subject: [PATCH 1125/1664] python3-quart: rebuild for Python 3.14 --- srcpkgs/python3-quart/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-quart/template b/srcpkgs/python3-quart/template index 43288d03a8a546..83b35dd12a74fc 100644 --- a/srcpkgs/python3-quart/template +++ b/srcpkgs/python3-quart/template @@ -1,7 +1,7 @@ # Template file for 'python3-quart' pkgname=python3-quart version=0.20.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3-aiofiles python3-blinker python3-click python3-Flask From 5117bbad639d42431f6e4ca0b47275580491e3c8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:23 -0500 Subject: [PATCH 1126/1664] python3-qtile-extras: rebuild for Python 3.14 --- srcpkgs/python3-qtile-extras/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-qtile-extras/template b/srcpkgs/python3-qtile-extras/template index c66493f3c01b0a..245b0680832d3f 100644 --- a/srcpkgs/python3-qtile-extras/template +++ b/srcpkgs/python3-qtile-extras/template @@ -1,7 +1,7 @@ # Template file for 'python3-qtile-extras' pkgname=python3-qtile-extras version=0.33.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools python3-setuptools_scm" depends="qtile" From 08e267de7c6bde8b0ce69b6ca8d2aa06ecc76a5f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:24 -0500 Subject: [PATCH 1127/1664] python3-pyzbar: rebuild for Python 3.14 --- srcpkgs/python3-pyzbar/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyzbar/template b/srcpkgs/python3-pyzbar/template index 736779ae244e64..f8c14293bf128d 100644 --- a/srcpkgs/python3-pyzbar/template +++ b/srcpkgs/python3-pyzbar/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyzbar' pkgname=python3-pyzbar version=0.1.9 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="libzbar python3" From d7654468381f4288352e53d36172e993c6e96286 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:24 -0500 Subject: [PATCH 1128/1664] python3-pyx: rebuild for Python 3.14 --- srcpkgs/python3-pyx/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyx/template b/srcpkgs/python3-pyx/template index dc900e00db1b43..7d1c5e63a7a288 100644 --- a/srcpkgs/python3-pyx/template +++ b/srcpkgs/python3-pyx/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyx' pkgname=python3-pyx version=0.15 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 virtual?tex" From 531384a13bfdabc2be71695dab06d70bcbd4f20d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:24 -0500 Subject: [PATCH 1129/1664] python3-pywt: rebuild for Python 3.14 --- srcpkgs/python3-pywt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pywt/template b/srcpkgs/python3-pywt/template index 56e39c5abd79c2..7209f8e2397c06 100644 --- a/srcpkgs/python3-pywt/template +++ b/srcpkgs/python3-pywt/template @@ -1,7 +1,7 @@ # Template file for 'python3-pywt' pkgname=python3-pywt version=1.9.0 -revision=1 +revision=2 build_style=python3-pep517 build_helper="meson numpy" make_check_target=".xbps-testdir/*/${py3_sitelib}/pywt/tests" From 5d6eb7641d3d3b77b97c0af2911315dfce7cb580 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:24 -0500 Subject: [PATCH 1130/1664] python3-pytz_deprecation_shim: rebuild for Python 3.14 --- srcpkgs/python3-pytz_deprecation_shim/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytz_deprecation_shim/template b/srcpkgs/python3-pytz_deprecation_shim/template index 0110ce547e7807..5d70fca6a4b961 100644 --- a/srcpkgs/python3-pytz_deprecation_shim/template +++ b/srcpkgs/python3-pytz_deprecation_shim/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytz_deprecation_shim' pkgname=python3-pytz_deprecation_shim version=0.1.0 -revision=5 +revision=6 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3 tzdata" From 102d04fbbedc6df0322db1aed75b525990447305 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:24 -0500 Subject: [PATCH 1131/1664] python3-pythondialog: rebuild for Python 3.14 --- srcpkgs/python3-pythondialog/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pythondialog/template b/srcpkgs/python3-pythondialog/template index 8d23ee0314dded..f98cb8b1ed6ece 100644 --- a/srcpkgs/python3-pythondialog/template +++ b/srcpkgs/python3-pythondialog/template @@ -1,7 +1,7 @@ # Template file for 'python3-pythondialog' pkgname=python3-pythondialog version=3.5.3 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel" From d5da8026318e3e32fd78b9cf680ac66b7bd6b3e4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:24 -0500 Subject: [PATCH 1132/1664] python3-pytest-xvfb: rebuild for Python 3.14 --- srcpkgs/python3-pytest-xvfb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-xvfb/template b/srcpkgs/python3-pytest-xvfb/template index eaf7c7f9de478f..e8f58b6904f979 100644 --- a/srcpkgs/python3-pytest-xvfb/template +++ b/srcpkgs/python3-pytest-xvfb/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-xvfb' pkgname=python3-pytest-xvfb version=2.0.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pytest>=2.8.1 python3-PyVirtualDisplay xorg-server-xvfb xauth" From c97af3d19bca04db9a1f51958a210c973c29dab7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:24 -0500 Subject: [PATCH 1133/1664] python3-pytest-xdist: rebuild for Python 3.14 --- srcpkgs/python3-pytest-xdist/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-xdist/template b/srcpkgs/python3-pytest-xdist/template index 05aee6fa9671db..207c57905bfa0f 100644 --- a/srcpkgs/python3-pytest-xdist/template +++ b/srcpkgs/python3-pytest-xdist/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-xdist' pkgname=python3-pytest-xdist version=3.8.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3-pytest python3-execnet" From 2f9a8f14ec210ddc784183e0f3f007cffdf73fa0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:25 -0500 Subject: [PATCH 1134/1664] python3-pytest-trio: rebuild for Python 3.14 --- srcpkgs/python3-pytest-trio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-trio/template b/srcpkgs/python3-pytest-trio/template index 7528bb0c31e3bb..dc709576ae271a 100644 --- a/srcpkgs/python3-pytest-trio/template +++ b/srcpkgs/python3-pytest-trio/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-trio' pkgname=python3-pytest-trio version=0.8.0 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-trio python3-outcome python3-pytest" From 6ac71bb0d2d417c951f12afb91759c6563936a7a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:25 -0500 Subject: [PATCH 1135/1664] python3-pytest-testinfra: rebuild for Python 3.14 --- srcpkgs/python3-pytest-testinfra/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-testinfra/template b/srcpkgs/python3-pytest-testinfra/template index 4bf4e8a1e78224..fad912412d43f8 100644 --- a/srcpkgs/python3-pytest-testinfra/template +++ b/srcpkgs/python3-pytest-testinfra/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-testinfra' pkgname=python3-pytest-testinfra version=10.2.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3-pytest python3-pywinrm" From ef9e04e6bee987a017f84d4cb7817262ee941e4d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:25 -0500 Subject: [PATCH 1136/1664] python3-pytest-sugar: rebuild for Python 3.14 --- srcpkgs/python3-pytest-sugar/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-sugar/template b/srcpkgs/python3-pytest-sugar/template index eb5c994caafe94..23046dba32543d 100644 --- a/srcpkgs/python3-pytest-sugar/template +++ b/srcpkgs/python3-pytest-sugar/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-sugar' pkgname=python3-pytest-sugar version=0.9.6 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pytest python3-termcolor python3-packaging" From ad6dfa681a378a451e619b565084b4ae1b899ca0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:25 -0500 Subject: [PATCH 1137/1664] python3-pytest-subtests: rebuild for Python 3.14 --- srcpkgs/python3-pytest-subtests/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-subtests/template b/srcpkgs/python3-pytest-subtests/template index dcc43283a9f6ec..8d3eb4da7962b9 100644 --- a/srcpkgs/python3-pytest-subtests/template +++ b/srcpkgs/python3-pytest-subtests/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-subtests' pkgname=python3-pytest-subtests version=0.15.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3-pytest python3-attrs" From a2ee926f63581118cb73b7537075d70896750b23 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:25 -0500 Subject: [PATCH 1138/1664] python3-pytest-rerunfailures: rebuild for Python 3.14 --- srcpkgs/python3-pytest-rerunfailures/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-rerunfailures/template b/srcpkgs/python3-pytest-rerunfailures/template index 6bdb0a164d0299..194769d3bca7ec 100644 --- a/srcpkgs/python3-pytest-rerunfailures/template +++ b/srcpkgs/python3-pytest-rerunfailures/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-rerunfailures'. pkgname=python3-pytest-rerunfailures version=15.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-packaging python3-pytest" From 36267b6619453ea21454304b884a7412688aecbe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:25 -0500 Subject: [PATCH 1139/1664] python3-pytest-qt: rebuild for Python 3.14 --- srcpkgs/python3-pytest-qt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-qt/template b/srcpkgs/python3-pytest-qt/template index 10a9bcee5d3e3b..0fb4e8d18ac1b9 100644 --- a/srcpkgs/python3-pytest-qt/template +++ b/srcpkgs/python3-pytest-qt/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-qt' pkgname=python3-pytest-qt version=4.2.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3-pytest" From 38f49e353f7a55c450c0ef1d356335dd6b6dc83c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:26 -0500 Subject: [PATCH 1140/1664] python3-pytest-mock: rebuild for Python 3.14 --- srcpkgs/python3-pytest-mock/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-mock/template b/srcpkgs/python3-pytest-mock/template index 1beed997e65329..fb8e6720f48c15 100644 --- a/srcpkgs/python3-pytest-mock/template +++ b/srcpkgs/python3-pytest-mock/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-mock' pkgname=python3-pytest-mock version=3.14.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3-pytest" From 8541005d30d3897e65a05589d4076b00b21fc51f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:26 -0500 Subject: [PATCH 1141/1664] python3-pytest-localserver: rebuild for Python 3.14 --- srcpkgs/python3-pytest-localserver/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-localserver/template b/srcpkgs/python3-pytest-localserver/template index d12b782a4117d7..88bbe744ccef49 100644 --- a/srcpkgs/python3-pytest-localserver/template +++ b/srcpkgs/python3-pytest-localserver/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-localserver' pkgname=python3-pytest-localserver version=0.8.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3-Werkzeug" From 5fd5375dfb4fe6d00cec53e4f666a748ab56a23c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:26 -0500 Subject: [PATCH 1142/1664] python3-pytest-lazy-fixture: rebuild for Python 3.14 --- srcpkgs/python3-pytest-lazy-fixture/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-lazy-fixture/template b/srcpkgs/python3-pytest-lazy-fixture/template index a31cd190cd567d..e1ae41598208f5 100644 --- a/srcpkgs/python3-pytest-lazy-fixture/template +++ b/srcpkgs/python3-pytest-lazy-fixture/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-lazy-fixture' pkgname=python3-pytest-lazy-fixture version=0.6.3 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pytest" From 1d363566aa175454c6de28bb7166c25bbebf389c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:26 -0500 Subject: [PATCH 1143/1664] python3-pytest-jupyter: rebuild for Python 3.14 --- srcpkgs/python3-pytest-jupyter/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-jupyter/template b/srcpkgs/python3-pytest-jupyter/template index 525803d58b36f4..c8012efbadcb5f 100644 --- a/srcpkgs/python3-pytest-jupyter/template +++ b/srcpkgs/python3-pytest-jupyter/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-jupyter' pkgname=python3-pytest-jupyter version=0.10.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3-jupyter_core python3-pytest-timeout" From 17d87408da34bfbaa707ab30160626501e7a87af Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:26 -0500 Subject: [PATCH 1144/1664] python3-pytest-isort: rebuild for Python 3.14 --- srcpkgs/python3-pytest-isort/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-isort/template b/srcpkgs/python3-pytest-isort/template index a47d7e6a3e11f7..f730fae81ad524 100644 --- a/srcpkgs/python3-pytest-isort/template +++ b/srcpkgs/python3-pytest-isort/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-isort' pkgname=python3-pytest-isort version=3.1.0 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-pytest python3-isort" From a2d9866042be427d358ba0eedb8d74ea31726ecb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:26 -0500 Subject: [PATCH 1145/1664] python3-pytest-import-check: rebuild for Python 3.14 --- srcpkgs/python3-pytest-import-check/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-import-check/template b/srcpkgs/python3-pytest-import-check/template index f007d6de15fe57..566473726dbfb5 100644 --- a/srcpkgs/python3-pytest-import-check/template +++ b/srcpkgs/python3-pytest-import-check/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-import-check' pkgname=python3-pytest-import-check version=0.0.4 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-flit_core" depends="python3-pytest" From 61fd6ac8d7886e4829e9cef06ef77d8fd9eca3f1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:26 -0500 Subject: [PATCH 1146/1664] python3-pytest-httpserver: rebuild for Python 3.14 --- srcpkgs/python3-pytest-httpserver/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-httpserver/template b/srcpkgs/python3-pytest-httpserver/template index 3e57e8c084b97d..afa0ddb0bf532f 100644 --- a/srcpkgs/python3-pytest-httpserver/template +++ b/srcpkgs/python3-pytest-httpserver/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-httpserver' pkgname=python3-pytest-httpserver version=1.1.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-pytest python3-Werkzeug" From d309f1489fc3ee3b1c015785273832f61dc3aa18 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:27 -0500 Subject: [PATCH 1147/1664] python3-pytest-httpbin: rebuild for Python 3.14 --- srcpkgs/python3-pytest-httpbin/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-httpbin/template b/srcpkgs/python3-pytest-httpbin/template index 98ac04553c9746..e63a9e815e946a 100644 --- a/srcpkgs/python3-pytest-httpbin/template +++ b/srcpkgs/python3-pytest-httpbin/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-httpbin' pkgname=python3-pytest-httpbin version=2.1.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3-pytest python3-httpbin" From 8a76f87fee0393506d38134a9e39d3f05679db3b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:27 -0500 Subject: [PATCH 1148/1664] python3-pytest-forked: rebuild for Python 3.14 --- srcpkgs/python3-pytest-forked/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-forked/template b/srcpkgs/python3-pytest-forked/template index 1415f54d2ee50b..376711df8b3496 100644 --- a/srcpkgs/python3-pytest-forked/template +++ b/srcpkgs/python3-pytest-forked/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-forked' pkgname=python3-pytest-forked version=1.6.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools python3-setuptools_scm" depends="python3-pytest" From 63eb7b665c3c57229fdd8c793540cd2d48917b96 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:27 -0500 Subject: [PATCH 1149/1664] python3-pytest-flake8: rebuild for Python 3.14 --- srcpkgs/python3-pytest-flake8/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-flake8/template b/srcpkgs/python3-pytest-flake8/template index 8543724ee5f083..afce7c0969fd01 100644 --- a/srcpkgs/python3-pytest-flake8/template +++ b/srcpkgs/python3-pytest-flake8/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-flake8' pkgname=python3-pytest-flake8 version=1.1.1 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pytest flake8" From 61d8df767594e1e20c2e694595fe57cd3ba02c23 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:27 -0500 Subject: [PATCH 1150/1664] python3-pytest-fixture-config: rebuild for Python 3.14 --- srcpkgs/python3-pytest-fixture-config/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-fixture-config/template b/srcpkgs/python3-pytest-fixture-config/template index 1276088cefa73d..117d9b41432455 100644 --- a/srcpkgs/python3-pytest-fixture-config/template +++ b/srcpkgs/python3-pytest-fixture-config/template @@ -2,7 +2,7 @@ pkgname=python3-pytest-fixture-config _pkgname=${pkgname#*-} version=1.8.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pytest" From c86e0203d48900ca7ad2eafb9e67e5a20c380822 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:27 -0500 Subject: [PATCH 1151/1664] python3-pytest-env: rebuild for Python 3.14 --- srcpkgs/python3-pytest-env/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-env/template b/srcpkgs/python3-pytest-env/template index 294976f1ced0c7..59ec9b59d7cd05 100644 --- a/srcpkgs/python3-pytest-env/template +++ b/srcpkgs/python3-pytest-env/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-env' pkgname=python3-pytest-env version=1.1.5 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3-pytest" From 7e8533bda051b7e2a808857f5ef5c84a412f4039 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:27 -0500 Subject: [PATCH 1152/1664] python3-pytest-cov: rebuild for Python 3.14 --- srcpkgs/python3-pytest-cov/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-cov/template b/srcpkgs/python3-pytest-cov/template index 14330620084ce1..95b84894a372ee 100644 --- a/srcpkgs/python3-pytest-cov/template +++ b/srcpkgs/python3-pytest-cov/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-cov' pkgname=python3-pytest-cov version=6.2.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3-pytest python3-coverage python3-pluggy" From dfa534d2eace9f3aec6e6c75192995c6a6505112 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:27 -0500 Subject: [PATCH 1153/1664] python3-pytest-console-scripts: rebuild for Python 3.14 --- srcpkgs/python3-pytest-console-scripts/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-console-scripts/template b/srcpkgs/python3-pytest-console-scripts/template index e412120227c80e..9a81e989b1ea1a 100644 --- a/srcpkgs/python3-pytest-console-scripts/template +++ b/srcpkgs/python3-pytest-console-scripts/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-console-scripts' pkgname=python3-pytest-console-scripts version=1.4.1 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3-pytest" From e0c7f5089b44cd64f6c015a1668c4e298cfa61e4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:28 -0500 Subject: [PATCH 1154/1664] python3-pytest-black: rebuild for Python 3.14 --- srcpkgs/python3-pytest-black/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-black/template b/srcpkgs/python3-pytest-black/template index 4e93f1f917c7fb..69337b8ac918ec 100644 --- a/srcpkgs/python3-pytest-black/template +++ b/srcpkgs/python3-pytest-black/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-black' pkgname=python3-pytest-black version=0.6.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools python3-setuptools_scm" depends="python3-pytest black python3-toml" From 3bd896ff2dc7cb2decf6a17d5a6263e342b54c9f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:28 -0500 Subject: [PATCH 1155/1664] python3-pytest-benchmark: rebuild for Python 3.14 --- srcpkgs/python3-pytest-benchmark/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-benchmark/template b/srcpkgs/python3-pytest-benchmark/template index 2d7141ba301981..9c8a05e0edad8a 100644 --- a/srcpkgs/python3-pytest-benchmark/template +++ b/srcpkgs/python3-pytest-benchmark/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-benchmark' pkgname=python3-pytest-benchmark version=5.1.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-pytest python3-py-cpuinfo" From 976c02911b5d79228096ab5b5d977e7005fbc244 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:28 -0500 Subject: [PATCH 1156/1664] python3-pytest-aiohttp: rebuild for Python 3.14 --- srcpkgs/python3-pytest-aiohttp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-aiohttp/template b/srcpkgs/python3-pytest-aiohttp/template index 23b92599cce847..2f9220c6deebd6 100644 --- a/srcpkgs/python3-pytest-aiohttp/template +++ b/srcpkgs/python3-pytest-aiohttp/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-aiohttp' pkgname=python3-pytest-aiohttp version=1.0.5 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3-pytest python3-aiohttp python3-pytest-asyncio" From be97a381a1255e68d9a743a4504d875b33534e6e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:28 -0500 Subject: [PATCH 1157/1664] python3-pytaglib: rebuild for Python 3.14 --- srcpkgs/python3-pytaglib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytaglib/template b/srcpkgs/python3-pytaglib/template index cd77c36437c327..047afd6e36c96e 100644 --- a/srcpkgs/python3-pytaglib/template +++ b/srcpkgs/python3-pytaglib/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytaglib' pkgname=python3-pytaglib version=3.0.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" makedepends="python3-devel taglib-devel" From 164977f7d6e1463b5b61e209b671f89729e14a44 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:28 -0500 Subject: [PATCH 1158/1664] python3-pystache: rebuild for Python 3.14 --- srcpkgs/python3-pystache/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pystache/template b/srcpkgs/python3-pystache/template index 7802f4c3de3c50..d4e98b5467c999 100644 --- a/srcpkgs/python3-pystache/template +++ b/srcpkgs/python3-pystache/template @@ -1,7 +1,7 @@ # Template file for 'python3-pystache' pkgname=python3-pystache version=0.6.7 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools" From 31326880e942d3aeffa888bf3ca5314aca15ab85 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:28 -0500 Subject: [PATCH 1159/1664] python3-pysigset: rebuild for Python 3.14 --- srcpkgs/python3-pysigset/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pysigset/template b/srcpkgs/python3-pysigset/template index b86eff02b14415..7ca0078c60bca1 100644 --- a/srcpkgs/python3-pysigset/template +++ b/srcpkgs/python3-pysigset/template @@ -1,7 +1,7 @@ # Template file for 'python3-pysigset' pkgname=python3-pysigset version=0.4.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From eb19761e02dc13594688c28a375ba3fc9b822595 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:29 -0500 Subject: [PATCH 1160/1664] python3-pysdl2: rebuild for Python 3.14 --- srcpkgs/python3-pysdl2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pysdl2/template b/srcpkgs/python3-pysdl2/template index cefa1ee8723f3b..a93c412f2d16a8 100644 --- a/srcpkgs/python3-pysdl2/template +++ b/srcpkgs/python3-pysdl2/template @@ -1,7 +1,7 @@ # Template file for 'python3-pysdl2' pkgname=python3-pysdl2 version=0.9.17 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="desktop-file-utils SDL2 python3" From 28cb9ceae3e27e881ff660baa71ebecac0fb1882 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:29 -0500 Subject: [PATCH 1161/1664] python3-pyscss: rebuild for Python 3.14 --- srcpkgs/python3-pyscss/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyscss/template b/srcpkgs/python3-pyscss/template index 2ace4c2d779858..6187fb244ad96e 100644 --- a/srcpkgs/python3-pyscss/template +++ b/srcpkgs/python3-pyscss/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyscss' pkgname=python3-pyscss version=1.3.7 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools pcre-devel" makedepends="pcre-devel python3-devel" From c08bc0f5f59be4f0b2e2c50443d9067694eaf958 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:29 -0500 Subject: [PATCH 1162/1664] python3-pyrsistent: rebuild for Python 3.14 --- srcpkgs/python3-pyrsistent/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyrsistent/template b/srcpkgs/python3-pyrsistent/template index f065bf81a66dac..f5fa6196778ef7 100644 --- a/srcpkgs/python3-pyrsistent/template +++ b/srcpkgs/python3-pyrsistent/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyrsistent' pkgname=python3-pyrsistent version=0.19.3 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel python3-devel" depends="python3" From 40d8959c0a4c9d59ca9ca7cfc73a009857d6cadc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:29 -0500 Subject: [PATCH 1163/1664] python3-pyqt6-networkauth: rebuild for Python 3.14 --- srcpkgs/python3-pyqt6-networkauth/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyqt6-networkauth/template b/srcpkgs/python3-pyqt6-networkauth/template index c1e471d67dbfae..b71633d60c9924 100644 --- a/srcpkgs/python3-pyqt6-networkauth/template +++ b/srcpkgs/python3-pyqt6-networkauth/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyqt6-networkauth' pkgname=python3-pyqt6-networkauth version=6.10.0 -revision=1 +revision=2 build_style=sip-build build_helper="python3" hostmakedepends="qt6-base python3-PyQt-builder pkg-config" From 61cad0bac47a0a75f1abef4b3d99ef9d62b60faa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:29 -0500 Subject: [PATCH 1164/1664] python3-pyqt6-3d: rebuild for Python 3.14 --- srcpkgs/python3-pyqt6-3d/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyqt6-3d/template b/srcpkgs/python3-pyqt6-3d/template index 0ff5f2a3f7e9f6..65e77906db1ea5 100644 --- a/srcpkgs/python3-pyqt6-3d/template +++ b/srcpkgs/python3-pyqt6-3d/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyqt6-3d' pkgname=python3-pyqt6-3d version=6.10.0 -revision=1 +revision=2 build_style=sip-build build_helper="python3" hostmakedepends="qt6-base python3-PyQt-builder pkg-config" From a3e12f245217ca16269f32b870e1e774370817b7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:29 -0500 Subject: [PATCH 1165/1664] python3-pyqt5-qsci: rebuild for Python 3.14 --- srcpkgs/python3-pyqt5-qsci/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyqt5-qsci/template b/srcpkgs/python3-pyqt5-qsci/template index 540e642e3f52d1..b5ded922cc689f 100644 --- a/srcpkgs/python3-pyqt5-qsci/template +++ b/srcpkgs/python3-pyqt5-qsci/template @@ -4,7 +4,7 @@ # qscintilla-qt5 -> PyQt5 -> pyqt5-qsci pkgname=python3-pyqt5-qsci version=2.14.1 -revision=3 +revision=4 build_wrksrc=Python build_style=sip-build build_helper=qemu From bb8e1a8a2fa5102510a1392566fb56ccb2dc46ec Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:29 -0500 Subject: [PATCH 1166/1664] python3-pyproj: rebuild for Python 3.14 --- srcpkgs/python3-pyproj/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyproj/template b/srcpkgs/python3-pyproj/template index 1ce292a38f3414..df9faea61d16cf 100644 --- a/srcpkgs/python3-pyproj/template +++ b/srcpkgs/python3-pyproj/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyproj' pkgname=python3-pyproj version=3.7.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-Cython python3-setuptools python3-wheel proj" makedepends="python3-devel proj-devel" From 590d9c2297fa4773c0155afd340ecdf41f4ea832 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:30 -0500 Subject: [PATCH 1167/1664] python3-pyopencl: rebuild for Python 3.14 --- srcpkgs/python3-pyopencl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyopencl/template b/srcpkgs/python3-pyopencl/template index 7421831c7070be..f6a2a415c8b93a 100644 --- a/srcpkgs/python3-pyopencl/template +++ b/srcpkgs/python3-pyopencl/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyopencl' pkgname=python3-pyopencl version=2025.2.7 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel python3-numpy python3-scikit-build-core cmake ninja python3-nanobind" From 80d940ae54cfa234731f29b81892fc2125d736c8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:30 -0500 Subject: [PATCH 1168/1664] python3-pynitrokey: rebuild for Python 3.14 --- srcpkgs/python3-pynitrokey/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pynitrokey/template b/srcpkgs/python3-pynitrokey/template index 02f6a057f9cc3c..2ccbf01aca258c 100644 --- a/srcpkgs/python3-pynitrokey/template +++ b/srcpkgs/python3-pynitrokey/template @@ -1,7 +1,7 @@ # Template file for 'python3-pynitrokey' pkgname=python3-pynitrokey version=0.10.0 -revision=1 +revision=2 build_style=python3-pep517 make_build_args="--skip-dependency-check" hostmakedepends="python3-poetry-core" From a7085e353c32d366adcb0d3c556991a564576dae Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:30 -0500 Subject: [PATCH 1169/1664] python3-pylsp-mypy: rebuild for Python 3.14 --- srcpkgs/python3-pylsp-mypy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pylsp-mypy/template b/srcpkgs/python3-pylsp-mypy/template index cbc3a0a596e4e1..7e7be3a34ce2e6 100644 --- a/srcpkgs/python3-pylsp-mypy/template +++ b/srcpkgs/python3-pylsp-mypy/template @@ -1,7 +1,7 @@ # Template file for 'python3-pylsp-mypy' pkgname=python3-pylsp-mypy version=0.6.9 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3-lsp-server" From 6a949c7c36ab9a1c7889e43b9e936fa7b90f4cb4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:30 -0500 Subject: [PATCH 1170/1664] python3-pylru: rebuild for Python 3.14 --- srcpkgs/python3-pylru/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pylru/template b/srcpkgs/python3-pylru/template index a1721168912de9..b8db830f3bea25 100644 --- a/srcpkgs/python3-pylru/template +++ b/srcpkgs/python3-pylru/template @@ -1,7 +1,7 @@ # Template file for 'python3-pylru' pkgname=python3-pylru version=1.2.1 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From f17950b5179f17f95d0dfef4e8440899885d9767 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:30 -0500 Subject: [PATCH 1171/1664] python3-pylibgen: rebuild for Python 3.14 --- srcpkgs/python3-pylibgen/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pylibgen/template b/srcpkgs/python3-pylibgen/template index 259e667e809618..f5a57af95579c6 100644 --- a/srcpkgs/python3-pylibgen/template +++ b/srcpkgs/python3-pylibgen/template @@ -1,7 +1,7 @@ # Template file for 'python3-pylibgen' pkgname=python3-pylibgen version=2.0.2 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests" From d202144f64a9e9e47511c89c60516193999cc5c1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:30 -0500 Subject: [PATCH 1172/1664] python3-pykwalify: rebuild for Python 3.14 --- srcpkgs/python3-pykwalify/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pykwalify/template b/srcpkgs/python3-pykwalify/template index 35ea6e7fb8b0b1..bcb5fbcde3f5b9 100644 --- a/srcpkgs/python3-pykwalify/template +++ b/srcpkgs/python3-pykwalify/template @@ -1,7 +1,7 @@ # Template file for 'python3-pykwalify' pkgname=python3-pykwalify version=1.8.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-ruamel.yaml python3-docopt python3-dateutil" From a8fc10ad7616d7db78106da6b639d57ef179ab95 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:31 -0500 Subject: [PATCH 1173/1664] python3-pyinfra: rebuild for Python 3.14 --- srcpkgs/python3-pyinfra/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyinfra/template b/srcpkgs/python3-pyinfra/template index 74e4d7d3c86e7e..32736496bbf099 100644 --- a/srcpkgs/python3-pyinfra/template +++ b/srcpkgs/python3-pyinfra/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyinfra' pkgname=python3-pyinfra version=3.5 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3 python3-Jinja2 python3-click python3-colorama python3-dateutil From cc401be6c91e00ca8616e442e87dcc32baa24905 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:31 -0500 Subject: [PATCH 1174/1664] python3-pygit2: update to 1.19.0. --- srcpkgs/python3-pygit2/template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/srcpkgs/python3-pygit2/template b/srcpkgs/python3-pygit2/template index 129e338013a63d..6028b6ecacddde 100644 --- a/srcpkgs/python3-pygit2/template +++ b/srcpkgs/python3-pygit2/template @@ -1,10 +1,10 @@ # Template file for 'python3-pygit2' pkgname=python3-pygit2 -version=1.16.0 -revision=2 +version=1.19.0 +revision=1 build_style=python3-pep517 hostmakedepends="pkg-config python3-devel python3-cffi python3-setuptools python3-wheel" -makedepends="python3-devel libgit2-1.8-devel python3-cached-property libssh2-devel +makedepends="python3-devel libgit2-1.9-devel python3-cached-property libssh2-devel openssl-devel" depends="python3-cached-property python3-cffi" checkdepends="python3-pytest" @@ -14,4 +14,4 @@ license="GPL-2.0-only WITH GCC-exception-2.0" homepage="https://www.pygit2.org/" changelog="https://raw.githubusercontent.com/libgit2/pygit2/refs/heads/master/CHANGELOG.md" distfiles="${PYPI_SITE}/p/pygit2/pygit2-${version}.tar.gz" -checksum=7b29a6796baa15fc89d443ac8d51775411d9b1e5b06dc40d458c56c8576b48a2 +checksum=ca5db6f395a74166a019d777895f96bcb211ee60ce0be4132b139603e0066d83 From 92e4293bd7a9e70c334f313ab55d69fcd1b81dfa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:31 -0500 Subject: [PATCH 1175/1664] python3-pygdbmi: rebuild for Python 3.14 --- srcpkgs/python3-pygdbmi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pygdbmi/template b/srcpkgs/python3-pygdbmi/template index 30409f7b67f32b..e99c1fe2ec51d3 100644 --- a/srcpkgs/python3-pygdbmi/template +++ b/srcpkgs/python3-pygdbmi/template @@ -1,7 +1,7 @@ # Template file for 'python3-pygdbmi' pkgname=python3-pygdbmi version=0.11.0.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" short_desc="Parse gdb machine interface output with Python" From 19ffa80b64662b68699a01b7dbbc97d08a1d6e4d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:31 -0500 Subject: [PATCH 1176/1664] python3-pyfavicon: rebuild for Python 3.14 --- srcpkgs/python3-pyfavicon/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyfavicon/template b/srcpkgs/python3-pyfavicon/template index 226cda5f61278d..6ee637854ee256 100644 --- a/srcpkgs/python3-pyfavicon/template +++ b/srcpkgs/python3-pyfavicon/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyfavicon' pkgname=python3-pyfavicon version=0.1.1 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-BeautifulSoup4 python3-Pillow python3-aiohttp" From 59c5b33e31b094766abe103d23924435424325ee Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:31 -0500 Subject: [PATCH 1177/1664] python3-pydot: rebuild for Python 3.14 --- srcpkgs/python3-pydot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pydot/template b/srcpkgs/python3-pydot/template index 97121ece64b2d1..009876b4517cf1 100644 --- a/srcpkgs/python3-pydot/template +++ b/srcpkgs/python3-pydot/template @@ -1,7 +1,7 @@ # Template file for 'python3-pydot' pkgname=python3-pydot version=4.0.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3 python3-parsing python3-graphviz" From 763c8c875202a1f32070d8bbdb90fa5a4a9cedf3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:31 -0500 Subject: [PATCH 1178/1664] python3-pycotap: rebuild for Python 3.14 --- srcpkgs/python3-pycotap/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pycotap/template b/srcpkgs/python3-pycotap/template index 9db5d3d893468f..d0c387d9ecb531 100644 --- a/srcpkgs/python3-pycotap/template +++ b/srcpkgs/python3-pycotap/template @@ -1,7 +1,7 @@ # Template file for 'python3-pycotap' pkgname=python3-pycotap version=1.2.2 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 3d899927be2c9320404606059ad431cec5dc35d5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:31 -0500 Subject: [PATCH 1179/1664] python3-pyclipper: update to 1.4.0. --- srcpkgs/python3-pyclipper/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-pyclipper/template b/srcpkgs/python3-pyclipper/template index f886bfb3c05619..5aa2d3c367a6eb 100644 --- a/srcpkgs/python3-pyclipper/template +++ b/srcpkgs/python3-pyclipper/template @@ -1,6 +1,6 @@ # Template file for 'python3-pyclipper' pkgname=python3-pyclipper -version=1.3.0.post6 +version=1.4.0 revision=1 build_style=python3-module hostmakedepends="python3-setuptools_scm python3-Cython" @@ -12,7 +12,7 @@ maintainer="Andrew J. Hesford " license="MIT" homepage="https://github.com/fonttools/pyclipper" distfiles="${PYPI_SITE}/p/pyclipper/pyclipper-${version}.tar.gz" -checksum=42bff0102fa7a7f2abdd795a2594654d62b786d0c6cd67b72d469114fdeb608c +checksum=9882bd889f27da78add4dd6f881d25697efc740bf840274e749988d25496c8e1 post_extract() { # Force regeneration of Cython modules From eb7eca9e2917bd807532a9efab49bad80e7be733 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:32 -0500 Subject: [PATCH 1180/1664] python3-pyclip: rebuild for Python 3.14 --- srcpkgs/python3-pyclip/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyclip/template b/srcpkgs/python3-pyclip/template index 1f56da4c08c6b9..a887990546a2ce 100644 --- a/srcpkgs/python3-pyclip/template +++ b/srcpkgs/python3-pyclip/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyclip' pkgname=python3-pyclip version=0.7.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From e77437c3e79a8712118ede56997cdcdb8588f2f0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:32 -0500 Subject: [PATCH 1181/1664] python3-pyFFTW: rebuild for Python 3.14 --- srcpkgs/python3-pyFFTW/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyFFTW/template b/srcpkgs/python3-pyFFTW/template index 9ad81bd28c06af..a3e47da5ca061e 100644 --- a/srcpkgs/python3-pyFFTW/template +++ b/srcpkgs/python3-pyFFTW/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyFFTW' pkgname=python3-pyFFTW version=0.15.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-Cython python3-numpy python3-wheel" makedepends="fftw-devel python3-devel" From fd905e30a6a907c82c2d4301165f5dbc46dd2e72 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:32 -0500 Subject: [PATCH 1182/1664] python3-pwntools: rebuild for Python 3.14 --- srcpkgs/python3-pwntools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pwntools/template b/srcpkgs/python3-pwntools/template index 5955b075154bde..e96af1f9e48b56 100644 --- a/srcpkgs/python3-pwntools/template +++ b/srcpkgs/python3-pwntools/template @@ -1,7 +1,7 @@ # Template file for 'python3-pwntools' pkgname=python3-pwntools version=4.15.0 -revision=1 +revision=2 build_style=python3-module make_install_args="--only-use-pwn-command" hostmakedepends="python3-setuptools python3-devel" From 180b3b8854a5f724a2869c41767d218dfbca6c41 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:32 -0500 Subject: [PATCH 1183/1664] python3-pulsectl-asyncio: rebuild for Python 3.14 --- srcpkgs/python3-pulsectl-asyncio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pulsectl-asyncio/template b/srcpkgs/python3-pulsectl-asyncio/template index e553218eee861e..1e638eacb4f74c 100644 --- a/srcpkgs/python3-pulsectl-asyncio/template +++ b/srcpkgs/python3-pulsectl-asyncio/template @@ -1,7 +1,7 @@ # Template file for 'python3-pulsectl-asyncio' pkgname=python3-pulsectl-asyncio version=1.2.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-pulsectl libpulseaudio" From 53a59ef0c510529bebe7026b5fa3b8f6d4344c06 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:32 -0500 Subject: [PATCH 1184/1664] python3-proselint: rebuild for Python 3.14 --- srcpkgs/python3-proselint/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-proselint/template b/srcpkgs/python3-proselint/template index 3574bc9c0ee150..d77425c4aef82c 100644 --- a/srcpkgs/python3-proselint/template +++ b/srcpkgs/python3-proselint/template @@ -1,7 +1,7 @@ # Template file for 'python3-proselint' pkgname=python3-proselint version=0.12.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-click python3-future python3-six" From 332de1dcc1c0032b185d405717ae2a88980f6dfc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:32 -0500 Subject: [PATCH 1185/1664] python3-progress: rebuild for Python 3.14 --- srcpkgs/python3-progress/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-progress/template b/srcpkgs/python3-progress/template index 1b457a6d580ad1..8528b531040b3c 100644 --- a/srcpkgs/python3-progress/template +++ b/srcpkgs/python3-progress/template @@ -1,7 +1,7 @@ # Template file for 'python3-progress' pkgname=python3-progress version=1.6 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 686cdbfacb6c422088f25eefbad38d28e98056dd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:32 -0500 Subject: [PATCH 1186/1664] python3-process-tests: rebuild for Python 3.14 --- srcpkgs/python3-process-tests/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-process-tests/template b/srcpkgs/python3-process-tests/template index 0a57346a3157c1..74ab468259a345 100644 --- a/srcpkgs/python3-process-tests/template +++ b/srcpkgs/python3-process-tests/template @@ -1,7 +1,7 @@ # Template file for 'python3-process-tests' pkgname=python3-process-tests version=3.0.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 606f12426263935e789ceeb82754fe162dbbdfa6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:33 -0500 Subject: [PATCH 1187/1664] python3-pretend: rebuild for Python 3.14 --- srcpkgs/python3-pretend/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pretend/template b/srcpkgs/python3-pretend/template index a35e9e556536dc..59c829ee895246 100644 --- a/srcpkgs/python3-pretend/template +++ b/srcpkgs/python3-pretend/template @@ -1,7 +1,7 @@ # Template file for 'python3-pretend' pkgname=python3-pretend version=1.0.9 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From fa3bc5631c1e91bfa320c108e4917beb7810646a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:33 -0500 Subject: [PATCH 1188/1664] python3-prctl: rebuild for Python 3.14 --- srcpkgs/python3-prctl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-prctl/template b/srcpkgs/python3-prctl/template index 15f74ccefc7317..d1afea052e4076 100644 --- a/srcpkgs/python3-prctl/template +++ b/srcpkgs/python3-prctl/template @@ -1,7 +1,7 @@ # Template file for 'python3-prctl' pkgname=python3-prctl version=1.7 -revision=11 +revision=12 build_style=python3-module hostmakedepends="python3-setuptools libcap-devel" makedepends="libcap-devel python3-devel" From dbe08ff3c890ba6e2dc4554e65b0738357d1161f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:33 -0500 Subject: [PATCH 1189/1664] python3-pooch: rebuild for Python 3.14 --- srcpkgs/python3-pooch/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pooch/template b/srcpkgs/python3-pooch/template index 144c81e822e25f..7d60797f7c467f 100644 --- a/srcpkgs/python3-pooch/template +++ b/srcpkgs/python3-pooch/template @@ -1,7 +1,7 @@ # Template file for 'python3-pooch' pkgname=python3-pooch version=1.8.2 -revision=2 +revision=3 build_style=python3-pep517 # Fixture not available make_check_args="-k not((test_ftp_downloader)or(test_check_availability_on_ftp))" From 7df4d70ea85bd4e34fc57e7fa838f0b0607aabc0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:33 -0500 Subject: [PATCH 1190/1664] python3-plotly: rebuild for Python 3.14 --- srcpkgs/python3-plotly/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-plotly/template b/srcpkgs/python3-plotly/template index 2fa59509523baf..24fa0413aebf7b 100644 --- a/srcpkgs/python3-plotly/template +++ b/srcpkgs/python3-plotly/template @@ -1,7 +1,7 @@ # Template file for 'python3-plotly' pkgname=python3-plotly version=5.24.1 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-six python3-requests python3-pytz python3-decorator python3-jupyter_nbformat python3-tenacity" From a164ce56565cbe2f95e95ee18409f7512c76efac Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:33 -0500 Subject: [PATCH 1191/1664] python3-pkginfo: rebuild for Python 3.14 --- srcpkgs/python3-pkginfo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pkginfo/template b/srcpkgs/python3-pkginfo/template index 347725aa9f5904..3a18e4a508fc72 100644 --- a/srcpkgs/python3-pkginfo/template +++ b/srcpkgs/python3-pkginfo/template @@ -1,7 +1,7 @@ # Template file for 'python3-pkginfo' pkgname=python3-pkginfo version=1.8.3 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 80e02f9e6df2134d8fdcbf0f173f7b67cc83ad12 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:33 -0500 Subject: [PATCH 1192/1664] python3-pipx: rebuild for Python 3.14 --- srcpkgs/python3-pipx/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pipx/template b/srcpkgs/python3-pipx/template index 70176e9cd3bc65..d2cd75fac194e1 100644 --- a/srcpkgs/python3-pipx/template +++ b/srcpkgs/python3-pipx/template @@ -1,7 +1,7 @@ # Template file for 'python3-pipx' pkgname=python3-pipx version=1.8.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3-argcomplete python3-packaging python3-platformdirs python3-userpath" From 3ba9db42d2d8cc6105ebfd152bcf89418b39a0c3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:34 -0500 Subject: [PATCH 1193/1664] python3-pipenv: rebuild for Python 3.14 --- srcpkgs/python3-pipenv/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pipenv/template b/srcpkgs/python3-pipenv/template index d0bb99088a9296..4d951609d3199d 100644 --- a/srcpkgs/python3-pipenv/template +++ b/srcpkgs/python3-pipenv/template @@ -1,7 +1,7 @@ # Template file for 'python3-pipenv' pkgname=python3-pipenv version=2025.0.4 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3 python3-certifi python3-packaging python3-pip From a07ec73fa8b8614867bcbd543bdf6bf40558f78f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:34 -0500 Subject: [PATCH 1194/1664] python3-pillow-avif: rebuild for Python 3.14 --- .../patches/fix-version-detection.patch | 34 +++++++++++++++++++ srcpkgs/python3-pillow-avif/template | 10 ++++-- 2 files changed, 41 insertions(+), 3 deletions(-) create mode 100644 srcpkgs/python3-pillow-avif/patches/fix-version-detection.patch diff --git a/srcpkgs/python3-pillow-avif/patches/fix-version-detection.patch b/srcpkgs/python3-pillow-avif/patches/fix-version-detection.patch new file mode 100644 index 00000000000000..5f4dccc696a9ad --- /dev/null +++ b/srcpkgs/python3-pillow-avif/patches/fix-version-detection.patch @@ -0,0 +1,34 @@ +--- ./setup.py.orig 2025-11-17 14:12:01.808011870 -0500 ++++ ./setup.py 2025-11-17 14:14:43.996459608 -0500 +@@ -1,22 +1,9 @@ +-import ast + from io import open + import os + import sys + + from setuptools import Extension, setup + +- +-def version(): +- filename = "src/pillow_avif/__init__.py" +- with open(filename) as f: +- tree = ast.parse(f.read(), filename) +- for node in tree.body: +- if isinstance(node, ast.Assign) and len(node.targets) == 1: +- (target,) = node.targets +- if isinstance(target, ast.Name) and target.id == "__version__": +- return node.value.s +- +- + def readme(): + try: + with open("README.md") as f: +@@ -54,7 +41,7 @@ + description="A pillow plugin that adds avif support via libavif", + long_description=readme(), + long_description_content_type="text/markdown", +- version=version(), ++ version='@@VERSION@@', + ext_modules=[ + Extension( + "pillow_avif._avif", diff --git a/srcpkgs/python3-pillow-avif/template b/srcpkgs/python3-pillow-avif/template index f68956e1c82392..f8fcd76c80e32a 100644 --- a/srcpkgs/python3-pillow-avif/template +++ b/srcpkgs/python3-pillow-avif/template @@ -1,9 +1,9 @@ # Template file for 'python3-pillow-avif' pkgname=python3-pillow-avif version=1.5.2 -revision=1 -build_style=python3-module -hostmakedepends="pkg-config python3-Pillow python3-setuptools" +revision=2 +build_style=python3-pep517 +hostmakedepends="pkg-config python3-setuptools" makedepends="python3-devel libavif-devel" depends="python3-Pillow" short_desc="Pillow plugin that adds avif support via libavif" @@ -14,6 +14,10 @@ changelog="https://raw.githubusercontent.com/fdintino/pillow-avif-plugin/refs/he distfiles="https://github.com/fdintino/pillow-avif-plugin/archive/refs/tags/v${version}.tar.gz" checksum=ca224a3ba77cc2ccc5a4e3a7e081c2c0914ea1481fdeb4c4c007e04d8675c5fe +post_patch() { + vsed -e "s/@@VERSION@@/${version}/" -i setup.py +} + post_install() { vlicense LICENSE } From c59665abe482bcc92a1375a0bcf30efadae402f7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:34 -0500 Subject: [PATCH 1195/1664] python3-picamera: rebuild for Python 3.14 --- srcpkgs/python3-picamera/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-picamera/template b/srcpkgs/python3-picamera/template index 493d48cacee053..977110c907ff0e 100644 --- a/srcpkgs/python3-picamera/template +++ b/srcpkgs/python3-picamera/template @@ -1,7 +1,7 @@ # Template file for 'python3-picamera' pkgname=python3-picamera version=1.13 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From f16d1cbd57cb3b98529b361f90e63945dcb7e97c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:34 -0500 Subject: [PATCH 1196/1664] python3-pgzero: rebuild for Python 3.14 --- srcpkgs/python3-pgzero/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pgzero/template b/srcpkgs/python3-pgzero/template index b43b3142e65ef5..00c0e82e7933fc 100644 --- a/srcpkgs/python3-pgzero/template +++ b/srcpkgs/python3-pgzero/template @@ -1,7 +1,7 @@ # Template file for 'python3-pgzero' pkgname=python3-pgzero version=1.2.1 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-pygame python3-numpy" From 78571a6e5b20ec019a178353093d3f10af00eb8b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:34 -0500 Subject: [PATCH 1197/1664] python3-pgmigrate: rebuild for Python 3.14 --- srcpkgs/python3-pgmigrate/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pgmigrate/template b/srcpkgs/python3-pgmigrate/template index 9d101f3cfeb320..f347941e43ac23 100644 --- a/srcpkgs/python3-pgmigrate/template +++ b/srcpkgs/python3-pgmigrate/template @@ -1,7 +1,7 @@ # Template file for 'python3-pgmigrate' pkgname=python3-pgmigrate version=1.0.5 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 python3-sqlparse python3-psycopg2 python3-yaml" From 8a0116c0fc956a06ba1ad5f43f5a9fe68d3b330b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:34 -0500 Subject: [PATCH 1198/1664] python3-perf: rebuild for Python 3.14 --- srcpkgs/python3-perf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-perf/template b/srcpkgs/python3-perf/template index c006ea8b3a6105..ed1aaa8ac96f69 100644 --- a/srcpkgs/python3-perf/template +++ b/srcpkgs/python3-perf/template @@ -1,7 +1,7 @@ # Template file for 'python3-perf' pkgname=python3-perf version=1.7.0 -revision=6 +revision=7 build_style=python3-module pycompile_module="pyperf" hostmakedepends="python3-setuptools" From e1c6438d3ec020250d2d1116e4134b2c0d268888 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:34 -0500 Subject: [PATCH 1199/1664] python3-pep440: rebuild for Python 3.14 --- srcpkgs/python3-pep440/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pep440/template b/srcpkgs/python3-pep440/template index c9e6ed8ab9b39e..45f03ebfebde0a 100644 --- a/srcpkgs/python3-pep440/template +++ b/srcpkgs/python3-pep440/template @@ -1,7 +1,7 @@ # Template file for 'python3-pep440' pkgname=python3-pep440 version=0.1.2 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-flit_core" checkdepends="python3-pytest-console-scripts" From cbb58384b645eef78268414cf0d2a820bf1c4951 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:35 -0500 Subject: [PATCH 1200/1664] python3-pbkdf2: rebuild for Python 3.14 --- srcpkgs/python3-pbkdf2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pbkdf2/template b/srcpkgs/python3-pbkdf2/template index 0bac18be07d5f7..da57d40d041162 100644 --- a/srcpkgs/python3-pbkdf2/template +++ b/srcpkgs/python3-pbkdf2/template @@ -1,7 +1,7 @@ # Template file for 'python3-pbkdf2' pkgname=python3-pbkdf2 version=1.3 -revision=11 +revision=12 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From e9a70303040497a3b3a0e5360b8ebcf102227c18 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:35 -0500 Subject: [PATCH 1201/1664] python3-pathvalidate: rebuild for Python 3.14 --- srcpkgs/python3-pathvalidate/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pathvalidate/template b/srcpkgs/python3-pathvalidate/template index 312b115ea78ad5..f82b0aef01fe7c 100644 --- a/srcpkgs/python3-pathvalidate/template +++ b/srcpkgs/python3-pathvalidate/template @@ -1,7 +1,7 @@ # Template file for 'python3-pathvalidate' pkgname=python3-pathvalidate version=2.5.2 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 413fb1163328b1833f3cab6f035e3ed62d121cda Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:35 -0500 Subject: [PATCH 1202/1664] python3-pathtools: rebuild for Python 3.14 --- srcpkgs/python3-pathtools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pathtools/template b/srcpkgs/python3-pathtools/template index 76cea466446dea..8f69718cdb6a47 100644 --- a/srcpkgs/python3-pathtools/template +++ b/srcpkgs/python3-pathtools/template @@ -1,7 +1,7 @@ # Template file for 'python3-pathtools' pkgname=python3-pathtools version=0.1.2 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 2ca117b78d982b2662c072c84ae5e1c7e9aa7146 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:35 -0500 Subject: [PATCH 1203/1664] python3-pathlib2: rebuild for Python 3.14 --- srcpkgs/python3-pathlib2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pathlib2/template b/srcpkgs/python3-pathlib2/template index 58871dd5aa7a3f..e4d38b05d2bfc9 100644 --- a/srcpkgs/python3-pathlib2/template +++ b/srcpkgs/python3-pathlib2/template @@ -1,7 +1,7 @@ # Template file for 'python3-pathlib2' pkgname=python3-pathlib2 version=2.3.4 -revision=11 +revision=12 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-six" From 53fd58a46acb07369c89af9c38fbeb63778eed57 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:35 -0500 Subject: [PATCH 1204/1664] python3-path: rebuild for Python 3.14 --- srcpkgs/python3-path/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-path/template b/srcpkgs/python3-path/template index 85e32f4c8c8fce..de21ec264c5e4a 100644 --- a/srcpkgs/python3-path/template +++ b/srcpkgs/python3-path/template @@ -1,7 +1,7 @@ # Template file for 'python3-path' pkgname=python3-path version=17.1.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" depends="python3" From 1bdaaa5f4f3212a4add60497d3c2661dff45f4b3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:35 -0500 Subject: [PATCH 1205/1664] python3-parver: rebuild for Python 3.14 --- srcpkgs/python3-parver/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-parver/template b/srcpkgs/python3-parver/template index 15e802e1bf3394..9478e82c213ffd 100644 --- a/srcpkgs/python3-parver/template +++ b/srcpkgs/python3-parver/template @@ -1,7 +1,7 @@ # Template file for 'python3-parver' pkgname=python3-parver version=0.4 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3-Arpeggio python3-attrs" From d5931372e8e61afc3b3f19a3994fb918a8ed4c98 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:36 -0500 Subject: [PATCH 1206/1664] python3-parameterized: rebuild for Python 3.14 --- srcpkgs/python3-parameterized/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-parameterized/template b/srcpkgs/python3-parameterized/template index 121d655d6e4590..4ec7e7c379754c 100644 --- a/srcpkgs/python3-parameterized/template +++ b/srcpkgs/python3-parameterized/template @@ -1,7 +1,7 @@ # Template file for 'python3-parameterized' pkgname=python3-parameterized version=0.9.0 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 75ed2c75df4120973411cc8f32cba08bb94bbc80 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:36 -0500 Subject: [PATCH 1207/1664] python3-paho_mqtt: rebuild for Python 3.14 --- srcpkgs/python3-paho_mqtt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-paho_mqtt/template b/srcpkgs/python3-paho_mqtt/template index b7da04e13ab8c3..e5f4198f35233c 100644 --- a/srcpkgs/python3-paho_mqtt/template +++ b/srcpkgs/python3-paho_mqtt/template @@ -1,7 +1,7 @@ # Template file for 'python3-paho_mqtt' pkgname=python3-paho_mqtt version=2.1.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3" From 8a1b9ffc45d24d971f537fbee709230c47229288 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:36 -0500 Subject: [PATCH 1208/1664] python3-owm: rebuild for Python 3.14 --- srcpkgs/python3-owm/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-owm/template b/srcpkgs/python3-owm/template index 6ac4af12f44a60..e1514ee297c17e 100644 --- a/srcpkgs/python3-owm/template +++ b/srcpkgs/python3-owm/template @@ -1,7 +1,7 @@ # Template file for 'python3-owm' pkgname=python3-owm version=2.10 -revision=7 +revision=8 build_style=python3-module pycompile_module="pyowm" hostmakedepends="python3-setuptools" From 300a6f899d2b0145e224a1f2d127c1816f019124 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:36 -0500 Subject: [PATCH 1209/1664] python3-orocos-kdl: rebuild for Python 3.14 --- srcpkgs/python3-orocos-kdl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-orocos-kdl/template b/srcpkgs/python3-orocos-kdl/template index e8bdcd246056e9..1598555b38129f 100644 --- a/srcpkgs/python3-orocos-kdl/template +++ b/srcpkgs/python3-orocos-kdl/template @@ -1,7 +1,7 @@ # Template file for 'python3-orocos-kdl' pkgname=python3-orocos-kdl version=1.5.1 -revision=1 +revision=2 build_wrksrc=python_orocos_kdl build_style=cmake configure_args="-DPYTHON_VERSION=3" From 1c2fcd1deb656c711826579bbb0405a4fffff889 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:36 -0500 Subject: [PATCH 1210/1664] python3-openapi-core: rebuild for Python 3.14 --- srcpkgs/python3-openapi-core/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-openapi-core/template b/srcpkgs/python3-openapi-core/template index f06c3b3b60530a..e68ed411400e41 100644 --- a/srcpkgs/python3-openapi-core/template +++ b/srcpkgs/python3-openapi-core/template @@ -1,7 +1,7 @@ # Template file for 'python3-openapi-core' pkgname=python3-openapi-core version=0.19.4 -revision=1 +revision=2 build_style=python3-pep517 # disable tests requiring unpackaged dependencies make_check_args=" From d44b13807550e37d177bbd419c05314e1bbcaeb3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:36 -0500 Subject: [PATCH 1211/1664] python3-openai: rebuild for Python 3.14 --- srcpkgs/python3-openai/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-openai/template b/srcpkgs/python3-openai/template index ba8df652574431..89a01ab2aca140 100644 --- a/srcpkgs/python3-openai/template +++ b/srcpkgs/python3-openai/template @@ -1,7 +1,7 @@ # Template file for 'python3-openai' pkgname=python3-openai version=1.12.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel hatchling" depends="python3-requests python3-numpy python3-pandas python3-tqdm python3-openpyxl python3-pydantic python3-httpx python3-distro" From 851e87527fef2b3035030b75b519d013aec498f5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:36 -0500 Subject: [PATCH 1212/1664] python3-opcua: rebuild for Python 3.14 --- srcpkgs/python3-opcua/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-opcua/template b/srcpkgs/python3-opcua/template index a26952ac76adc0..69d53070ed55fd 100644 --- a/srcpkgs/python3-opcua/template +++ b/srcpkgs/python3-opcua/template @@ -1,7 +1,7 @@ # Template file for 'python3-opcua' pkgname=python3-opcua version=0.98.13 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-cryptography python3-dateutil python3-lxml python3-pytz" From 641be107c994c0a46c10faccd15ed4dc402db117 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:37 -0500 Subject: [PATCH 1213/1664] python3-ocrmypdf: rebuild for Python 3.14 --- srcpkgs/python3-ocrmypdf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ocrmypdf/template b/srcpkgs/python3-ocrmypdf/template index 2c3d2b0be6651d..a89be684eb8161 100644 --- a/srcpkgs/python3-ocrmypdf/template +++ b/srcpkgs/python3-ocrmypdf/template @@ -1,7 +1,7 @@ # Template file for 'python3-ocrmypdf' pkgname=python3-ocrmypdf version=16.11.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3-deprecation img2pdf python3-packaging python3-pdfminer.six From facf0af75b77a1b292e9cbd0c9e37d502dc93e2e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:37 -0500 Subject: [PATCH 1214/1664] python3-occ: rebuild for Python 3.14 --- srcpkgs/python3-occ/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-occ/template b/srcpkgs/python3-occ/template index 47a3548b494728..427a73ee4d3b40 100644 --- a/srcpkgs/python3-occ/template +++ b/srcpkgs/python3-occ/template @@ -1,7 +1,7 @@ # Template file for 'python3-occ' pkgname=python3-occ version=7.9.0 -revision=1 +revision=2 archs="i686* x86_64* armv7l* aarch64* ppc*" build_style=cmake configure_args="-DPYTHONOCC_BUILD_TYPE=None -DCMAKE_BUILD_TYPE=None -DPYTHONOCC_MESHDS_NUMPY=ON" From 82a60a00f1704722cd8ba1a2d4470824313e434e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:37 -0500 Subject: [PATCH 1215/1664] python3-objgraph: rebuild for Python 3.14 --- srcpkgs/python3-objgraph/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-objgraph/template b/srcpkgs/python3-objgraph/template index 69728c79bbb900..97386966dfcad2 100644 --- a/srcpkgs/python3-objgraph/template +++ b/srcpkgs/python3-objgraph/template @@ -1,7 +1,7 @@ # Template file for 'python3-objgraph' pkgname=python3-objgraph version=3.6.2 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="graphviz" From d9e2a24ff44ef015ddfdafd55be18d68a6aa136a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:37 -0500 Subject: [PATCH 1216/1664] python3-numpy-stl: rebuild for Python 3.14 --- srcpkgs/python3-numpy-stl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-numpy-stl/template b/srcpkgs/python3-numpy-stl/template index 84eb1f4b9fa277..8a6398fa203097 100644 --- a/srcpkgs/python3-numpy-stl/template +++ b/srcpkgs/python3-numpy-stl/template @@ -1,7 +1,7 @@ # Template file for 'python3-numpy-stl' pkgname=python3-numpy-stl version=2.17.1 -revision=5 +revision=6 build_style=python3-module build_helper="numpy" # skip flake8 tests From c72c9021a8ed8babbb5781337fafc94cdcf7264c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:37 -0500 Subject: [PATCH 1217/1664] python3-numexpr: rebuild for Python 3.14 --- srcpkgs/python3-numexpr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-numexpr/template b/srcpkgs/python3-numexpr/template index 155ff6cf49aa65..4611646f769d89 100644 --- a/srcpkgs/python3-numexpr/template +++ b/srcpkgs/python3-numexpr/template @@ -1,7 +1,7 @@ # Template file for 'python3-numexpr' pkgname=python3-numexpr version=2.10.2 -revision=1 +revision=2 build_style=python3-pep517 build_helper="numpy" make_check_args="-k not(test_max_threads_unset)" From e967f3723dd66c6d0b59a6d762208ea4bb2b034c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:37 -0500 Subject: [PATCH 1218/1664] python3-ntplib: rebuild for Python 3.14 --- srcpkgs/python3-ntplib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ntplib/template b/srcpkgs/python3-ntplib/template index 9f2185e45130a9..6c083e58d6594b 100644 --- a/srcpkgs/python3-ntplib/template +++ b/srcpkgs/python3-ntplib/template @@ -1,7 +1,7 @@ # Template file for 'python3-ntplib' pkgname=python3-ntplib version=0.3.4 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 739e12d73bb909e2737617d78c0a14e4ac836cde Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:38 -0500 Subject: [PATCH 1219/1664] python3-ntlm-auth: rebuild for Python 3.14 --- srcpkgs/python3-ntlm-auth/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ntlm-auth/template b/srcpkgs/python3-ntlm-auth/template index 91b8dede054bfd..eb630091db188b 100644 --- a/srcpkgs/python3-ntlm-auth/template +++ b/srcpkgs/python3-ntlm-auth/template @@ -1,7 +1,7 @@ # Template file for 'python3-ntlm-auth' pkgname=python3-ntlm-auth version=1.5.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 python3-six python3-cryptography" From 80988da2fe343d1f711ce68dbd607abcacb7a766 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:38 -0500 Subject: [PATCH 1220/1664] python3-npyscreen: rebuild for Python 3.14 --- srcpkgs/python3-npyscreen/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-npyscreen/template b/srcpkgs/python3-npyscreen/template index 52a81bf9999eb4..72d2dcf8c02064 100644 --- a/srcpkgs/python3-npyscreen/template +++ b/srcpkgs/python3-npyscreen/template @@ -1,7 +1,7 @@ # Template file for 'python3-npyscreen' pkgname=python3-npyscreen version=4.10.5.1 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From a1d2a39a9c59b3692451a0f9a241242fd53fde82 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:38 -0500 Subject: [PATCH 1221/1664] python3-nose2: rebuild for Python 3.14 --- srcpkgs/python3-nose2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-nose2/template b/srcpkgs/python3-nose2/template index a7325f212ca9e7..dcbb3afd8a50f2 100644 --- a/srcpkgs/python3-nose2/template +++ b/srcpkgs/python3-nose2/template @@ -1,7 +1,7 @@ # Template file for 'python3-nose2' pkgname=python3-nose2 version=0.15.1 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-coverage python3-six" From 366378a1c919282ffdecf95dc8bb81e50fb6f19b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:38 -0500 Subject: [PATCH 1222/1664] python3-niapy: rebuild for Python 3.14 --- srcpkgs/python3-niapy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-niapy/template b/srcpkgs/python3-niapy/template index 01b769a886854f..2e47889dc2eb58 100644 --- a/srcpkgs/python3-niapy/template +++ b/srcpkgs/python3-niapy/template @@ -1,7 +1,7 @@ # Template file for 'python3-niapy' pkgname=python3-niapy version=2.3.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-numpy python3-openpyxl python3-pandas python3-matplotlib" From cbd84ccc94ed8010e6bf92b9047b0ebbbfccb78c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:38 -0500 Subject: [PATCH 1223/1664] python3-ndg_httpsclient: rebuild for Python 3.14 --- srcpkgs/python3-ndg_httpsclient/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ndg_httpsclient/template b/srcpkgs/python3-ndg_httpsclient/template index fbc4f2f229a019..a18aea9b572709 100644 --- a/srcpkgs/python3-ndg_httpsclient/template +++ b/srcpkgs/python3-ndg_httpsclient/template @@ -1,7 +1,7 @@ # Template file for 'python3-ndg_httpsclient' pkgname=python3-ndg_httpsclient version=0.5.1 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-openssl python3-pyasn1" From c112513dfd31ae18ff09666ebcd0daa6b46b61f7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:38 -0500 Subject: [PATCH 1224/1664] python3-nbclassic: rebuild for Python 3.14 --- srcpkgs/python3-nbclassic/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-nbclassic/template b/srcpkgs/python3-nbclassic/template index 53c0599842fc02..70de6114c24b85 100644 --- a/srcpkgs/python3-nbclassic/template +++ b/srcpkgs/python3-nbclassic/template @@ -1,7 +1,7 @@ # Template file for 'python3-nbclassic' pkgname=python3-nbclassic version=1.3.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-jupyter-builder python3-jupyter_server python3-setuptools python3-Babel yarn" From b697a39a686e31352f394c8d1c355feb06d551bc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:38 -0500 Subject: [PATCH 1225/1664] python3-namedlist: rebuild for Python 3.14 --- srcpkgs/python3-namedlist/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-namedlist/template b/srcpkgs/python3-namedlist/template index d553f8f4f9e931..272631345c343a 100644 --- a/srcpkgs/python3-namedlist/template +++ b/srcpkgs/python3-namedlist/template @@ -1,7 +1,7 @@ # Template file for 'python3-namedlist' pkgname=python3-namedlist version=1.8 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 1879e3befbfed4edf7993aaead42742db23a1426 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:39 -0500 Subject: [PATCH 1226/1664] python3-mysqlclient: rebuild for Python 3.14 --- srcpkgs/python3-mysqlclient/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mysqlclient/template b/srcpkgs/python3-mysqlclient/template index 94cdca2f4ddd60..eb94e696be9275 100644 --- a/srcpkgs/python3-mysqlclient/template +++ b/srcpkgs/python3-mysqlclient/template @@ -1,7 +1,7 @@ # Template file for 'python3-mysqlclient' pkgname=python3-mysqlclient version=1.3.14 -revision=11 +revision=12 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="libmariadbclient-devel python3-devel zlib-devel openssl-devel" From f2c066fdde26e5944a7e15e773f49f6aad62fed0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:39 -0500 Subject: [PATCH 1227/1664] python3-mypy: rebuild for Python 3.14 --- srcpkgs/python3-mypy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mypy/template b/srcpkgs/python3-mypy/template index c134968ed06d6e..b324af62dfc684 100644 --- a/srcpkgs/python3-mypy/template +++ b/srcpkgs/python3-mypy/template @@ -1,7 +1,7 @@ # Template file for 'python3-mypy' pkgname=python3-mypy version=1.8.0 -revision=2 +revision=3 build_style=python3-module # fails in ci make_check_args="-k not(testDaemonStatusKillRestartRecheck)" From 42f816294f6f9e07a42aa6b3a5e78f0407bf184a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:39 -0500 Subject: [PATCH 1228/1664] python3-munkres: rebuild for Python 3.14 --- srcpkgs/python3-munkres/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-munkres/template b/srcpkgs/python3-munkres/template index 08d555dfcd160f..bdd1afa34929df 100644 --- a/srcpkgs/python3-munkres/template +++ b/srcpkgs/python3-munkres/template @@ -1,7 +1,7 @@ # Template file for 'python3-munkres' pkgname=python3-munkres version=1.1.4 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 61b8a29361513dc64e98c0f10f5e7c2e0fb31939 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:39 -0500 Subject: [PATCH 1229/1664] python3-mtranslate: rebuild for Python 3.14 --- srcpkgs/python3-mtranslate/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mtranslate/template b/srcpkgs/python3-mtranslate/template index 680b68f957d74c..0949b11f48261b 100644 --- a/srcpkgs/python3-mtranslate/template +++ b/srcpkgs/python3-mtranslate/template @@ -1,7 +1,7 @@ # Template file for 'python3-mtranslate' pkgname=python3-mtranslate version=1.8 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 73e48c269d292842d2d2113210133555d4905947 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:39 -0500 Subject: [PATCH 1230/1664] python3-mpi4py: rebuild for Python 3.14 --- srcpkgs/python3-mpi4py/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mpi4py/template b/srcpkgs/python3-mpi4py/template index de6d7a64e2c9e1..afeb60273a5fd4 100644 --- a/srcpkgs/python3-mpi4py/template +++ b/srcpkgs/python3-mpi4py/template @@ -1,7 +1,7 @@ # Template file for 'python3-mpi4py' pkgname=python3-mpi4py version=4.1.1 -revision=1 +revision=2 # OpenMPI >= 5 is 64-bit only archs="x86_64* aarch64* ppc64* riscv64*" build_style=python3-module From b517b95fd3928d2e6a3ced4e6a81f3f6dff38ceb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:39 -0500 Subject: [PATCH 1231/1664] python3-mpdnotify: rebuild for Python 3.14 --- srcpkgs/python3-mpdnotify/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mpdnotify/template b/srcpkgs/python3-mpdnotify/template index cd2cf4bdf547ce..fd62ac66a50347 100644 --- a/srcpkgs/python3-mpdnotify/template +++ b/srcpkgs/python3-mpdnotify/template @@ -1,7 +1,7 @@ # Template file for 'python3-mpdnotify' pkgname=python3-mpdnotify version=1.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools python3-Pillow python3-mpd2" depends="libnotify python3-mpd2 python3-Pillow python3-setuptools" From 4f8e485106048e92994c9ae96f4ec94d6b10e848 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:39 -0500 Subject: [PATCH 1232/1664] python3-mock: rebuild for Python 3.14 --- srcpkgs/python3-mock/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mock/template b/srcpkgs/python3-mock/template index 13fb37404ef06b..4686c2ef01123d 100644 --- a/srcpkgs/python3-mock/template +++ b/srcpkgs/python3-mock/template @@ -1,7 +1,7 @@ # Template file for 'python3-mock' pkgname=python3-mock version=5.2.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From c1886e803b87ba0ff73c8a19d9247b68bf5bfa9c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:40 -0500 Subject: [PATCH 1233/1664] python3-misaka: rebuild for Python 3.14 --- srcpkgs/python3-misaka/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-misaka/template b/srcpkgs/python3-misaka/template index 8d65413df8a429..38b6929dcef21c 100644 --- a/srcpkgs/python3-misaka/template +++ b/srcpkgs/python3-misaka/template @@ -1,7 +1,7 @@ # Template file for 'python3-misaka' pkgname=python3-misaka version=2.1.1 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools python3-cffi" makedepends="python3-devel libffi-devel" From 6baa6774a480ca48680ac421f840cceff00b9b71 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:40 -0500 Subject: [PATCH 1234/1664] python3-miniupnpc: rebuild for Python 3.14 --- srcpkgs/python3-miniupnpc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-miniupnpc/template b/srcpkgs/python3-miniupnpc/template index 3519444df6b064..2d9bdce71cf10c 100644 --- a/srcpkgs/python3-miniupnpc/template +++ b/srcpkgs/python3-miniupnpc/template @@ -1,7 +1,7 @@ # Template file for 'python3-miniupnpc' pkgname=python3-miniupnpc version=2.0.2 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel miniupnpc-devel" From 6e0c5cf19b2c47cf44f5651ade3b730d7a0088e9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:40 -0500 Subject: [PATCH 1235/1664] python3-md2gemini: rebuild for Python 3.14 --- srcpkgs/python3-md2gemini/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-md2gemini/template b/srcpkgs/python3-md2gemini/template index 620ed8b07a2a6e..be6e8bc819abcf 100644 --- a/srcpkgs/python3-md2gemini/template +++ b/srcpkgs/python3-md2gemini/template @@ -1,7 +1,7 @@ # Template file for 'python3-md2gemini' pkgname=python3-md2gemini version=1.9.1 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools python3-mistune2 python3-cjkwrap python3-wcwidth" From 4c2fd6db60bb838bffcf81aef0240b400ff57356 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:40 -0500 Subject: [PATCH 1236/1664] python3-marisa-trie: rebuild for Python 3.14 --- srcpkgs/python3-marisa-trie/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-marisa-trie/template b/srcpkgs/python3-marisa-trie/template index fcc465e58fb34d..316c4f99ac2978 100644 --- a/srcpkgs/python3-marisa-trie/template +++ b/srcpkgs/python3-marisa-trie/template @@ -1,7 +1,7 @@ # Template file for 'python3-marisa-trie' pkgname=python3-marisa-trie version=0.7.5 -revision=11 +revision=12 build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" makedepends="python3-devel" From f116f7731ae739bad9a97f01e39bcd423aa3c881 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:40 -0500 Subject: [PATCH 1237/1664] python3-makefun: rebuild for Python 3.14 --- srcpkgs/python3-makefun/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-makefun/template b/srcpkgs/python3-makefun/template index e936fc0a9767ba..abcbb1aa102d61 100644 --- a/srcpkgs/python3-makefun/template +++ b/srcpkgs/python3-makefun/template @@ -1,7 +1,7 @@ # Template file for 'python3-makefun' pkgname=python3-makefun version=1.15.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3" From 66c72834c56d97237f50de2f82dc96541b36f743 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:40 -0500 Subject: [PATCH 1238/1664] python3-macholib: rebuild for Python 3.14 --- srcpkgs/python3-macholib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template index e6486942250fbe..d201027b8fa95a 100644 --- a/srcpkgs/python3-macholib/template +++ b/srcpkgs/python3-macholib/template @@ -1,7 +1,7 @@ # Template file for 'python3-macholib' pkgname=python3-macholib version=1.16.2 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-altgraph python3-setuptools" From 0415b054bbd29eaca50b0337ecae4686c153010a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:41 -0500 Subject: [PATCH 1239/1664] python3-listparser: rebuild for Python 3.14 --- srcpkgs/python3-listparser/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-listparser/template b/srcpkgs/python3-listparser/template index 1f51aeef50f9a0..c8820fc3d62695 100644 --- a/srcpkgs/python3-listparser/template +++ b/srcpkgs/python3-listparser/template @@ -1,7 +1,7 @@ # Template file for 'python3-listparser' pkgname=python3-listparser version=0.18 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 1f26b9cb5f9c5a6db3b2010fc4c42e961608b5e4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:41 -0500 Subject: [PATCH 1240/1664] python3-libevdev: rebuild for Python 3.14 --- srcpkgs/python3-libevdev/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-libevdev/template b/srcpkgs/python3-libevdev/template index 13cf844f3df3c5..e84d1e25578529 100644 --- a/srcpkgs/python3-libevdev/template +++ b/srcpkgs/python3-libevdev/template @@ -1,7 +1,7 @@ # Template file for 'python3-libevdev' pkgname=python3-libevdev version=0.9 -revision=6 +revision=7 _githash=5cc6bd17be733f87c77726fee2a6fa760f413a3e build_style=python3-module hostmakedepends="python3-setuptools" From 766f512cd10f9cba0d87a4044f8b65dc01cfdf1e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:41 -0500 Subject: [PATCH 1241/1664] python3-ldap: rebuild for Python 3.14 --- srcpkgs/python3-ldap/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ldap/template b/srcpkgs/python3-ldap/template index 7f9bdaa31d2343..e7251c2304297f 100644 --- a/srcpkgs/python3-ldap/template +++ b/srcpkgs/python3-ldap/template @@ -1,7 +1,7 @@ # Template file for 'python3-ldap' pkgname=python3-ldap version=3.4.3 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools python3-wheel python3-pyasn1-modules" makedepends="python3-devel libldap-devel" From 5015d6a6d538957fcbdde00e09fe14eea0c46578 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:41 -0500 Subject: [PATCH 1242/1664] python3-lark: rebuild for Python 3.14 --- srcpkgs/python3-lark/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-lark/template b/srcpkgs/python3-lark/template index 5419a34d87a98a..e244adbd4734b9 100644 --- a/srcpkgs/python3-lark/template +++ b/srcpkgs/python3-lark/template @@ -1,7 +1,7 @@ # Template file for 'python3-lark' pkgname=python3-lark version=1.3.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-setuptools_scm python3-wheel" depends="python3" From cccd952dbfd220c5cab106492705cf68bf5b6326 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:41 -0500 Subject: [PATCH 1243/1664] python3-keyrings-alt: rebuild for Python 3.14 --- srcpkgs/python3-keyrings-alt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-keyrings-alt/template b/srcpkgs/python3-keyrings-alt/template index 8ac81a241450b9..c8d6de537767a7 100644 --- a/srcpkgs/python3-keyrings-alt/template +++ b/srcpkgs/python3-keyrings-alt/template @@ -1,7 +1,7 @@ # Template file for 'python3-keyrings-alt' pkgname=python3-keyrings-alt version=4.1.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3-keyring" From ca3b649bff3d7b00b6d179810f4af1ad03880955 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:41 -0500 Subject: [PATCH 1244/1664] python3-kaptan: rebuild for Python 3.14 --- srcpkgs/python3-kaptan/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-kaptan/template b/srcpkgs/python3-kaptan/template index 24941295f10d5e..1b83700cce362a 100644 --- a/srcpkgs/python3-kaptan/template +++ b/srcpkgs/python3-kaptan/template @@ -1,7 +1,7 @@ # Template file for 'python3-kaptan' pkgname=python3-kaptan version=0.5.12 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 python3-yaml" From 98d07fca8f69a8957b994699a9f4120280a3e096 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:41 -0500 Subject: [PATCH 1245/1664] python3-jupyterlab-lsp: rebuild for Python 3.14 --- srcpkgs/python3-jupyterlab-lsp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jupyterlab-lsp/template b/srcpkgs/python3-jupyterlab-lsp/template index 7835a6bb8b6d93..bd4fbe646f7d81 100644 --- a/srcpkgs/python3-jupyterlab-lsp/template +++ b/srcpkgs/python3-jupyterlab-lsp/template @@ -1,7 +1,7 @@ # Template file for 'python3-jupyterlab-lsp' pkgname=python3-jupyterlab-lsp version=5.1.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3-jupyter-lsp jupyterlab" From 12db04f400d34436ee9ae54d807b87ed293f9f08 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:42 -0500 Subject: [PATCH 1246/1664] python3-jupyter_qtconsole: rebuild for Python 3.14 --- srcpkgs/python3-jupyter_qtconsole/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jupyter_qtconsole/template b/srcpkgs/python3-jupyter_qtconsole/template index bff973dcbe732e..5e8c39bd2378cd 100644 --- a/srcpkgs/python3-jupyter_qtconsole/template +++ b/srcpkgs/python3-jupyter_qtconsole/template @@ -1,7 +1,7 @@ # Template file for 'python3-jupyter_qtconsole' pkgname=python3-jupyter_qtconsole version=5.6.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-traitlets python3-jupyter_core python3-jupyter_client From 9ac2b75a92eebcf039e3dea93b83f9de173246ce Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:42 -0500 Subject: [PATCH 1247/1664] python3-jupyter: rebuild for Python 3.14 --- srcpkgs/python3-jupyter/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jupyter/template b/srcpkgs/python3-jupyter/template index e0a5b9eae11a21..5603b3a455cf22 100644 --- a/srcpkgs/python3-jupyter/template +++ b/srcpkgs/python3-jupyter/template @@ -3,7 +3,7 @@ # THIS PACKAGE WAS SPLIT FROM python3-jupyter_core TO AVOID A DEPENDENCY CYCLE pkgname=python3-jupyter version=4.7.1 -revision=5 +revision=6 metapackage=yes depends="python3-jupyter_notebook python3-jupyter_console python3-jupyter_ipywidgets" short_desc="Jupyter metapackage for Void Linux" From 2cc72ddabd70f92bf665764ce3610c82785a814f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:42 -0500 Subject: [PATCH 1248/1664] python3-jq: rebuild for Python 3.14 --- srcpkgs/python3-jq/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jq/template b/srcpkgs/python3-jq/template index 06be7119455586..562999656c17b8 100644 --- a/srcpkgs/python3-jq/template +++ b/srcpkgs/python3-jq/template @@ -1,7 +1,7 @@ # Template file for 'python3-jq' pkgname=python3-jq version=1.8.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" makedepends="python3-devel jq-devel oniguruma-devel" From 02c6f76f22be4ce1c924ee33a238fbc63c2ace7b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:42 -0500 Subject: [PATCH 1249/1664] python3-iwlib: remove package This hasn't been upated since 2019, nothing requires it, and it fails to build with musl. --- srcpkgs/python3-iwlib/template | 31 ------------------------------- srcpkgs/removed-packages/template | 1 + 2 files changed, 1 insertion(+), 31 deletions(-) delete mode 100644 srcpkgs/python3-iwlib/template diff --git a/srcpkgs/python3-iwlib/template b/srcpkgs/python3-iwlib/template deleted file mode 100644 index e5c4f82adcdb2a..00000000000000 --- a/srcpkgs/python3-iwlib/template +++ /dev/null @@ -1,31 +0,0 @@ -# Template file for 'python3-iwlib' -pkgname=python3-iwlib -version=1.7.0 -revision=9 -build_style=python3-module -hostmakedepends="python3-setuptools python3-cffi" -makedepends="python3-devel wireless_tools-devel libffi-devel" -depends="python3-cffi wireless_tools" -short_desc="Python Iwlib wrapper for interacting with wireless devices" -maintainer="Orphaned " -license="GPL-2.0-only" -homepage="https://github.com/nathan-hoad/python-iwlib" -distfiles="${PYPI_SITE}/i/iwlib/iwlib-${version}.tar.gz" -checksum=a805f6597a70ee3001aba8f039fb7b2dcb75dc15c4e7852f5594fd6379196da1 - -do_patch() { - # _iwlib_build.py try to load the shared object - # to verify if it's built correctly. - # Comment it out and restore it back after build - vsed -i iwlib/_iwlib_build.py \ - -e '/ffibuilder\.verify/s/^/# /' -} - -post_install() { - vsed -i ${DESTDIR}/${py3_sitelib}/iwlib/_iwlib_build.py \ - -e '/ffibuilder\.verify/s/^# //' -} - -do_check() { - python3 test/test_imports.py -} diff --git a/srcpkgs/removed-packages/template b/srcpkgs/removed-packages/template index 553c45d27f964e..d2eb8a31831933 100644 --- a/srcpkgs/removed-packages/template +++ b/srcpkgs/removed-packages/template @@ -830,6 +830,7 @@ replaces=" python3-gitchangelog<=3.0.4_7 python3-grako<=3.99.9_7 python3-idna-ssl<=1.1.0_3 + python3-iwlib<=1.7.0_9 python3-jaraco<=1.0_4 python3-jsonrpc-server<=0.4.0_2 python3-keepalive<=0.5_6 From 5c7da10eb4d1a3188c10939698c882c71def3b34 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:42 -0500 Subject: [PATCH 1250/1664] python3-iso8601: rebuild for Python 3.14 --- srcpkgs/python3-iso8601/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-iso8601/template b/srcpkgs/python3-iso8601/template index 1d725f5d0344c5..fb0b1696ad0d45 100644 --- a/srcpkgs/python3-iso8601/template +++ b/srcpkgs/python3-iso8601/template @@ -1,7 +1,7 @@ # Template file for 'python3-iso8601' pkgname=python3-iso8601 version=2.1.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3" From 317b40138eae060668e62b400ef64d037762b228 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:42 -0500 Subject: [PATCH 1251/1664] python3-ipyparallel: rebuild for Python 3.14 --- srcpkgs/python3-ipyparallel/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ipyparallel/template b/srcpkgs/python3-ipyparallel/template index 8f5aa62b689666..592f2d661b634b 100644 --- a/srcpkgs/python3-ipyparallel/template +++ b/srcpkgs/python3-ipyparallel/template @@ -1,7 +1,7 @@ # Template file for 'python3-ipyparallel' pkgname=python3-ipyparallel version=9.0.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3-entrypoints python3-decorator python3-pyzmq python3-traitlets From 2e31ed3aa2205ba398719de3f7391df700f4106d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:43 -0500 Subject: [PATCH 1252/1664] python3-iptools: rebuild for Python 3.14 --- srcpkgs/python3-iptools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-iptools/template b/srcpkgs/python3-iptools/template index 1cf2a25dbac09d..01e3349af3fa35 100644 --- a/srcpkgs/python3-iptools/template +++ b/srcpkgs/python3-iptools/template @@ -1,7 +1,7 @@ # Template file for 'python3-iptools' pkgname=python3-iptools version=0.7.0 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 2156a49e9392d81593a4a704e9fe559e555082b0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:43 -0500 Subject: [PATCH 1253/1664] python3-influxdb: rebuild for Python 3.14 --- srcpkgs/python3-influxdb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-influxdb/template b/srcpkgs/python3-influxdb/template index a877b1d8712411..c6ed3ac6eb6c53 100644 --- a/srcpkgs/python3-influxdb/template +++ b/srcpkgs/python3-influxdb/template @@ -1,7 +1,7 @@ # Template file for 'python3-influxdb' pkgname=python3-influxdb version=5.3.1 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests python3-six python3-pytz python3-msgpack python3-dateutil" From fa17b1ada29b7101a7d161dc873a294298d6cb2a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:43 -0500 Subject: [PATCH 1254/1664] python3-hypothesis: update to 6.148.0. --- srcpkgs/python3-hypothesis/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-hypothesis/template b/srcpkgs/python3-hypothesis/template index 68532cc16084c9..4096e2285a5b0f 100644 --- a/srcpkgs/python3-hypothesis/template +++ b/srcpkgs/python3-hypothesis/template @@ -1,6 +1,6 @@ # Template file for 'python3-hypothesis' pkgname=python3-hypothesis -version=6.147.0 +version=6.148.0 revision=1 build_wrksrc=hypothesis-python build_style=python3-pep517 @@ -24,7 +24,7 @@ license="MPL-2.0" homepage="https://hypothesis.works/" changelog="https://raw.githubusercontent.com/HypothesisWorks/hypothesis/master/hypothesis-python/docs/changes.rst" distfiles="https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-${version}.tar.gz" -checksum=9ea3e89c8087b58a154dc970c436cd94cd55b084b58270634aa433a25bea39bf +checksum=c508d4ba443aa69c2552cda1d1f2123cf36ad1c0212886a06cab272053bb192e if [ "$XBPS_CHECK_PKGS" != full ]; then # Skip "full" tests unless explicitly requested" From 4b7b535eb46f1523a9f55477c9cbd82cd5077d5e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:43 -0500 Subject: [PATCH 1255/1664] python3-httmock: rebuild for Python 3.14 --- srcpkgs/python3-httmock/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-httmock/template b/srcpkgs/python3-httmock/template index 4e8d993884e69d..3ff55a1e564680 100644 --- a/srcpkgs/python3-httmock/template +++ b/srcpkgs/python3-httmock/template @@ -1,7 +1,7 @@ # Template file for 'python3-httmock' pkgname=python3-httmock version=1.4.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests" From 169f15c4019524297fb7974f134e1d095a191c62 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:43 -0500 Subject: [PATCH 1256/1664] python3-hoedown: rebuild for Python 3.14 --- srcpkgs/python3-hoedown/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-hoedown/template b/srcpkgs/python3-hoedown/template index 385b95fe2e1932..25e4116261f0e6 100644 --- a/srcpkgs/python3-hoedown/template +++ b/srcpkgs/python3-hoedown/template @@ -1,7 +1,7 @@ # Template file for 'python3-hoedown' pkgname=python3-hoedown version=0.3.0 -revision=10 +revision=11 build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" makedepends="python3-devel" From 2e465bfdb25e33415ccc2db56e62da9193118f43 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:43 -0500 Subject: [PATCH 1257/1664] python3-hiredis: rebuild for Python 3.14 --- srcpkgs/python3-hiredis/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-hiredis/template b/srcpkgs/python3-hiredis/template index 96851bc5c3b408..32b219631ef4d5 100644 --- a/srcpkgs/python3-hiredis/template +++ b/srcpkgs/python3-hiredis/template @@ -1,7 +1,7 @@ # Template file for 'python3-hiredis' pkgname=python3-hiredis version=2.3.0 -revision=2 +revision=3 build_wrksrc="hiredis-py-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 025de4b99ecc2e17e14fded871ef4021bf2b73e7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:43 -0500 Subject: [PATCH 1258/1664] python3-hcloud: rebuild for Python 3.14 --- srcpkgs/python3-hcloud/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-hcloud/template b/srcpkgs/python3-hcloud/template index 0eb473ed9258a8..0c22b3397b525f 100644 --- a/srcpkgs/python3-hcloud/template +++ b/srcpkgs/python3-hcloud/template @@ -1,7 +1,7 @@ # Template file for 'python3-hcloud' pkgname=python3-hcloud version=1.32.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests python3-future python3-dateutil" From eeb9a923524875404cbb12bb7e976b5a7f2564fd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:44 -0500 Subject: [PATCH 1259/1664] python3-h5py: rebuild for Python 3.14 --- srcpkgs/python3-h5py/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-h5py/template b/srcpkgs/python3-h5py/template index ca7385cbd07ba1..c75fc24e362d29 100644 --- a/srcpkgs/python3-h5py/template +++ b/srcpkgs/python3-h5py/template @@ -1,7 +1,7 @@ # Template file for 'python3-h5py' pkgname=python3-h5py version=3.15.1 -revision=1 +revision=2 build_style=python3-module build_helper="numpy" hostmakedepends="python3-setuptools python3-Cython python3-pkgconfig hdf5-devel" From f1d22d053410a9266bd373ba83408b99d9c439c5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:44 -0500 Subject: [PATCH 1260/1664] python3-grpcio-tools: rebuild for Python 3.14 --- srcpkgs/python3-grpcio-tools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-grpcio-tools/template b/srcpkgs/python3-grpcio-tools/template index e0ba3cc521337e..e1a7b5013cc393 100644 --- a/srcpkgs/python3-grpcio-tools/template +++ b/srcpkgs/python3-grpcio-tools/template @@ -1,7 +1,7 @@ # Template file for 'python3-grpcio-tools' pkgname=python3-grpcio-tools version=1.67.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" makedepends="python3-devel" From bd3f120f4a986f55b2bfa12a1061e143978d9ea2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:44 -0500 Subject: [PATCH 1261/1664] python3-google-auth-oauthlib: rebuild for Python 3.14 --- srcpkgs/python3-google-auth-oauthlib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-google-auth-oauthlib/template b/srcpkgs/python3-google-auth-oauthlib/template index 1fad33b9aff7b3..7a3ac2e5925237 100644 --- a/srcpkgs/python3-google-auth-oauthlib/template +++ b/srcpkgs/python3-google-auth-oauthlib/template @@ -1,7 +1,7 @@ # Template file for 'python3-google-auth-oauthlib' pkgname=python3-google-auth-oauthlib version=1.0.0 -revision=3 +revision=4 build_style=python3-module make_check_args="--deselect tests/unit/test_flow.py::TestInstalledAppFlow::test_run_local_server_bind_addr" hostmakedepends="python3-setuptools" From 9925a7385a7ab07e718619a94c40a673b4a9324a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:44 -0500 Subject: [PATCH 1262/1664] python3-gntp: rebuild for Python 3.14 --- srcpkgs/python3-gntp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-gntp/template b/srcpkgs/python3-gntp/template index 0df7d2b8d0c847..de9d43efe0936a 100644 --- a/srcpkgs/python3-gntp/template +++ b/srcpkgs/python3-gntp/template @@ -1,7 +1,7 @@ # Template file for 'python3-gntp' pkgname=python3-gntp version=1.0.3 -revision=13 +revision=14 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From fe3476506fa7e12be8e6f9ff3e33ec23a9722b5c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:44 -0500 Subject: [PATCH 1263/1664] python3-glad: rebuild for Python 3.14 --- srcpkgs/python3-glad/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-glad/template b/srcpkgs/python3-glad/template index a883640c269a91..cb657ee15e1d6c 100644 --- a/srcpkgs/python3-glad/template +++ b/srcpkgs/python3-glad/template @@ -1,7 +1,7 @@ # Template file for 'python3-glad' pkgname=python3-glad version=2.0.4 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-Jinja2" From 2e02f51918095a3530077d8e23c6f87874129e8b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:44 -0500 Subject: [PATCH 1264/1664] python3-gitlab: rebuild for Python 3.14 --- srcpkgs/python3-gitlab/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-gitlab/template b/srcpkgs/python3-gitlab/template index b29a9c14438386..a1815e95304e70 100644 --- a/srcpkgs/python3-gitlab/template +++ b/srcpkgs/python3-gitlab/template @@ -1,7 +1,7 @@ # Template file for 'python3-gitlab' pkgname=python3-gitlab version=3.6.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests python3-requests-toolbelt" From 9ac28ebff22755a9e04a9599e7d80b735c7c7b99 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:45 -0500 Subject: [PATCH 1265/1664] python3-github3: rebuild for Python 3.14 --- srcpkgs/python3-github3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-github3/template b/srcpkgs/python3-github3/template index b5eddd25dfc1a3..e42e410f41b5ce 100644 --- a/srcpkgs/python3-github3/template +++ b/srcpkgs/python3-github3/template @@ -1,7 +1,7 @@ # Template file for 'python3-github3' pkgname=python3-github3 version=3.2.0 -revision=4 +revision=5 build_style=python3-module make_check_args="-k not(test_delete_key)" hostmakedepends="python3-setuptools" From 10a9d2f7d8583bde9077a346e67f4435c51accc9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:45 -0500 Subject: [PATCH 1266/1664] python3-gitea-client: rebuild for Python 3.14 --- srcpkgs/python3-gitea-client/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-gitea-client/template b/srcpkgs/python3-gitea-client/template index 0c477124f5c621..8a65638f111b86 100644 --- a/srcpkgs/python3-gitea-client/template +++ b/srcpkgs/python3-gitea-client/template @@ -1,7 +1,7 @@ # Template file for 'python3-gitea-client' pkgname=python3-gitea-client version=1.0.9 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-attrs python3-future python3-requests python3-responses" From 1e86b3af4dab8f477e8cb396fdae37b8eb2728d6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:45 -0500 Subject: [PATCH 1267/1664] python3-fuzzyfinder: rebuild for Python 3.14 --- srcpkgs/python3-fuzzyfinder/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-fuzzyfinder/template b/srcpkgs/python3-fuzzyfinder/template index 1e16378bdc79c0..be851142ad0d0f 100644 --- a/srcpkgs/python3-fuzzyfinder/template +++ b/srcpkgs/python3-fuzzyfinder/template @@ -1,7 +1,7 @@ # Template file for 'python3-fuzzyfinder' pkgname=python3-fuzzyfinder version=2.1.0 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From c79ea1e0ba1ad6e395a13de9699b5491d59193b4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:45 -0500 Subject: [PATCH 1268/1664] python3-frozendict: rebuild for Python 3.14 --- srcpkgs/python3-frozendict/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template index 08b17044a001de..d9b35c46f75d84 100644 --- a/srcpkgs/python3-frozendict/template +++ b/srcpkgs/python3-frozendict/template @@ -1,7 +1,7 @@ # Template file for 'python3-frozendict' pkgname=python3-frozendict version=2.3.5 -revision=3 +revision=4 build_style=python3-module make_check_args="-k not(test_c_extension)" hostmakedepends="python3-setuptools" From 9b95bf42f81a4ee6bd6e594bd2c30afbaedfd32c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:45 -0500 Subject: [PATCH 1269/1664] python3-freezegun: rebuild for Python 3.14 --- srcpkgs/python3-freezegun/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-freezegun/template b/srcpkgs/python3-freezegun/template index dbc6f581e2945d..a85f93a397c106 100644 --- a/srcpkgs/python3-freezegun/template +++ b/srcpkgs/python3-freezegun/template @@ -1,7 +1,7 @@ # Template file for 'python3-freezegun' pkgname=python3-freezegun version=1.5.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-dateutil" From 358ce08eef8e86b4724f9cb0d7afabfc85525dd2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:45 -0500 Subject: [PATCH 1270/1664] python3-flexmock: rebuild for Python 3.14 --- srcpkgs/python3-flexmock/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-flexmock/template b/srcpkgs/python3-flexmock/template index 7d1a9aeb95ea5c..2eb02a425298ab 100644 --- a/srcpkgs/python3-flexmock/template +++ b/srcpkgs/python3-flexmock/template @@ -1,7 +1,7 @@ # Template file for 'python3-flexmock' pkgname=python3-flexmock version=0.12.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3" From 42181f47363b14c3ca5fbf820d3c353ac6ceb4ba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:45 -0500 Subject: [PATCH 1271/1664] python3-flaky: rebuild for Python 3.14 --- srcpkgs/python3-flaky/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-flaky/template b/srcpkgs/python3-flaky/template index 07760ccd763d21..a92a6922ecbbbd 100644 --- a/srcpkgs/python3-flaky/template +++ b/srcpkgs/python3-flaky/template @@ -1,7 +1,7 @@ # Template file for 'python3-flaky' pkgname=python3-flaky version=3.8.1 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 0e157d87f9f5e10d380fb45dda9b19680ce4b700 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:46 -0500 Subject: [PATCH 1272/1664] python3-fishnet: rebuild for Python 3.14 --- srcpkgs/python3-fishnet/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-fishnet/template b/srcpkgs/python3-fishnet/template index 5dabc2afe03586..91ecd84de17d15 100644 --- a/srcpkgs/python3-fishnet/template +++ b/srcpkgs/python3-fishnet/template @@ -1,7 +1,7 @@ # Template file for 'python3-fishnet' pkgname=python3-fishnet version=1.15.18 -revision=7 +revision=8 build_style=python3-module pycompile_module="fishnet.py" hostmakedepends="python3-setuptools" From d4ddc54cc8e1e443c060181dfeae30b798862a16 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:46 -0500 Subject: [PATCH 1273/1664] python3-exifread: rebuild for Python 3.14 --- srcpkgs/python3-exifread/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-exifread/template b/srcpkgs/python3-exifread/template index 99c594c972144b..f6db23001c6221 100644 --- a/srcpkgs/python3-exifread/template +++ b/srcpkgs/python3-exifread/template @@ -1,7 +1,7 @@ # Template file for 'python3-exifread' pkgname=python3-exifread version=2.3.2 -revision=5 +revision=6 build_style="python3-module" hostmakedepends="python3-setuptools" depends="python3" From 9c7b5fc109d9cf71bcb158de483aed7ecc12f18f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:46 -0500 Subject: [PATCH 1274/1664] python3-esprima: rebuild for Python 3.14 --- srcpkgs/python3-esprima/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-esprima/template b/srcpkgs/python3-esprima/template index da6687fb104238..caacb370e741ae 100644 --- a/srcpkgs/python3-esprima/template +++ b/srcpkgs/python3-esprima/template @@ -1,7 +1,7 @@ # Template file for 'python3-esprima' pkgname=python3-esprima version=4.0.1 -revision=8 +revision=9 create_wrksrc=yes build_wrksrc="esprima-${version}" build_style=python3-module From e9c726a434b08230124d2890663cc918eecd89ae Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:46 -0500 Subject: [PATCH 1275/1664] python3-envdir: remove package This hasn't been updated since 2018, nothing requires it, and it fails to build with Python 3.14. --- srcpkgs/python3-envdir/template | 18 ------------------ srcpkgs/removed-packages/template | 1 + 2 files changed, 1 insertion(+), 18 deletions(-) delete mode 100644 srcpkgs/python3-envdir/template diff --git a/srcpkgs/python3-envdir/template b/srcpkgs/python3-envdir/template deleted file mode 100644 index a02b56fec5631d..00000000000000 --- a/srcpkgs/python3-envdir/template +++ /dev/null @@ -1,18 +0,0 @@ -# Template file for 'python3-envdir' -pkgname=python3-envdir -version=1.0.1 -revision=9 -build_style=python3-module -hostmakedepends="python3-setuptools" -depends="python3-setuptools" -short_desc="Python3 port of daemontools' envdir" -maintainer="Orphaned " -license="MIT" -homepage="https://github.com/jezdez/envdir" -distfiles="https://github.com/jezdez/envdir/archive/${version}.tar.gz" -checksum=779a308a07a673f391db87ef639d4b0f9921238bba02dd3e98c3281520faee95 -conflicts="python-envdir>=0" - -post_install() { - vlicense LICENSE -} diff --git a/srcpkgs/removed-packages/template b/srcpkgs/removed-packages/template index d2eb8a31831933..5e5c08382e50cd 100644 --- a/srcpkgs/removed-packages/template +++ b/srcpkgs/removed-packages/template @@ -827,6 +827,7 @@ replaces=" python3-docker-pycreds<=0.4.0_4 python3-efl<=1.23.0_7 python3-eliot<=1.12.0_5 + python3-envdir<=1.0.1_9 python3-gitchangelog<=3.0.4_7 python3-grako<=3.99.9_7 python3-idna-ssl<=1.1.0_3 From 536dd8d36e194a50f282d3893e2942838096b9a3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:46 -0500 Subject: [PATCH 1276/1664] python3-enrich: rebuild for Python 3.14 --- srcpkgs/python3-enrich/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-enrich/template b/srcpkgs/python3-enrich/template index e601531b2d8fb0..7f96f46543178d 100644 --- a/srcpkgs/python3-enrich/template +++ b/srcpkgs/python3-enrich/template @@ -1,7 +1,7 @@ # Template file for 'python3-enrich' pkgname=python3-enrich version=1.2.7 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools_scm python3-wheel python3-rich" depends="python3-rich" From c408fde9e1785b6dbe41eef4b67ec7e26895d123 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:46 -0500 Subject: [PATCH 1277/1664] python3-empy: rebuild for Python 3.14 --- srcpkgs/python3-empy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-empy/template b/srcpkgs/python3-empy/template index 9eeb9e5d902d28..b65b365155ac62 100644 --- a/srcpkgs/python3-empy/template +++ b/srcpkgs/python3-empy/template @@ -1,7 +1,7 @@ # Template file for 'python3-empy' pkgname=python3-empy version=3.3.4 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 2475bd7f501f1003b6e2cd1284d09af995cd2ce8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:46 -0500 Subject: [PATCH 1278/1664] python3-eduvpn-client: rebuild for Python 3.14 --- srcpkgs/python3-eduvpn-client/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-eduvpn-client/template b/srcpkgs/python3-eduvpn-client/template index 7e942c0a5e360c..0c771eb95dd7d3 100644 --- a/srcpkgs/python3-eduvpn-client/template +++ b/srcpkgs/python3-eduvpn-client/template @@ -1,7 +1,7 @@ # Template file for 'python3-eduvpn-client' pkgname=python3-eduvpn-client version=4.4.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="eduvpn-common python3-gobject NetworkManager-openvpn" From 7372b108e8d746617b430d7a35a25725294c7762 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:47 -0500 Subject: [PATCH 1279/1664] python3-drgn: rebuild for Python 3.14 --- srcpkgs/python3-drgn/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-drgn/template b/srcpkgs/python3-drgn/template index e1c18bdabee069..7fbd1585df52d7 100644 --- a/srcpkgs/python3-drgn/template +++ b/srcpkgs/python3-drgn/template @@ -1,7 +1,7 @@ # Template file for 'python3-drgn' pkgname=python3-drgn version=0.0.33 -revision=1 +revision=2 build_style=python3-module hostmakedepends="automake libtool pkg-config python3-setuptools" makedepends="elfutils-devel libgomp-devel python3-devel libkdumpfile-devel" From ade5cd3c9fc1668a326239b8b8ec1c1b2431170d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:47 -0500 Subject: [PATCH 1280/1664] python3-dpkt: rebuild for Python 3.14 --- srcpkgs/python3-dpkt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-dpkt/template b/srcpkgs/python3-dpkt/template index 0021ee2c7b2057..75dabe3228f4bc 100644 --- a/srcpkgs/python3-dpkt/template +++ b/srcpkgs/python3-dpkt/template @@ -1,7 +1,7 @@ # Template file for 'python3-dpkt' pkgname=python3-dpkt version=1.9.8 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 99e356fbc5088f43af205c7a2e2aea1351ad1448 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:47 -0500 Subject: [PATCH 1281/1664] python3-dockerpty: rebuild for Python 3.14 --- srcpkgs/python3-dockerpty/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-dockerpty/template b/srcpkgs/python3-dockerpty/template index 107bc3737ff44e..4c820a93503014 100644 --- a/srcpkgs/python3-dockerpty/template +++ b/srcpkgs/python3-dockerpty/template @@ -1,7 +1,7 @@ # Template file for 'python3-dockerpty' pkgname=python3-dockerpty version=0.4.1 -revision=10 +revision=11 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-six python3-docker" From dfb43ff7190a7ac8d84b9bc93a6e05c4c693364d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:47 -0500 Subject: [PATCH 1282/1664] python3-discogs_client: rebuild for Python 3.14 --- srcpkgs/python3-discogs_client/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-discogs_client/template b/srcpkgs/python3-discogs_client/template index 35ccdbc22d1eb8..1fa2fabe256379 100644 --- a/srcpkgs/python3-discogs_client/template +++ b/srcpkgs/python3-discogs_client/template @@ -1,7 +1,7 @@ # Template file for 'python3-discogs_client' pkgname=python3-discogs_client version=2.8 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests python3-oauthlib python3-dateutil" From d7a764d6f6db3eb8364df785848284540d49c485 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:47 -0500 Subject: [PATCH 1283/1664] python3-dirty-equals: rebuild for Python 3.14 --- srcpkgs/python3-dirty-equals/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-dirty-equals/template b/srcpkgs/python3-dirty-equals/template index 30f12f48ee9a29..b3b256b1b471f9 100644 --- a/srcpkgs/python3-dirty-equals/template +++ b/srcpkgs/python3-dirty-equals/template @@ -1,7 +1,7 @@ # Template file for 'python3-dirty-equals' pkgname=python3-dirty-equals version=0.7.1 -revision=2 +revision=3 build_style=python3-pep517 # requires unpackaged pytest-examples and circular dependency on pydantic make_check_args="--ignore=tests/test_docs.py --ignore=tests/test_other.py" From a2792548a842e1b68b37538607054961d586f8f6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:47 -0500 Subject: [PATCH 1284/1664] python3-ddt: rebuild for Python 3.14 --- srcpkgs/python3-ddt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ddt/template b/srcpkgs/python3-ddt/template index 0d0dacddb8aa92..0a9bfecd3a5c33 100644 --- a/srcpkgs/python3-ddt/template +++ b/srcpkgs/python3-ddt/template @@ -1,7 +1,7 @@ # Template file for 'python3-ddt' pkgname=python3-ddt version=1.6.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From abb34cc0ec67e4ab9780de4abdc0e0f3b782664b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:48 -0500 Subject: [PATCH 1285/1664] python3-dbusmock: rebuild for Python 3.14 --- srcpkgs/python3-dbusmock/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-dbusmock/template b/srcpkgs/python3-dbusmock/template index 10d82dcddbeda7..3537437db0442a 100644 --- a/srcpkgs/python3-dbusmock/template +++ b/srcpkgs/python3-dbusmock/template @@ -1,7 +1,7 @@ # Template file for 'python3-dbusmock' pkgname=python3-dbusmock version=0.34.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-setuptools_scm" depends="python3-dbus python3-gobject" From 27c3408c4d81b9c50a43e41ed5b9d4cd4af481d5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:48 -0500 Subject: [PATCH 1286/1664] python3-dbus-fast: update to 3.1.0. --- srcpkgs/python3-dbus-fast/patches/cython-3.1.patch | 11 ----------- srcpkgs/python3-dbus-fast/template | 4 ++-- 2 files changed, 2 insertions(+), 13 deletions(-) delete mode 100644 srcpkgs/python3-dbus-fast/patches/cython-3.1.patch diff --git a/srcpkgs/python3-dbus-fast/patches/cython-3.1.patch b/srcpkgs/python3-dbus-fast/patches/cython-3.1.patch deleted file mode 100644 index 1773e233d13bcc..00000000000000 --- a/srcpkgs/python3-dbus-fast/patches/cython-3.1.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/pyproject.toml -+++ b/pyproject.toml -@@ -104,7 +104,7 @@ - ignore_errors = true - - [build-system] --requires = ['setuptools>=65.4.1', 'wheel', 'Cython>=3,<3.1.0', "poetry-core>=1.0.0"] -+requires = ['setuptools>=65.4.1', 'wheel', 'Cython>=3,<3.2.0', "poetry-core>=1.0.0"] - build-backend = "poetry.core.masonry.api" - - [tool.ruff] diff --git a/srcpkgs/python3-dbus-fast/template b/srcpkgs/python3-dbus-fast/template index 2451596b3cfaa9..6daaec9e0f9974 100644 --- a/srcpkgs/python3-dbus-fast/template +++ b/srcpkgs/python3-dbus-fast/template @@ -1,6 +1,6 @@ # Template file for 'python3-dbus-fast' pkgname=python3-dbus-fast -version=2.44.3 +version=3.1.0 revision=1 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel python3-poetry-core python3-Cython" @@ -12,7 +12,7 @@ license="MIT" homepage="https://github.com/bluetooth-devices/dbus-fast" changelog="https://github.com/bluetooth-devices/dbus-fast/raw/main/CHANGELOG.md" distfiles="${PYPI_SITE}/d/dbus-fast/dbus_fast-${version}.tar.gz" -checksum=962b36abbe885159e31135c57a7d9659997c61a13d55ecb070a61dc502dbd87e +checksum=9bdb14868c7454fcf0c14ec580e0e9c5b24eddce577ddbe5e471e0e46168e67f make_check=no # no tests included post_install() { From 17fe6e05d5ba000270f36e5e08db075c48231e4d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:48 -0500 Subject: [PATCH 1287/1664] python3-cvxopt: rebuild for Python 3.14 --- srcpkgs/python3-cvxopt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cvxopt/template b/srcpkgs/python3-cvxopt/template index c21a16a8783ae1..8b376bbdd59709 100644 --- a/srcpkgs/python3-cvxopt/template +++ b/srcpkgs/python3-cvxopt/template @@ -1,7 +1,7 @@ # Template file for 'python3-cvxopt' pkgname=python3-cvxopt version=1.3.2 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools_scm" makedepends="python3-devel SuiteSparse-devel gsl-devel glpk-devel fftw-devel From 31b66090aacd71ae8913d447b26c311f6b3a9d51 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:48 -0500 Subject: [PATCH 1288/1664] python3-curtsies: update to 0.4.3. --- srcpkgs/python3-curtsies/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-curtsies/template b/srcpkgs/python3-curtsies/template index 040c38f4254032..2e57f3b8aa5c68 100644 --- a/srcpkgs/python3-curtsies/template +++ b/srcpkgs/python3-curtsies/template @@ -1,6 +1,6 @@ # Template file for 'python3-curtsies' pkgname=python3-curtsies -version=0.4.2 +version=0.4.3 revision=1 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" @@ -12,7 +12,7 @@ license="MIT" homepage="https://github.com/bpython/curtsies" changelog="https://raw.githubusercontent.com/bpython/curtsies/main/CHANGELOG.md" distfiles="${PYPI_SITE}/c/curtsies/curtsies-${version}.tar.gz" -checksum=6ebe33215bd7c92851a506049c720cca4cf5c192c1665c1d7a98a04c4702760e +checksum=102a0ffbf952124f1be222fd6989da4ec7cce04e49f613009e5f54ad37618825 post_install() { vlicense LICENSE From f50236cc8d9e227d2b17a42ec6de1d84c31d4f3e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:48 -0500 Subject: [PATCH 1289/1664] python3-curio: rebuild for Python 3.14 --- srcpkgs/python3-curio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-curio/template b/srcpkgs/python3-curio/template index f7a45489b8a4fb..f7ea549c43f010 100644 --- a/srcpkgs/python3-curio/template +++ b/srcpkgs/python3-curio/template @@ -1,7 +1,7 @@ # Template file for 'python3-curio' pkgname=python3-curio version=1.6 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From e42252163290f0cd0c017d6bf6260ebf98441f64 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:48 -0500 Subject: [PATCH 1290/1664] python3-cssutils: rebuild for Python 3.14 --- srcpkgs/python3-cssutils/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cssutils/template b/srcpkgs/python3-cssutils/template index 1cb7a1396c95bf..8b2cced9c71562 100644 --- a/srcpkgs/python3-cssutils/template +++ b/srcpkgs/python3-cssutils/template @@ -1,7 +1,7 @@ # Template file for 'python3-cssutils' pkgname=python3-cssutils version=2.9.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" short_desc="CSS Cascading Style Sheets library for Python3" From a61d09b9b82fc22ea4fb5284a86a2b4aa277e81f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:48 -0500 Subject: [PATCH 1291/1664] python3-cryptography_vectors: rebuild for Python 3.14 --- srcpkgs/python3-cryptography_vectors/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cryptography_vectors/template b/srcpkgs/python3-cryptography_vectors/template index d01b579e5122a4..9f9dc76d59cfb4 100644 --- a/srcpkgs/python3-cryptography_vectors/template +++ b/srcpkgs/python3-cryptography_vectors/template @@ -1,7 +1,7 @@ # Template file for 'python3-cryptography_vectors' pkgname=python3-cryptography_vectors version=46.0.3 -revision=1 +revision=2 build_style=python3-pep517 make_build_args="--skip-dependency-check" hostmakedepends="uv-build" From 181810cf3e9ac12ecf6283f5e5d1234142d624c7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:49 -0500 Subject: [PATCH 1292/1664] python3-crccheck: rebuild for Python 3.14 --- srcpkgs/python3-crccheck/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-crccheck/template b/srcpkgs/python3-crccheck/template index 6736f30f180a71..f5456e68212ebf 100644 --- a/srcpkgs/python3-crccheck/template +++ b/srcpkgs/python3-crccheck/template @@ -1,7 +1,7 @@ # Template file for 'python3-crccheck' pkgname=python3-crccheck version=1.1 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From b3812ed25a5fb12fca8057c33dd270da73c4be5d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:49 -0500 Subject: [PATCH 1293/1664] python3-cram: rebuild for Python 3.14 --- srcpkgs/python3-cram/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cram/template b/srcpkgs/python3-cram/template index e7cd5ac611df85..9357164d0bb6b7 100644 --- a/srcpkgs/python3-cram/template +++ b/srcpkgs/python3-cram/template @@ -1,7 +1,7 @@ # Template file for 'python3-cram' pkgname=python3-cram version=0.7 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 1b7fa8812652db382ea1a8196f37417406074b35 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:49 -0500 Subject: [PATCH 1294/1664] python3-coveralls: rebuild for Python 3.14 --- srcpkgs/python3-coveralls/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-coveralls/template b/srcpkgs/python3-coveralls/template index 67437581e484e3..48e6597d98bfcd 100644 --- a/srcpkgs/python3-coveralls/template +++ b/srcpkgs/python3-coveralls/template @@ -1,7 +1,7 @@ # Template file for 'python3-coveralls' pkgname=python3-coveralls version=2.9.2 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools python3-coverage" depends="python3" From 403a8758d0756c1b6b61cf7b9b17fa2e25234791 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:49 -0500 Subject: [PATCH 1295/1664] python3-colorthief: rebuild for Python 3.14 --- srcpkgs/python3-colorthief/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-colorthief/template b/srcpkgs/python3-colorthief/template index 14adef8e366fbd..72e2ded824820c 100644 --- a/srcpkgs/python3-colorthief/template +++ b/srcpkgs/python3-colorthief/template @@ -1,7 +1,7 @@ # Template file for 'python3-colorthief' pkgname=python3-colorthief version=0.2.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-Pillow" From d537d7eaaad2607c50c4c1110b998838e89888b3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:49 -0500 Subject: [PATCH 1296/1664] python3-codespell: rebuild for Python 3.14 --- srcpkgs/python3-codespell/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-codespell/template b/srcpkgs/python3-codespell/template index aec01982a20296..b2bf687f81ffc9 100644 --- a/srcpkgs/python3-codespell/template +++ b/srcpkgs/python3-codespell/template @@ -1,7 +1,7 @@ # Template file for 'python3-codespell' pkgname=python3-codespell version=2.4.1 -revision=1 +revision=2 build_style=python3-pep517 make_check_args="--deselect codespell_lib/tests/test_basic.py::test_command --deselect codespell_lib/tests/test_basic.py::test_permission_error" From 582973b98efb6c880a06d5967d2d3d3ec2cc0680 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:49 -0500 Subject: [PATCH 1297/1664] python3-cmdln: rebuild for Python 3.14 --- srcpkgs/python3-cmdln/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cmdln/template b/srcpkgs/python3-cmdln/template index 84c41f5b6024d0..336a84b79ae5e8 100644 --- a/srcpkgs/python3-cmdln/template +++ b/srcpkgs/python3-cmdln/template @@ -1,7 +1,7 @@ # Template file for 'python3-cmdln' pkgname=python3-cmdln version=2.0.0 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools unzip" depends="python3" From f1522c9eb8fc374d294d8b0a368de153effdb7a5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:50 -0500 Subject: [PATCH 1298/1664] python3-cmarkgfm: rebuild for Python 3.14 --- srcpkgs/python3-cmarkgfm/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cmarkgfm/template b/srcpkgs/python3-cmarkgfm/template index 53fc9dc6fb61ba..4dca760299988f 100644 --- a/srcpkgs/python3-cmarkgfm/template +++ b/srcpkgs/python3-cmarkgfm/template @@ -1,7 +1,7 @@ # Template file for 'python3-cmarkgfm' pkgname=python3-cmarkgfm version=2025.10.22 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools python3-cffi pkg-config" makedepends="python3-devel cmark-gfm-devel" From 7c6d5a26f45f067fef3bccdbdecc5ca5a731a7e4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:50 -0500 Subject: [PATCH 1299/1664] python3-click-threading: rebuild for Python 3.14 --- srcpkgs/python3-click-threading/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-click-threading/template b/srcpkgs/python3-click-threading/template index b550cff2edacec..2405850a0fd0fe 100644 --- a/srcpkgs/python3-click-threading/template +++ b/srcpkgs/python3-click-threading/template @@ -1,7 +1,7 @@ # Template file for 'python3-click-threading' pkgname=python3-click-threading version=0.5.0 -revision=4 +revision=5 build_style="python3-module" hostmakedepends="python3-setuptools" depends="python3-click" From 98c5dfc45d15aaec3a010d9d098f8ba22841ea84 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:50 -0500 Subject: [PATCH 1300/1664] python3-cli-ui: rebuild for Python 3.14 --- srcpkgs/python3-cli-ui/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cli-ui/template b/srcpkgs/python3-cli-ui/template index b91fde81d3f29a..2aab967baab8f3 100644 --- a/srcpkgs/python3-cli-ui/template +++ b/srcpkgs/python3-cli-ui/template @@ -1,7 +1,7 @@ # Template file for 'python3-cli-ui' pkgname=python3-cli-ui version=0.17.2 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-colorama python3-tabulate python3-Unidecode" From c298d28b05f6d39908015b18e067215e0dc89700 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:50 -0500 Subject: [PATCH 1301/1664] python3-chroot: rebuild for Python 3.14 --- srcpkgs/python3-chroot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-chroot/template b/srcpkgs/python3-chroot/template index c65a22a9f18dc4..824914f8f8493d 100644 --- a/srcpkgs/python3-chroot/template +++ b/srcpkgs/python3-chroot/template @@ -1,7 +1,7 @@ # Template file for 'python3-chroot' pkgname=python3-chroot version=0.10.4 -revision=3 +revision=4 build_style=python3-module # OSError: [Errno 16] Device or resource busy: '/proc' make_check_args="--deselect=tests/test_chroot.py::TestChroot::test_chroot" From fac0d4a08993631511859a017df5fcc11e6ef39a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:50 -0500 Subject: [PATCH 1302/1664] python3-chess: rebuild for Python 3.14 --- srcpkgs/python3-chess/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-chess/template b/srcpkgs/python3-chess/template index a3223970eaa2cd..d88fe87182c151 100644 --- a/srcpkgs/python3-chess/template +++ b/srcpkgs/python3-chess/template @@ -1,7 +1,7 @@ # Template file for 'python3-chess' pkgname=python3-chess version=1.11.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3" From 173f5a02c4cd375e856fa6e35d02dbb91f2be75c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:50 -0500 Subject: [PATCH 1303/1664] python3-casttube: rebuild for Python 3.14 --- srcpkgs/python3-casttube/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-casttube/template b/srcpkgs/python3-casttube/template index 372eb950f0d414..63cccefb2ee2a8 100644 --- a/srcpkgs/python3-casttube/template +++ b/srcpkgs/python3-casttube/template @@ -1,7 +1,7 @@ # Template file for 'python3-casttube' pkgname=python3-casttube version=0.2.0 -revision=7 +revision=8 build_style=python3-module pycompile_module="casttube" hostmakedepends="python3-setuptools" From bd1f156f1f7ed331419cdde05133c71772858135 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:51 -0500 Subject: [PATCH 1304/1664] python3-cairosvg: rebuild for Python 3.14 --- srcpkgs/python3-cairosvg/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-cairosvg/template b/srcpkgs/python3-cairosvg/template index 12d01195938871..0ebc48b193d745 100644 --- a/srcpkgs/python3-cairosvg/template +++ b/srcpkgs/python3-cairosvg/template @@ -1,7 +1,7 @@ # Template file for 'python3-cairosvg' pkgname=python3-cairosvg version=2.8.2 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-cairocffi python3-cssselect2 python3-defusedxml python3-Pillow From 7ea0c75ae31c6dddfcfcfb39cfe959210303c736 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:51 -0500 Subject: [PATCH 1305/1664] python3-boltons: rebuild for Python 3.14 --- srcpkgs/python3-boltons/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-boltons/template b/srcpkgs/python3-boltons/template index a2fead1f046aa9..5120462fdb5e09 100644 --- a/srcpkgs/python3-boltons/template +++ b/srcpkgs/python3-boltons/template @@ -1,7 +1,7 @@ # Template file for 'python3-boltons' pkgname=python3-boltons version=20.2.1 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 4152705a0baea74c9c8a33ee2b987136492db272 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:51 -0500 Subject: [PATCH 1306/1664] python3-bokeh: update to 3.8.1. --- srcpkgs/python3-bokeh/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-bokeh/template b/srcpkgs/python3-bokeh/template index 7ea0a94c934563..13e36b49935f8c 100644 --- a/srcpkgs/python3-bokeh/template +++ b/srcpkgs/python3-bokeh/template @@ -1,6 +1,6 @@ # Template file for 'python3-bokeh' pkgname=python3-bokeh -version=3.8.0 +version=3.8.1 revision=1 build_style=python3-module hostmakedepends="python3-setuptools python3-colorama" @@ -13,7 +13,7 @@ license="BSD-3-Clause" homepage="https://bokeh.org" changelog="https://raw.githubusercontent.com/bokeh/bokeh/main/CHANGELOG" distfiles="${PYPI_SITE}/b/bokeh/bokeh-${version}.tar.gz" -checksum=bfdf5e9df910653b097f70cd38f4c2399d91af6e54a618126e2387cc33c9ec03 +checksum=40df8e632de367399d06979cbd76c9e68a133a3138e1adde37c4a4715ecb4d6e # Tests have unpackaged dependencies and require fetching data; skipping make_check=no From 3acba2e6e89d4282d56a9afb017f07c23723f657 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:51 -0500 Subject: [PATCH 1307/1664] python3-blockbuster: rebuild for Python 3.14 --- srcpkgs/python3-blockbuster/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-blockbuster/template b/srcpkgs/python3-blockbuster/template index 22aed76d4562ee..c88cf4dfa40cf1 100644 --- a/srcpkgs/python3-blockbuster/template +++ b/srcpkgs/python3-blockbuster/template @@ -1,7 +1,7 @@ # Template file for 'python3-blockbuster' pkgname=python3-blockbuster version=1.5.24 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling" depends="python3-forbiddenfruit" From 4cbc68a5f1265622241dc308c0fd24b36512cad8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:51 -0500 Subject: [PATCH 1308/1664] python3-blessings: rebuild for Python 3.14 --- srcpkgs/python3-blessings/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-blessings/template b/srcpkgs/python3-blessings/template index 173b7d55b74384..e11a09d1f4f3a8 100644 --- a/srcpkgs/python3-blessings/template +++ b/srcpkgs/python3-blessings/template @@ -1,7 +1,7 @@ # Template file for 'python3-blessings' pkgname=python3-blessings version=1.7 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-six" From 3b8b73620620a00d5729ea5199acca8a91dd7515 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:51 -0500 Subject: [PATCH 1309/1664] python3-bitbucket-api: rebuild for Python 3.14 --- srcpkgs/python3-bitbucket-api/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-bitbucket-api/template b/srcpkgs/python3-bitbucket-api/template index b61540654e2f5c..6137b8c662de17 100644 --- a/srcpkgs/python3-bitbucket-api/template +++ b/srcpkgs/python3-bitbucket-api/template @@ -1,7 +1,7 @@ # Template file for 'python3-bitbucket-api' pkgname=python3-bitbucket-api version=0.5.0 -revision=10 +revision=11 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests-oauthlib python3-sh" From b6c83fdb03faa2737657adf2360a93b2f3c2f65c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:52 -0500 Subject: [PATCH 1310/1664] python3-betamax-matchers: rebuild for Python 3.14 --- srcpkgs/python3-betamax-matchers/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-betamax-matchers/template b/srcpkgs/python3-betamax-matchers/template index 8057df16d8ce70..3c61391d929b51 100644 --- a/srcpkgs/python3-betamax-matchers/template +++ b/srcpkgs/python3-betamax-matchers/template @@ -1,7 +1,7 @@ # Template file for 'python3-betamax-matchers' pkgname=python3-betamax-matchers version=0.4.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-betamax python3-requests-toolbelt" From 0482d648363f4cabed70380056b760dda018bd4f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:52 -0500 Subject: [PATCH 1311/1664] python3-axolotl: remove package This hasn't been updated in more than five years, nothing requires it, and it cannot be built with Python 3.14. --- srcpkgs/python3-axolotl/template | 14 -------------- srcpkgs/removed-packages/template | 1 + 2 files changed, 1 insertion(+), 14 deletions(-) delete mode 100644 srcpkgs/python3-axolotl/template diff --git a/srcpkgs/python3-axolotl/template b/srcpkgs/python3-axolotl/template deleted file mode 100644 index 0e06d434897c7f..00000000000000 --- a/srcpkgs/python3-axolotl/template +++ /dev/null @@ -1,14 +0,0 @@ -# Template file for 'python3-axolotl' -pkgname=python3-axolotl -_pkgname=${pkgname/3/} -version=0.2.3 -revision=8 -build_style=python3-module -hostmakedepends="python3-setuptools" -depends="python3-axolotl-curve25519 python3-cryptography python3-protobuf" -short_desc="Python3 port of libaxolotl-android written by Moxie Marlinspike" -maintainer="Lon Willett " -license="GPL-3.0-only" -homepage="https://github.com/tgalal/python-axolotl" -distfiles="${PYPI_SITE}/p/${_pkgname}/${_pkgname}-${version}.tar.gz" -checksum=fe0e8147423f8dc4ec1077ea18ca5a54091366d22faa903a772ee6ea88b88daf diff --git a/srcpkgs/removed-packages/template b/srcpkgs/removed-packages/template index 5e5c08382e50cd..360c335041ea31 100644 --- a/srcpkgs/removed-packages/template +++ b/srcpkgs/removed-packages/template @@ -820,6 +820,7 @@ replaces=" python3-SPARQLWrapper<=1.8.4_4 python3-aiohttp-cors2<=0.7.0_3 python3-aiohttp2<=2.3.10_4 + python3-axolotl<=0.2.3_8 python3-bluez<=0.23_2 python3-boto<=2.49.0_5 python3-changelogs<=0.15.0_4 From 6ae330f3a5c13b60d6d70be32c9b8c3c2940c4c1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:15 -0500 Subject: [PATCH 1312/1664] python3-axolotl-curve25519: remove package This hasn't been updated in more than five years, nothing requires it, and it fails to build with Python 3.14. --- srcpkgs/python3-axolotl-curve25519/template | 21 --------------------- srcpkgs/removed-packages/template | 1 + 2 files changed, 1 insertion(+), 21 deletions(-) delete mode 100644 srcpkgs/python3-axolotl-curve25519/template diff --git a/srcpkgs/python3-axolotl-curve25519/template b/srcpkgs/python3-axolotl-curve25519/template deleted file mode 100644 index fe0f109a508a0a..00000000000000 --- a/srcpkgs/python3-axolotl-curve25519/template +++ /dev/null @@ -1,21 +0,0 @@ -# Template file for 'python3-axolotl-curve25519' -pkgname=python3-axolotl-curve25519 -_pkgname=${pkgname/3/} -version=0.4.1.post2 -revision=9 -build_style=python3-module -hostmakedepends="python3-setuptools" -makedepends="python3-devel" -depends="python3" -short_desc="Python3 curve25519 with ed25519 signatures, used by libaxolotl" -maintainer="Lon Willett " -license="GPL-3.0-only, BSD-3-Clause" -homepage="https://github.com/tgalal/python-axolotl-curve25519" -distfiles="${PYPI_SITE}/p/${_pkgname}/${_pkgname}-${version}.tar.gz" -checksum=0705a66297ebd2f508a60dc94e22881c754301eb81db93963322f6b3bdcb63a3 - -post_install() { - sed -e "/Copyright/,/SUCH DAMAGE./p" \ - curve/curve25519-donna.c >donna.LICENSE - vlicense donna.LICENSE -} diff --git a/srcpkgs/removed-packages/template b/srcpkgs/removed-packages/template index 360c335041ea31..0b9aff986eb441 100644 --- a/srcpkgs/removed-packages/template +++ b/srcpkgs/removed-packages/template @@ -821,6 +821,7 @@ replaces=" python3-aiohttp-cors2<=0.7.0_3 python3-aiohttp2<=2.3.10_4 python3-axolotl<=0.2.3_8 + python3-axolotl-curve25519<=0.4.1.post2_9 python3-bluez<=0.23_2 python3-boto<=2.49.0_5 python3-changelogs<=0.15.0_4 From 6d6eecb99068dc7a397e32e0a74b31d06ddd3d7c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:52 -0500 Subject: [PATCH 1313/1664] python3-async_generator: rebuild for Python 3.14 --- srcpkgs/python3-async_generator/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-async_generator/template b/srcpkgs/python3-async_generator/template index 64c862aa2e2417..24ee9121c977fa 100644 --- a/srcpkgs/python3-async_generator/template +++ b/srcpkgs/python3-async_generator/template @@ -1,7 +1,7 @@ # Template file for 'python3-async_generator' pkgname=python3-async_generator version=1.10 -revision=7 +revision=8 build_style=python3-module pycompile_module="async_generator" hostmakedepends="python3-setuptools" From 9f7d0ff14cf7c233852999d80f34a4dd9954671c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:52 -0500 Subject: [PATCH 1314/1664] python3-astral: rebuild for Python 3.14 --- srcpkgs/python3-astral/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-astral/template b/srcpkgs/python3-astral/template index 82e0290420b485..ac8794cc8285d9 100644 --- a/srcpkgs/python3-astral/template +++ b/srcpkgs/python3-astral/template @@ -1,7 +1,7 @@ # Template file for 'python3-astral' pkgname=python3-astral version=2.2 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3 python3-setuptools" depends="python3-pytz" From 58ac02c2741cce1c9eacf9b8674cf02f17cee7c5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:52 -0500 Subject: [PATCH 1315/1664] python3-asteval: rebuild for Python 3.14 --- srcpkgs/python3-asteval/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-asteval/template b/srcpkgs/python3-asteval/template index 79700ef99d257c..ce1f151a4f1870 100644 --- a/srcpkgs/python3-asteval/template +++ b/srcpkgs/python3-asteval/template @@ -1,7 +1,7 @@ # Template file for 'python3-asteval' pkgname=python3-asteval version=0.9.26 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3" From 96e403116da4adc51e16d48aebcbb7d4dcf9edca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:52 -0500 Subject: [PATCH 1316/1664] python3-aspectlib: rebuild for Python 3.14 --- srcpkgs/python3-aspectlib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-aspectlib/template b/srcpkgs/python3-aspectlib/template index 926fe9e47c1b35..3ad2fcee2a5f1c 100644 --- a/srcpkgs/python3-aspectlib/template +++ b/srcpkgs/python3-aspectlib/template @@ -1,7 +1,7 @@ # Template file for 'python3-aspectlib' pkgname=python3-aspectlib version=2.0.0 -revision=3 +revision=4 build_style=python3-pep517 make_check_args="--ignore tests/test_integrations.py" hostmakedepends="python3-setuptools python3-wheel" From 36c7b4f2d151cd952d0d9fa5b48ec58dd924bca5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:53 -0500 Subject: [PATCH 1317/1664] python3-argh: rebuild for Python 3.14 --- srcpkgs/python3-argh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-argh/template b/srcpkgs/python3-argh/template index 4bbbee0db5a75d..ae1f190e460cc6 100644 --- a/srcpkgs/python3-argh/template +++ b/srcpkgs/python3-argh/template @@ -1,7 +1,7 @@ # Template file for 'python3-argh' pkgname=python3-argh version=0.26.2 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 82c8f4d7f530bdab997805775220cb81b7a01fea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:53 -0500 Subject: [PATCH 1318/1664] python3-applib: rebuild for Python 3.14 --- srcpkgs/python3-applib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-applib/template b/srcpkgs/python3-applib/template index cad6de1db13dce..3d76099773932c 100644 --- a/srcpkgs/python3-applib/template +++ b/srcpkgs/python3-applib/template @@ -1,7 +1,7 @@ # Template file for 'python3-applib' pkgname=python3-applib version=1.2 -revision=8 +revision=9 create_wrksrc=yes build_wrksrc="applib-${version}" build_style=python3-module From 969daa107f225da9a47974cf7cd080910b15e932 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:53 -0500 Subject: [PATCH 1319/1664] python3-ansiwrap: rebuild for Python 3.14 --- srcpkgs/python3-ansiwrap/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ansiwrap/template b/srcpkgs/python3-ansiwrap/template index 2d8a6a85f4b57c..b1303d3c054d49 100644 --- a/srcpkgs/python3-ansiwrap/template +++ b/srcpkgs/python3-ansiwrap/template @@ -1,7 +1,7 @@ # Template file for 'python3-ansiwrap' pkgname=python3-ansiwrap version=0.8.4 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 63cba726ad2c7f34e60a8323410f1a54605b4e8e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:53 -0500 Subject: [PATCH 1320/1664] python3-ansicolors: rebuild for Python 3.14 --- srcpkgs/python3-ansicolors/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ansicolors/template b/srcpkgs/python3-ansicolors/template index 56464843816cc3..1507bc795e01d4 100644 --- a/srcpkgs/python3-ansicolors/template +++ b/srcpkgs/python3-ansicolors/template @@ -1,7 +1,7 @@ # Template file for 'python3-ansicolors' pkgname=python3-ansicolors version=1.1.8 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 1076a506b2334ce3fb13938a231c6d748fe1c496 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:53 -0500 Subject: [PATCH 1321/1664] python3-ansible-lint: rebuild for Python 3.14 --- srcpkgs/python3-ansible-lint/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ansible-lint/template b/srcpkgs/python3-ansible-lint/template index 2c6fbf58669b4f..ac2bac141dfda3 100644 --- a/srcpkgs/python3-ansible-lint/template +++ b/srcpkgs/python3-ansible-lint/template @@ -1,7 +1,7 @@ # Template file for 'python3-ansible-lint' pkgname=python3-ansible-lint version=24.9.2 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" depends="python3-ansible-compat ansible-core black python3-filelock From f58acaac9ed8f6e8c3921aaece654f017a60f55e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:53 -0500 Subject: [PATCH 1322/1664] python3-alsa: rebuild for Python 3.14 --- srcpkgs/python3-alsa/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-alsa/template b/srcpkgs/python3-alsa/template index 139435fa105251..5fa45452621dd1 100644 --- a/srcpkgs/python3-alsa/template +++ b/srcpkgs/python3-alsa/template @@ -1,7 +1,7 @@ # Template file for 'python3-alsa' pkgname=python3-alsa version=1.1.6 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel alsa-lib-devel" From 1d088711185731ba8a3885193e2c9763b15eeb78 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:54 -0500 Subject: [PATCH 1323/1664] python3-aioresponses: rebuild for Python 3.14 --- srcpkgs/python3-aioresponses/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-aioresponses/template b/srcpkgs/python3-aioresponses/template index 182617aa877151..3f428dbaeec21c 100644 --- a/srcpkgs/python3-aioresponses/template +++ b/srcpkgs/python3-aioresponses/template @@ -1,7 +1,7 @@ # Template file for 'python3-aioresponses' pkgname=python3-aioresponses version=0.7.6 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-pbr python3-setuptools" depends="python3-aiohttp" From 004c2e07d378a2095b862c43f58304898dc7da11 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:54 -0500 Subject: [PATCH 1324/1664] python3-aioinflux: rebuild for Python 3.14 --- srcpkgs/python3-aioinflux/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-aioinflux/template b/srcpkgs/python3-aioinflux/template index 41a7062e589b2e..f0df1ed2741455 100644 --- a/srcpkgs/python3-aioinflux/template +++ b/srcpkgs/python3-aioinflux/template @@ -1,7 +1,7 @@ # Template file for 'python3-aioinflux' pkgname=python3-aioinflux version=0.9.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-aiohttp python3-ciso8601" From 1d7915170bd919e5c6de381f9c6d2d0f7c91392f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:54 -0500 Subject: [PATCH 1325/1664] python3-aiohttp-sse-client: rebuild for Python 3.14 --- srcpkgs/python3-aiohttp-sse-client/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-aiohttp-sse-client/template b/srcpkgs/python3-aiohttp-sse-client/template index cd31f23a6a28ad..38a1bec20a60c4 100644 --- a/srcpkgs/python3-aiohttp-sse-client/template +++ b/srcpkgs/python3-aiohttp-sse-client/template @@ -1,7 +1,7 @@ # Template file for 'python3-aiohttp-sse-client' pkgname=python3-aiohttp-sse-client version=0.2.1 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-aiohttp python3-attrs python3-multidict python3-yarl" From e14558d83abe0b2cf3a2a9121b7f3174a7a75699 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:54 -0500 Subject: [PATCH 1326/1664] python3-aiohappyeyeballs: rebuild for Python 3.14 --- srcpkgs/python3-aiohappyeyeballs/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-aiohappyeyeballs/template b/srcpkgs/python3-aiohappyeyeballs/template index 2a3550b589b687..9a9515023289d2 100644 --- a/srcpkgs/python3-aiohappyeyeballs/template +++ b/srcpkgs/python3-aiohappyeyeballs/template @@ -1,7 +1,7 @@ # Template file for 'python3-aiohappyeyeballs' pkgname=python3-aiohappyeyeballs version=2.6.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3" From 9b1eede2dd7dbcd35f659aaa52fec3ddf4af7184 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:54 -0500 Subject: [PATCH 1327/1664] python3-aioamqp: rebuild for Python 3.14 --- srcpkgs/python3-aioamqp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-aioamqp/template b/srcpkgs/python3-aioamqp/template index 6a3ef286d3e5f4..5e4cebfbf69b75 100644 --- a/srcpkgs/python3-aioamqp/template +++ b/srcpkgs/python3-aioamqp/template @@ -1,7 +1,7 @@ # Template file for 'python3-aioamqp' pkgname=python3-aioamqp version=0.15.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pamqp" From 771189f5b34c8e87eb761b0056b30c6c6244dbc1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:54 -0500 Subject: [PATCH 1328/1664] python3-adblock: rebuild for Python 3.14 --- srcpkgs/python3-adblock/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-adblock/template b/srcpkgs/python3-adblock/template index 47ed2dab4fad31..280e347fe71e30 100644 --- a/srcpkgs/python3-adblock/template +++ b/srcpkgs/python3-adblock/template @@ -1,7 +1,7 @@ # Template file for 'python3-adblock' pkgname=python3-adblock version=0.6.0 -revision=6 +revision=7 build_style=python3-pep517 build_helper="rust" make_check_args="-k not(test_required_python_version)" From 9e91c83ead455dc8a7db7c112cce837db4e152a7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:55 -0500 Subject: [PATCH 1329/1664] python3-aalib: rebuild for Python 3.14 --- srcpkgs/python3-aalib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-aalib/template b/srcpkgs/python3-aalib/template index 6f41161a932cd5..f9b7c731428ec8 100644 --- a/srcpkgs/python3-aalib/template +++ b/srcpkgs/python3-aalib/template @@ -1,7 +1,7 @@ # Template file for 'python3-aalib' pkgname=python3-aalib version=0.3.2 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="aalib python3" From 8828f7b1de6b8cc32933ebd2f6f7552352377729 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:55 -0500 Subject: [PATCH 1330/1664] python3-Yapsy: rebuild for Python 3.14 --- srcpkgs/python3-Yapsy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Yapsy/template b/srcpkgs/python3-Yapsy/template index 35d2810735ef7c..b45def6d433912 100644 --- a/srcpkgs/python3-Yapsy/template +++ b/srcpkgs/python3-Yapsy/template @@ -1,7 +1,7 @@ # Template file for 'python3-Yapsy' pkgname=python3-Yapsy version=1.12.2 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 886ed89a7339e3dfe54cf069c44a5ef3e6acab8f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:55 -0500 Subject: [PATCH 1331/1664] python3-TxSNI: rebuild for Python 3.14 --- srcpkgs/python3-TxSNI/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-TxSNI/template b/srcpkgs/python3-TxSNI/template index 2bee2db1028cad..5e330503a3c5b4 100644 --- a/srcpkgs/python3-TxSNI/template +++ b/srcpkgs/python3-TxSNI/template @@ -1,7 +1,7 @@ # Template file for 'python3-TxSNI' pkgname=python3-TxSNI version=0.2.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-Twisted python3-openssl" From 4bcfe96a2614c4818f8bf4ac1943e6201030555e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:55 -0500 Subject: [PATCH 1332/1664] python3-Telethon: rebuild for Python 3.14 --- srcpkgs/python3-Telethon/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Telethon/template b/srcpkgs/python3-Telethon/template index 4a3eeb166f6694..9f4fdc16c65b0d 100644 --- a/srcpkgs/python3-Telethon/template +++ b/srcpkgs/python3-Telethon/template @@ -1,7 +1,7 @@ # Template file for 'python3-Telethon' pkgname=python3-Telethon version=1.32.1 -revision=2 +revision=3 build_style=python3-module make_check_args="--deselect tests/readthedocs/quick_references/test_client_reference.py::test_all_methods_present --deselect tests/telethon/test_utils.py::test_private_get_extension From ca934aca3f8263d63717f3775a63b187bcdd98bc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:55 -0500 Subject: [PATCH 1333/1664] python3-SoCo: rebuild for Python 3.14 --- srcpkgs/python3-SoCo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-SoCo/template b/srcpkgs/python3-SoCo/template index 34e889385721fa..03744775bf28fd 100644 --- a/srcpkgs/python3-SoCo/template +++ b/srcpkgs/python3-SoCo/template @@ -1,7 +1,7 @@ # Template file for 'python3-SoCo' pkgname=python3-SoCo version=0.29.1 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-xmltodict python3-requests python3-ifaddr python3-appdirs python3-lxml" From 25fbde79a53f8ff75901d0515645702ff89f00ec Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:55 -0500 Subject: [PATCH 1334/1664] python3-ReParser: rebuild for Python 3.14 --- srcpkgs/python3-ReParser/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ReParser/template b/srcpkgs/python3-ReParser/template index 74d510974c3e54..1ddd080fedafa5 100644 --- a/srcpkgs/python3-ReParser/template +++ b/srcpkgs/python3-ReParser/template @@ -1,7 +1,7 @@ # Template file for 'python3-ReParser' pkgname=python3-ReParser version=1.4.3 -revision=7 +revision=8 build_style=python3-module pycompile_module="reparser.py" hostmakedepends="python3-setuptools" From 66dbdf35310cffe04633c62494e9aa3f66776b8f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:55 -0500 Subject: [PATCH 1335/1664] python3-RPi.GPIO: rebuild for Python 3.14 --- srcpkgs/python3-RPi.GPIO/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-RPi.GPIO/template b/srcpkgs/python3-RPi.GPIO/template index 3f290793444bbb..d1cf4234d237f7 100644 --- a/srcpkgs/python3-RPi.GPIO/template +++ b/srcpkgs/python3-RPi.GPIO/template @@ -1,7 +1,7 @@ # Template file for 'python3-RPi.GPIO' pkgname=python3-RPi.GPIO version=0.7.1 -revision=4 +revision=5 archs="armv[67]l* aarch64*" build_style=python3-module hostmakedepends="python3-setuptools" From 5a615b45bec8a01b21558d277a975915d13de2b8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:56 -0500 Subject: [PATCH 1336/1664] python3-PyQt5-networkauth: rebuild for Python 3.14 --- srcpkgs/python3-PyQt5-networkauth/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-PyQt5-networkauth/template b/srcpkgs/python3-PyQt5-networkauth/template index 8b787de1dc7263..b5241a40b740e0 100644 --- a/srcpkgs/python3-PyQt5-networkauth/template +++ b/srcpkgs/python3-PyQt5-networkauth/template @@ -1,7 +1,7 @@ # Template file for 'python3-PyQt5-networkauth' pkgname=python3-PyQt5-networkauth version=5.15.6 -revision=1 +revision=2 build_style=sip-build build_helper="python3" hostmakedepends="qt5-qmake pkg-config sip python3-PyQt-builder" From c76a7e438a02dcee6026478ca8a863e2e00ef79d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:56 -0500 Subject: [PATCH 1337/1664] python3-PyOpenGL-accelerate: rebuild for Python 3.14 --- srcpkgs/python3-PyOpenGL-accelerate/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-PyOpenGL-accelerate/template b/srcpkgs/python3-PyOpenGL-accelerate/template index f664e71b40c87d..2d692c4de43a56 100644 --- a/srcpkgs/python3-PyOpenGL-accelerate/template +++ b/srcpkgs/python3-PyOpenGL-accelerate/template @@ -1,7 +1,7 @@ # Template file for 'python3-PyOpenGL-accelerate' pkgname=python3-PyOpenGL-accelerate version=3.1.9 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" makedepends="python3-devel" From 118f138cffee3ce496c10a1e79c263968064b0ff Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:56 -0500 Subject: [PATCH 1338/1664] python3-PyHamcrest: rebuild for Python 3.14 --- srcpkgs/python3-PyHamcrest/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-PyHamcrest/template b/srcpkgs/python3-PyHamcrest/template index c5f642d209e7ef..d873e158e72594 100644 --- a/srcpkgs/python3-PyHamcrest/template +++ b/srcpkgs/python3-PyHamcrest/template @@ -1,7 +1,7 @@ # Template file for 'python3-PyHamcrest' pkgname=python3-PyHamcrest version=2.1.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatch-vcs" depends="python3" From 7a6bc5744f32aebed0b235024f1a2218e2c3f77a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:56 -0500 Subject: [PATCH 1339/1664] python3-PyAudio: rebuild for Python 3.14 --- srcpkgs/python3-PyAudio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-PyAudio/template b/srcpkgs/python3-PyAudio/template index f1e5634a26d211..e155baa9ded669 100644 --- a/srcpkgs/python3-PyAudio/template +++ b/srcpkgs/python3-PyAudio/template @@ -1,7 +1,7 @@ # Template file for 'python3-PyAudio' pkgname=python3-PyAudio version=0.2.12 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel portaudio-devel" From b8289851e12d9af718e395975ada0751dea8c7ba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:56 -0500 Subject: [PATCH 1340/1664] python3-Pebble: rebuild for Python 3.14 --- srcpkgs/python3-Pebble/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Pebble/template b/srcpkgs/python3-Pebble/template index 59d32d3c33b697..f43f322e69a341 100644 --- a/srcpkgs/python3-Pebble/template +++ b/srcpkgs/python3-Pebble/template @@ -1,7 +1,7 @@ # Template file for 'python3-Pebble' pkgname=python3-Pebble version=5.0.2 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From f171521f6f694395e78292803758b0b4f08da295 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:56 -0500 Subject: [PATCH 1341/1664] python3-PGPy: rebuild for Python 3.14 --- srcpkgs/python3-PGPy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-PGPy/template b/srcpkgs/python3-PGPy/template index 02a38f91fa10f7..99ab8436b1b861 100644 --- a/srcpkgs/python3-PGPy/template +++ b/srcpkgs/python3-PGPy/template @@ -1,7 +1,7 @@ # Template file for 'python3-PGPy' pkgname=python3-PGPy version=0.6.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools python3-wheel" depends="python3-cryptography python3-pyasn1 python3-six" From bba2bb75c1d453e682cc4ac226cf47bc79ce7b9f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:56 -0500 Subject: [PATCH 1342/1664] python3-MiniMock: rebuild for Python 3.14 --- srcpkgs/python3-MiniMock/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-MiniMock/template b/srcpkgs/python3-MiniMock/template index 96b79669a3c059..3622575f7a6360 100644 --- a/srcpkgs/python3-MiniMock/template +++ b/srcpkgs/python3-MiniMock/template @@ -1,7 +1,7 @@ # Template file for 'python3-MiniMock' pkgname=python3-MiniMock version=1.2.8 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 134f829a4da5afca7c6481c251695cee72eea60d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:57 -0500 Subject: [PATCH 1343/1664] python3-MechanicalSoup: rebuild for Python 3.14 --- srcpkgs/python3-MechanicalSoup/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-MechanicalSoup/template b/srcpkgs/python3-MechanicalSoup/template index 2fcccc69e0a13c..8688f084ce5066 100644 --- a/srcpkgs/python3-MechanicalSoup/template +++ b/srcpkgs/python3-MechanicalSoup/template @@ -1,7 +1,7 @@ # Template file for 'python3-MechanicalSoup' pkgname=python3-MechanicalSoup version=0.12.0 -revision=7 +revision=8 build_style=python3-module pycompile_module="mechanicalsoup" hostmakedepends="python3-setuptools" From f227b1a856cd435a0699969eb16229a8b3f9e78a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:57 -0500 Subject: [PATCH 1344/1664] python3-Inflector: rebuild for Python 3.14 --- srcpkgs/python3-Inflector/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Inflector/template b/srcpkgs/python3-Inflector/template index 1f7dedf05f7232..7940363e143fba 100644 --- a/srcpkgs/python3-Inflector/template +++ b/srcpkgs/python3-Inflector/template @@ -1,7 +1,7 @@ # Template file for 'python3-Inflector' pkgname=python3-Inflector version=3.0.1 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From a1e65eaba921fdee6134debe0511cd67104add71 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:57 -0500 Subject: [PATCH 1345/1664] python3-Flask-RESTful: rebuild for Python 3.14 --- srcpkgs/python3-Flask-RESTful/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Flask-RESTful/template b/srcpkgs/python3-Flask-RESTful/template index f36865706089c6..be8b2ac0d44109 100644 --- a/srcpkgs/python3-Flask-RESTful/template +++ b/srcpkgs/python3-Flask-RESTful/template @@ -1,7 +1,7 @@ # Template file for 'python3-Flask-RESTful' pkgname=python3-Flask-RESTful version=0.3.10 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-Flask python3-six python3-pytz python3-aniso8601" From fc26fb091b1b6b0fb29919850dafa269ed76f503 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:57 -0500 Subject: [PATCH 1346/1664] python3-Flask-Login: rebuild for Python 3.14 --- srcpkgs/python3-Flask-Login/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Flask-Login/template b/srcpkgs/python3-Flask-Login/template index dbb0c43f8ffa56..529484710ef917 100644 --- a/srcpkgs/python3-Flask-Login/template +++ b/srcpkgs/python3-Flask-Login/template @@ -1,7 +1,7 @@ # Template file for 'python3-Flask-Login' pkgname=python3-Flask-Login version=0.6.2 -revision=5 +revision=6 build_style=python3-module make_check_args="-p no:warnings" hostmakedepends="python3-setuptools" From 1894afc1f24611b01e9660f45ab4c68d6a00c8a0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:57 -0500 Subject: [PATCH 1347/1664] python3-Flask-HTTPAuth: rebuild for Python 3.14 --- srcpkgs/python3-Flask-HTTPAuth/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Flask-HTTPAuth/template b/srcpkgs/python3-Flask-HTTPAuth/template index 48883db2f80458..a8f470284db4b6 100644 --- a/srcpkgs/python3-Flask-HTTPAuth/template +++ b/srcpkgs/python3-Flask-HTTPAuth/template @@ -1,7 +1,7 @@ # Template file for 'python3-Flask-HTTPAuth' pkgname=python3-Flask-HTTPAuth version=4.8.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-Flask" From 8f8966283065304783ae35e27de85648f6e81f87 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:57 -0500 Subject: [PATCH 1348/1664] python3-Faker: rebuild for Python 3.14 --- srcpkgs/python3-Faker/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Faker/template b/srcpkgs/python3-Faker/template index 18aeb17533fa7c..ae3718ed4802c3 100644 --- a/srcpkgs/python3-Faker/template +++ b/srcpkgs/python3-Faker/template @@ -1,7 +1,7 @@ # Template file for 'python3-Faker' pkgname=python3-Faker version=33.1.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools" depends="python3-dateutil" From 4c04d4cb8e157041447cb9ea97d7be3728a92df9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:57 -0500 Subject: [PATCH 1349/1664] python3-Bottleneck: remove package This only gets updated when it fails to build with the latest Python, nothing requires it, and it fails to build with Python 3.14. --- srcpkgs/python3-Bottleneck/template | 21 --------------------- srcpkgs/removed-packages/template | 1 + 2 files changed, 1 insertion(+), 21 deletions(-) delete mode 100644 srcpkgs/python3-Bottleneck/template diff --git a/srcpkgs/python3-Bottleneck/template b/srcpkgs/python3-Bottleneck/template deleted file mode 100644 index ca8e441c093ebf..00000000000000 --- a/srcpkgs/python3-Bottleneck/template +++ /dev/null @@ -1,21 +0,0 @@ -# Template file for 'python3-Bottleneck' -pkgname=python3-Bottleneck -version=1.4.0 -revision=2 -build_style=python3-pep517 -make_check_target=".xbps-testdir/*/${py3_sitelib}/bottleneck/tests" -hostmakedepends="python3-setuptools python3-versioneer python3-wheel python3-numpy" -makedepends="python3-devel" -depends="python3-numpy" -checkdepends="python3-pytest-xdist $depends" -short_desc="Fast NumPy array functions written in C (Python3)" -maintainer="Orphaned " -license="BSD-2-Clause" -homepage="https://github.com/kwgoodman/bottleneck" -distfiles="${PYPI_SITE}/b/bottleneck/bottleneck-${version}.tar.gz" -checksum=beb36df519b8709e7d357c0c9639b03b885ca6355bbf5e53752c685de51605b8 - -post_install() { - rm -f ${DESTDIR}/usr/lib/python*/site-packages/bottleneck/LICENSE - vlicense LICENSE -} diff --git a/srcpkgs/removed-packages/template b/srcpkgs/removed-packages/template index 0b9aff986eb441..5b408513daaed9 100644 --- a/srcpkgs/removed-packages/template +++ b/srcpkgs/removed-packages/template @@ -809,6 +809,7 @@ replaces=" python-xlib<=0.29_1 python-zipp<=1.2.0_2 python-zope.interface<=5.5.2_1 + python3-Bottleneck<=1.4.0_2 python3-Cython0.29<=0.29.37_1 python3-Django<=3.0.7_2 python3-Flask-Assets<=0.12_9 From 07c98a6d83120b54892748e86774d1dca1f67bb3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:58 -0500 Subject: [PATCH 1350/1664] python3-3to2: rebuild for Python 3.14 --- srcpkgs/python3-3to2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-3to2/template b/srcpkgs/python3-3to2/template index e973828cd540e3..22d940f259649d 100644 --- a/srcpkgs/python3-3to2/template +++ b/srcpkgs/python3-3to2/template @@ -1,7 +1,7 @@ # Template file for 'python3-3to2' pkgname=python3-3to2 version=1.1.1 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools unzip" depends="python3" From 89b1b33620f121b2636d0e0c9e14db8dd2c45195 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:58 -0500 Subject: [PATCH 1351/1664] pysolfc: rebuild for Python 3.14 --- srcpkgs/pysolfc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template index d61a2fbcf58067..c5bd12392b7bc3 100644 --- a/srcpkgs/pysolfc/template +++ b/srcpkgs/pysolfc/template @@ -1,7 +1,7 @@ # Template file for 'pysolfc' pkgname=pysolfc version=3.4.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="gettext python3-pygame python3-random2 python3-six python3-tkinter python3-Pillow python3-attrs python3-pysol_cards" From 685dc73a4fdac8d03c786f6572c67eda7cc17df0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:58 -0500 Subject: [PATCH 1352/1664] pyradio: rebuild for Python 3.14 --- srcpkgs/pyradio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template index ff3dbcb42e992c..1c50a3aee487ae 100644 --- a/srcpkgs/pyradio/template +++ b/srcpkgs/pyradio/template @@ -1,7 +1,7 @@ # Template file for 'pyradio' pkgname=pyradio version=0.9.3.11.15 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3-requests python3-dnspython python3-psutil python3-rich From 1c70b97837d8f19cd6ef5fec3f4a95166c6169ab Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:58 -0500 Subject: [PATCH 1353/1664] pyotherside: rebuild for Python 3.14 --- srcpkgs/pyotherside/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pyotherside/template b/srcpkgs/pyotherside/template index 80130b1840aef4..c255505feb916a 100644 --- a/srcpkgs/pyotherside/template +++ b/srcpkgs/pyotherside/template @@ -1,7 +1,7 @@ # Template file for 'pyotherside' pkgname=pyotherside version=1.6.1 -revision=2 +revision=3 build_style=qmake configure_args="PYTHON_CONFIG=${XBPS_CROSS_BASE}/usr/bin/python3-config" hostmakedepends="qt5-qmake qt5-host-tools" From 1947189c37991b2abf99bb70eceb0221bcc0ed16 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:58 -0500 Subject: [PATCH 1354/1664] pympress: rebuild for Python 3.14 --- srcpkgs/pympress/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pympress/template b/srcpkgs/pympress/template index b2fc443c3651f1..66cc71cabff42c 100644 --- a/srcpkgs/pympress/template +++ b/srcpkgs/pympress/template @@ -1,7 +1,7 @@ # Template file for 'pympress' pkgname=pympress version=1.8.6 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-Babel python3-setuptools" depends="gobject-introspection gtk+3 python3-cairo gdk-pixbuf python3-gobject poppler-glib From ab2705a6873f4874704adda2ad941cb5c78ba081 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:58 -0500 Subject: [PATCH 1355/1664] pymol: rebuild for Python 3.14 --- srcpkgs/pymol/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pymol/template b/srcpkgs/pymol/template index 89d729bec7bda7..8edad68c71ca45 100644 --- a/srcpkgs/pymol/template +++ b/srcpkgs/pymol/template @@ -1,7 +1,7 @@ # Template file for 'pymol' pkgname=pymol version=2.5.0 -revision=9 +revision=10 build_style="python3-module" build_helper="numpy" hostmakedepends="python3-setuptools" From 3bcda9450e66e2db43f64062cad447ed0bae42ca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:58 -0500 Subject: [PATCH 1356/1664] pylint: rebuild for Python 3.14 --- srcpkgs/pylint/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pylint/template b/srcpkgs/pylint/template index c5e4f0a44ba846..1e27d74d19dabc 100644 --- a/srcpkgs/pylint/template +++ b/srcpkgs/pylint/template @@ -1,7 +1,7 @@ # Template file for 'pylint' pkgname=pylint version=3.3.7 -revision=1 +revision=2 build_style=python3-pep517 make_check_args="--primer-stdlib" hostmakedepends="python3-setuptools" From 8c34af205f550927829333602f0ab75e3f26a9cc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:59 -0500 Subject: [PATCH 1357/1664] pycp: rebuild for Python 3.14 --- srcpkgs/pycp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template index a465c032f6cb05..ed1b46e2fd1705 100644 --- a/srcpkgs/pycp/template +++ b/srcpkgs/pycp/template @@ -1,7 +1,7 @@ # Template file for 'pycp' pkgname=pycp version=8.0.8 -revision=7 +revision=8 build_style=python3-module pycompile_module="pycp" hostmakedepends="help2man python3-setuptools" From 90509d76234648f07da5a275766f19011e2a9280 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:59 -0500 Subject: [PATCH 1358/1664] pychess: rebuild for Python 3.14 --- srcpkgs/pychess/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template index e68c221364d2d8..134dfddfcc8bbf 100644 --- a/srcpkgs/pychess/template +++ b/srcpkgs/pychess/template @@ -1,7 +1,7 @@ # Template file for 'pychess' pkgname=pychess version=1.0.5 -revision=1 +revision=2 build_style=python3-module _commondeps="python3-gobject python3-cairo python3-pexpect python3-SQLAlchemy2 gst1-python3 gtksourceview" From 2829a23aa6dde00e380963fe9e56386e26685969 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:59 -0500 Subject: [PATCH 1359/1664] py3status: rebuild for Python 3.14 --- srcpkgs/py3status/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template index 4189a475b87095..f5297244614b49 100644 --- a/srcpkgs/py3status/template +++ b/srcpkgs/py3status/template @@ -1,7 +1,7 @@ # Template file for 'py3status' pkgname=py3status version=3.59 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-wheel hatchling" depends="python3-pyudev" From 9d9c9e4cc2a1e2ce998064df09e1073044ebf7ff Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:59 -0500 Subject: [PATCH 1360/1664] pulseaudio-equalizer-ladspa: rebuild for Python 3.14 --- srcpkgs/pulseaudio-equalizer-ladspa/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pulseaudio-equalizer-ladspa/template b/srcpkgs/pulseaudio-equalizer-ladspa/template index 520f22733fe8cd..42151bbb53a3f4 100644 --- a/srcpkgs/pulseaudio-equalizer-ladspa/template +++ b/srcpkgs/pulseaudio-equalizer-ladspa/template @@ -1,7 +1,7 @@ # Template file for 'pulseaudio-equalizer-ladspa' pkgname=pulseaudio-equalizer-ladspa version=3.0.2 -revision=7 +revision=8 build_style=meson pycompile_module="pulseeq" hostmakedepends="glib-devel pkg-config python3" From 22707dd4ec837b8c132fe556660b422be1ada18c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:59 -0500 Subject: [PATCH 1361/1664] puddletag: rebuild for Python 3.14 --- srcpkgs/puddletag/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/puddletag/template b/srcpkgs/puddletag/template index a28863520ffada..ca9d16a5709fb6 100644 --- a/srcpkgs/puddletag/template +++ b/srcpkgs/puddletag/template @@ -1,7 +1,7 @@ # Template file for 'puddletag' pkgname=puddletag version=2.4.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3 python3-configobj python3-mutagen python3-parsing From 6548a5ffb55c05773c287db8e220d3c6b2e25853 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:59 -0500 Subject: [PATCH 1362/1664] ps_mem: rebuild for Python 3.14 --- srcpkgs/ps_mem/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ps_mem/template b/srcpkgs/ps_mem/template index fd6141153c665a..f0beff7829bab8 100644 --- a/srcpkgs/ps_mem/template +++ b/srcpkgs/ps_mem/template @@ -1,7 +1,7 @@ # Template file for 'ps_mem' pkgname=ps_mem version=3.14 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From aba8fa9475dff3cf5b09d889c6462468eeb5129c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:59 -0500 Subject: [PATCH 1363/1664] protontricks: rebuild for Python 3.14 --- srcpkgs/protontricks/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/protontricks/template b/srcpkgs/protontricks/template index 7464d95affb35b..7d75f68e5e2ea0 100644 --- a/srcpkgs/protontricks/template +++ b/srcpkgs/protontricks/template @@ -1,7 +1,7 @@ # Template file for 'protontricks' pkgname=protontricks version=1.12.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3-vdf winetricks python3-setuptools python3-Pillow" From d467b1e0e5b2fb28721a4be390625fa6c303d9d2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:00 -0500 Subject: [PATCH 1364/1664] profanity: rebuild for Python 3.14 --- srcpkgs/profanity/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/profanity/template b/srcpkgs/profanity/template index e5d9a3676d6b8d..e8fa20cdf55fdb 100644 --- a/srcpkgs/profanity/template +++ b/srcpkgs/profanity/template @@ -1,7 +1,7 @@ # Template file for 'profanity' pkgname=profanity version=0.15.1 -revision=1 +revision=2 build_style=gnu-configure configure_args="--enable-notifications --enable-otr --enable-pgp --enable-python-plugins --enable-plugins --with-xscreensaver --enable-omemo From 5cea24beeb2049be9f79224128b2463f8a0f254a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:00 -0500 Subject: [PATCH 1365/1664] pre-commit: rebuild for Python 3.14 --- srcpkgs/pre-commit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pre-commit/template b/srcpkgs/pre-commit/template index 858fed74ea195f..139284e73a65ab 100644 --- a/srcpkgs/pre-commit/template +++ b/srcpkgs/pre-commit/template @@ -1,7 +1,7 @@ # Template file for 'pre-commit' pkgname=pre-commit version=4.3.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="nodeenv python3-cfgv python3-identify python3-yaml From 11187b1231ed548d6dff268a2b7b7553a9fcb440 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:00 -0500 Subject: [PATCH 1366/1664] postgresql16: rebuild for Python 3.14 --- srcpkgs/postgresql16/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/postgresql16/template b/srcpkgs/postgresql16/template index f6eae03d146b6f..9d1e58c5c29758 100644 --- a/srcpkgs/postgresql16/template +++ b/srcpkgs/postgresql16/template @@ -1,7 +1,7 @@ # Template file for 'postgresql16' pkgname=postgresql16 version=16.10 -revision=1 +revision=2 build_style=gnu-configure make_build_target=world _major="${version%%.*}" From 586a6c26bf7514b36ee9124dd1207db72c3246ca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:00 -0500 Subject: [PATCH 1367/1664] portage: rebuild for Python 3.14 --- srcpkgs/portage/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/portage/template b/srcpkgs/portage/template index 06b0308d44c3d4..22fb7ed374f031 100644 --- a/srcpkgs/portage/template +++ b/srcpkgs/portage/template @@ -1,7 +1,7 @@ # Template file for 'portage' pkgname=portage version=3.0.44 -revision=3 +revision=4 build_style=python3-module make_install_args="--sbindir=/usr/bin" hostmakedepends="python3 python3-setuptools" From bd227edde1d0e5d2266c5462ae95495c2b936926 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:00 -0500 Subject: [PATCH 1368/1664] polysh: rebuild for Python 3.14 --- srcpkgs/polysh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/polysh/template b/srcpkgs/polysh/template index e46b112dd8a080..4cee01b2ed12f8 100644 --- a/srcpkgs/polysh/template +++ b/srcpkgs/polysh/template @@ -1,7 +1,7 @@ # Template file for 'polysh' pkgname=polysh version=0.13 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 openssh" From 124189dbe3156f28ea727db5ff2668eff4f9a6e6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:00 -0500 Subject: [PATCH 1369/1664] polychromatic: rebuild for Python 3.14 --- srcpkgs/polychromatic/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/polychromatic/template b/srcpkgs/polychromatic/template index ff43bc3ad74ceb..a4b72352e4e89c 100644 --- a/srcpkgs/polychromatic/template +++ b/srcpkgs/polychromatic/template @@ -1,7 +1,7 @@ # Template file for 'polychromatic' pkgname=polychromatic version=0.9.4 -revision=1 +revision=2 build_style=meson hostmakedepends="ninja gettext python3-packaging-bootstrap" depends="python3-colorama python3-setproctitle python3-requests python3-colour From c30a15dbac906bbb3cacb9cd800da360106004c8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:00 -0500 Subject: [PATCH 1370/1664] poezio: rebuild for Python 3.14 --- srcpkgs/poezio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/poezio/template b/srcpkgs/poezio/template index ed0ca60d45e8cd..f1d15daa3af243 100644 --- a/srcpkgs/poezio/template +++ b/srcpkgs/poezio/template @@ -1,7 +1,7 @@ # Template file for 'poezio' pkgname=poezio version=0.14 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools pkg-config" makedepends="python3-devel" From f18f3443aed86ee50ca92e46de4abf2061795aa6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:01 -0500 Subject: [PATCH 1371/1664] podman-compose: rebuild for Python 3.14 --- srcpkgs/podman-compose/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/podman-compose/template b/srcpkgs/podman-compose/template index 5103f800ec50ce..799fa201f5f48f 100644 --- a/srcpkgs/podman-compose/template +++ b/srcpkgs/podman-compose/template @@ -1,7 +1,7 @@ # Template file for 'podman-compose' pkgname=podman-compose version=1.5.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="podman python3-yaml python3-dotenv" From ad7004ebf67d3acd8d4da755c644cc1b28e84970 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:01 -0500 Subject: [PATCH 1372/1664] pockyt: rebuild for Python 3.14 --- srcpkgs/pockyt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template index 73193b623f1a82..8eb563905e7480 100644 --- a/srcpkgs/pockyt/template +++ b/srcpkgs/pockyt/template @@ -1,7 +1,7 @@ # Template file for 'pockyt' pkgname=pockyt version=1.4.6 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-parse" From 893f28e741f129b0e32c10a651aa5c49130f44d9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:01 -0500 Subject: [PATCH 1373/1664] pmbootstrap: rebuild for Python 3.14 --- srcpkgs/pmbootstrap/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template index bff75d18981a1f..ee2fe45e88c4d5 100644 --- a/srcpkgs/pmbootstrap/template +++ b/srcpkgs/pmbootstrap/template @@ -1,7 +1,7 @@ # Template file for 'pmbootstrap' pkgname=pmbootstrap version=3.5.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="git openssl python3 kpartx util-linux procps-ng tar" From 886bf6264446c9ccc5db09627501d9cd95bc4549 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:01 -0500 Subject: [PATCH 1374/1664] pluma: rebuild for Python 3.14 --- srcpkgs/pluma/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pluma/template b/srcpkgs/pluma/template index 158834d159bdfe..e01b0d438311b5 100644 --- a/srcpkgs/pluma/template +++ b/srcpkgs/pluma/template @@ -1,7 +1,7 @@ # Template file for 'pluma' pkgname=pluma version=1.28.0 -revision=2 +revision=3 build_style=gnu-configure build_helper=gir pycompile_dirs="usr/lib/pluma/plugins" From 6efb398236352b63c79035f1729a24741c072963 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:01 -0500 Subject: [PATCH 1375/1664] plplot: rebuild for Python 3.14 --- .../patches/plplot-5.15.0-swig-4.3.patch | 108 ++++++++++++++++++ .../patches/plplot-5.15.0-swig-4.4.patch | 19 +++ srcpkgs/plplot/template | 3 +- 3 files changed, 129 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/plplot/patches/plplot-5.15.0-swig-4.3.patch create mode 100644 srcpkgs/plplot/patches/plplot-5.15.0-swig-4.4.patch diff --git a/srcpkgs/plplot/patches/plplot-5.15.0-swig-4.3.patch b/srcpkgs/plplot/patches/plplot-5.15.0-swig-4.3.patch new file mode 100644 index 00000000000000..b8e700cf95bea0 --- /dev/null +++ b/srcpkgs/plplot/patches/plplot-5.15.0-swig-4.3.patch @@ -0,0 +1,108 @@ +https://src.fedoraproject.org/rpms/plplot/blob/rawhide/f/plplot-5.15.0-swig-4.3.patch + +diff -Naur plplot-5.15.0-original/bindings/java/plplotjavac.i plplot-5.15.0/bindings/java/plplotjavac.i +--- plplot-5.15.0-original/bindings/java/plplotjavac.i 2024-10-08 20:04:53.157286783 +0100 ++++ plplot-5.15.0/bindings/java/plplotjavac.i 2024-10-08 20:41:43.220215246 +0100 +@@ -2128,9 +2128,9 @@ + %typemap( argout ) PLGraphicsIn * gin { + PyObject *o; + o = PyFloat_FromDouble( $1->wX ); +- resultobj = t_output_helper( resultobj, o ); ++ resultobj = SWIG_AppendOutput( resultobj, o ); + o = PyFloat_FromDouble( $1->wY ); +- resultobj = t_output_helper( resultobj, o ); ++ resultobj = SWIG_AppendOutput( resultobj, o ); + } + #endif + +diff -Naur plplot-5.15.0-original/bindings/octave/plplot_octave.i plplot-5.15.0/bindings/octave/plplot_octave.i +--- plplot-5.15.0-original/bindings/octave/plplot_octave.i 2024-10-08 20:04:53.149286728 +0100 ++++ plplot-5.15.0/bindings/octave/plplot_octave.i 2024-10-08 20:08:31.766682937 +0100 +@@ -770,7 +770,7 @@ + } + %typemap ( argout ) ( const PLFLT * ArrayY, PLINT ny, PLFLT * OutMatrixCk ) + { +- $result = SWIG_Octave_AppendOutput( $result, retval$argnum( 0 ) ); ++ $result = SWIG_AppendOutput( $result, retval$argnum( 0 ) ); + } + %typemap ( freearg ) ( const PLFLT * ArrayY, PLINT ny, PLFLT * OutMatrixCk ) + { +@@ -796,7 +796,7 @@ + local_charMatrix = charMatrix( 1, local_string_length ); + local_charMatrix.insert( local_string$argnum, 0, 0 ); + retval( 0 ) = octave_value( local_charMatrix ); +- $result = SWIG_Octave_AppendOutput( $result, retval( 0 ) ); ++ $result = SWIG_AppendOutput( $result, retval( 0 ) ); + } + + typedef PLINT ( *defined_func )( PLFLT, PLFLT ); +diff -Naur plplot-5.15.0-original/bindings/python/fragments.i plplot-5.15.0/bindings/python/fragments.i +--- plplot-5.15.0-original/bindings/python/fragments.i 2024-10-08 20:04:53.161286811 +0100 ++++ plplot-5.15.0/bindings/python/fragments.i 2024-10-08 20:41:07.703954787 +0100 +@@ -1,29 +1,2 @@ + /* Helper function to return tuples */ +- +-%fragment("t_output_helper","header") %{ +- static PyObject* t_output_helper(PyObject* target, PyObject* o) { +- PyObject* o2; +- PyObject* o3; +- +- if (!target) { +- target = o; +- } else if (target == Py_None) { +- Py_DECREF(Py_None); +- target = o; +- } else { +- if (!PyTuple_Check(target)) { +- o2 = target; +- target = PyTuple_New(1); +- PyTuple_SetItem(target, 0, o2); +- } +- o3 = PyTuple_New(1); +- PyTuple_SetItem(o3, 0, o); +- +- o2 = target; +- target = PySequence_Concat(o2, o3); +- Py_DECREF(o2); +- Py_DECREF(o3); +- } +- return target; +-} +-%} ++/* Legacy - file can be deleted */ +diff -Naur plplot-5.15.0-original/bindings/python/plplotc.i plplot-5.15.0/bindings/python/plplotc.i +--- plplot-5.15.0-original/bindings/python/plplotc.i 2024-10-08 20:04:53.161286811 +0100 ++++ plplot-5.15.0/bindings/python/plplotc.i 2024-10-08 20:41:10.963978913 +0100 +@@ -682,7 +682,7 @@ + } + %typemap ( argout ) ( const PLFLT * ArrayY, PLINT ny, PLFLT **OutMatrixCk ) + { +- $result = SWIG_Python_AppendOutput( $result, array$argnum ); ++ $result = SWIG_AppendOutput( $result, array$argnum ); + } + + //************************** +@@ -749,9 +749,9 @@ + { + $1 = buff; + } +-%typemap( argout, fragment = "t_output_helper" ) char *OUTPUT { ++%typemap( argout ) char *OUTPUT { + PyObject *o = PyString_FromString( $1 ); +- $result = t_output_helper( $result, o ); ++ $result = SWIG_AppendOutput( $result, o ); + } + + //************************** +@@ -1662,9 +1662,9 @@ + %typemap( argout ) PLGraphicsIn * gin { + PyObject *o; + o = PyFloat_FromDouble( $1->wX ); +- resultobj = t_output_helper( resultobj, o ); ++ resultobj = SWIG_AppendOutput( resultobj, o ); + o = PyFloat_FromDouble( $1->wY ); +- resultobj = t_output_helper( resultobj, o ); ++ resultobj = SWIG_AppendOutput( resultobj, o ); + } + #endif + diff --git a/srcpkgs/plplot/patches/plplot-5.15.0-swig-4.4.patch b/srcpkgs/plplot/patches/plplot-5.15.0-swig-4.4.patch new file mode 100644 index 00000000000000..b28d98058b8161 --- /dev/null +++ b/srcpkgs/plplot/patches/plplot-5.15.0-swig-4.4.patch @@ -0,0 +1,19 @@ +https://src.fedoraproject.org/rpms/plplot/blob/rawhide/f/plplot-5.15.0-swig-4.4.patch + +diff -up plplot-5.15.0/bindings/python/plplotc.i.swig44 plplot-5.15.0/bindings/python/plplotc.i +--- plplot-5.15.0/bindings/python/plplotc.i.swig44 2025-10-15 12:01:00.439003625 +0200 ++++ plplot-5.15.0/bindings/python/plplotc.i 2025-10-15 12:05:29.562703571 +0200 +@@ -80,7 +80,13 @@ typedef PLINT PLBOOL; + // We have to get import_array called in our extension before we can use Numeric + %init + %{ ++#if SWIG_VERSION >= 0x040400 // SWIG >= 4.4.0 ++ // TODO: plplot should return -1 on failure here ++ // swig uses a function here ... ++ import_array1(-1); ++#else + import_array(); ++#endif + %} + + // I hate global variables but this is the best way I can think of to manage consistency diff --git a/srcpkgs/plplot/template b/srcpkgs/plplot/template index 5b5ed44c15a8be..da982b378ee401 100644 --- a/srcpkgs/plplot/template +++ b/srcpkgs/plplot/template @@ -1,7 +1,7 @@ # Template file for 'plplot' pkgname=plplot version=5.15.0 -revision=7 +revision=8 build_style=cmake build_helper="qemu numpy" configure_args=" @@ -45,6 +45,7 @@ post_patch() { vsed -i cmake/modules/instdirs.cmake -e '/General install/aFORCE' # detection requires X server vsed -i cmake/modules/tcl-related.cmake -e '/if(NOT PLPLOT_TK_VERSION)/ i set(PLPLOT_TK_VERSION ${PLPLOT_TCL_VERSION} CACHE STRING "Tk version found by wish")' + vsed -i bindings/python/plplotc.i -e 's/PyEval_CallObject/PyObject_CallObject/' } post_configure() { From d0462270794a072e5ee823729e8f0bc452421cdc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:01 -0500 Subject: [PATCH 1376/1664] plover: rebuild for Python 3.14 --- srcpkgs/plover/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/plover/template b/srcpkgs/plover/template index 6c015aac4b0772..dddea2a1f21b83 100644 --- a/srcpkgs/plover/template +++ b/srcpkgs/plover/template @@ -2,7 +2,7 @@ pkgname=plover reverts="4.0.0.dev12_1" version=4.0.0rc2 -revision=2 +revision=3 build_style=python3-module # https://github.com/openstenoproject/plover/discussions/1587 make_check_args="-k not(test_readonly_readonly_file)" From 0693c598bc870055074753ff0222770e8b37ab04 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:01 -0500 Subject: [PATCH 1377/1664] playonlinux: rebuild for Python 3.14 --- srcpkgs/playonlinux/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/playonlinux/template b/srcpkgs/playonlinux/template index 4e55ddb428a486..fd7c8783efffb4 100644 --- a/srcpkgs/playonlinux/template +++ b/srcpkgs/playonlinux/template @@ -1,7 +1,7 @@ # Template file for 'playonlinux' pkgname=playonlinux version=4.4 -revision=5 +revision=6 # contains pre-compiled binaries linked against glibc archs="i686 x86_64" pycompile_dirs="usr/share/$pkgname/python" From f124fe9b0ee1a17d1df91ace2c138edf6450344d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:02 -0500 Subject: [PATCH 1378/1664] playitslowly: rebuild for Python 3.14 --- srcpkgs/playitslowly/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template index a2430ff87cc5d3..5b270103441b51 100644 --- a/srcpkgs/playitslowly/template +++ b/srcpkgs/playitslowly/template @@ -1,7 +1,7 @@ # Template file for 'playitslowly' pkgname=playitslowly version=1.5.1 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3 python3-setuptools" depends="python3 python3-gobject gtk+3 gstreamer1 gst-plugins-base1 gst-plugins-good1 From e06adef8d68b0d3fed39ce800dd5b4e40c766787 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:02 -0500 Subject: [PATCH 1379/1664] platformio: rebuild for Python 3.14 --- srcpkgs/platformio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/platformio/template b/srcpkgs/platformio/template index 975a40a0236730..606bd23e8f922d 100644 --- a/srcpkgs/platformio/template +++ b/srcpkgs/platformio/template @@ -1,7 +1,7 @@ # Template file for 'platformio' pkgname=platformio version=6.1.18 -revision=1 +revision=2 build_style=python3-module # According to https://github.com/platformio/platformio-core/blob/9c20ab81cb68f1ffb7a8cac22ce95c4c797643ec/Makefile#L13 make_check_target="tests/test_examples.py" From f4873772a6aaebd495cf597725d2e64afcec8614 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:02 -0500 Subject: [PATCH 1380/1664] piper: rebuild for Python 3.14 --- srcpkgs/piper/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template index 5c0ed2b5b8c2ad..790ad0700c18d8 100644 --- a/srcpkgs/piper/template +++ b/srcpkgs/piper/template @@ -1,7 +1,7 @@ # Template file for 'piper' pkgname=piper version=0.8 -revision=2 +revision=3 build_style=meson hostmakedepends="gettext libratbag pkg-config glib-devel python3-lxml python3-evdev python3-cairo python3-gobject gtk4-update-icon-cache From 86cd2b8fc3fe78080cedc9d7721e81bc0dca63a5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:02 -0500 Subject: [PATCH 1381/1664] pinktrace: rebuild for Python 3.14 --- srcpkgs/pinktrace/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pinktrace/template b/srcpkgs/pinktrace/template index b897b896289085..bf6788379b67c2 100644 --- a/srcpkgs/pinktrace/template +++ b/srcpkgs/pinktrace/template @@ -1,7 +1,7 @@ # Template file for 'pinktrace' pkgname=pinktrace version=1.0.0 -revision=3 +revision=4 # arch list taken from https://dev.exherbo.org/~alip/pinktrace/#supported_platforms archs="x86_64* aarch64* i686* ppc*" build_style=gnu-configure From 0e664d347237b36cd25cab92bd814c1a77ef8bcb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:02 -0500 Subject: [PATCH 1382/1664] picard: rebuild for Python 3.14 --- srcpkgs/picard/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template index da370d8e3471cd..d83f1088ab3d84 100644 --- a/srcpkgs/picard/template +++ b/srcpkgs/picard/template @@ -1,7 +1,7 @@ # Template file for 'picard' pkgname=picard version=2.13.3 -revision=1 +revision=2 build_style=python3-module make_install_args="--disable-autoupdate" hostmakedepends="gettext python3-setuptools" From 8c11bda734b05da9eef4a054d8f1a8b2919acf4c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:02 -0500 Subject: [PATCH 1383/1664] photofilmstrip: rebuild for Python 3.14 --- srcpkgs/photofilmstrip/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/photofilmstrip/template b/srcpkgs/photofilmstrip/template index c4d59f6838af72..80d31dbea842cb 100644 --- a/srcpkgs/photofilmstrip/template +++ b/srcpkgs/photofilmstrip/template @@ -1,7 +1,7 @@ # Template file for 'photofilmstrip' pkgname=photofilmstrip version=4.1.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools gst1-python3 gettext" depends="python3 gst1-python3 gst1-editing-services python3-Pillow wxPython" From 896f60a50186c80853d6e8ae5448ba6d879b8bac Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:02 -0500 Subject: [PATCH 1384/1664] pgcli: rebuild for Python 3.14 --- srcpkgs/pgcli/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template index 8d427c771c3b9b..82fddde94cda03 100644 --- a/srcpkgs/pgcli/template +++ b/srcpkgs/pgcli/template @@ -1,7 +1,7 @@ # Template file for 'pgcli' pkgname=pgcli version=4.3.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3-pgspecial python3-click python3-Pygments From 5120fe740923a7267d8a4ae2cb61c79a420993f5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:03 -0500 Subject: [PATCH 1385/1664] pex: rebuild for Python 3.14 --- srcpkgs/pex/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pex/template b/srcpkgs/pex/template index ab6906f0556c2e..2ce18cecf23f37 100644 --- a/srcpkgs/pex/template +++ b/srcpkgs/pex/template @@ -1,7 +1,7 @@ # Template file for 'pex' pkgname=pex version=2.68.2 -revision=1 +revision=2 archs="~i686*" build_style=python3-pep517 hostmakedepends="python3-setuptools uv" From f932c93da0f7195eeaf43743e212454206af8b9d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:03 -0500 Subject: [PATCH 1386/1664] peru: rebuild for Python 3.14 --- srcpkgs/peru/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template index fdbc75600e9e1c..af393cc6c8cb61 100644 --- a/srcpkgs/peru/template +++ b/srcpkgs/peru/template @@ -1,7 +1,7 @@ # Template file for 'peru' pkgname=peru version=1.3.2 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling python3-wheel" depends="curl git mercurial python3 python3-docopt python3-yaml" From 57594ae5057d3d88b6d1fbcfac1610c60a572964 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:03 -0500 Subject: [PATCH 1387/1664] persepolis: rebuild for Python 3.14 --- srcpkgs/persepolis/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/persepolis/template b/srcpkgs/persepolis/template index cc7e1dd3a1fbd7..ebeea6c6827010 100644 --- a/srcpkgs/persepolis/template +++ b/srcpkgs/persepolis/template @@ -1,7 +1,7 @@ # Template file for 'persepolis' pkgname=persepolis version=5.2.0 -revision=3 +revision=4 build_style=meson build_helper=python3 hostmakedepends="python3-packaging-bootstrap" From 1bc2a70e9d9fa271389737907b97af3eaaefd918 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:03 -0500 Subject: [PATCH 1388/1664] pelican: rebuild for Python 3.14 --- srcpkgs/pelican/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pelican/template b/srcpkgs/pelican/template index a5ab267d809833..d3295e28d1ef55 100644 --- a/srcpkgs/pelican/template +++ b/srcpkgs/pelican/template @@ -1,7 +1,7 @@ # Template file for 'pelican' pkgname=pelican version=4.5.1 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-feedgenerator python3-Jinja2 python3-Pygments From a8037d9d6c2c33b9435f110a212f5c3bcdf7a821 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:03 -0500 Subject: [PATCH 1389/1664] peframe: rebuild for Python 3.14 --- srcpkgs/peframe/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template index 939f97ae5c0151..d81298104e2a82 100644 --- a/srcpkgs/peframe/template +++ b/srcpkgs/peframe/template @@ -1,7 +1,7 @@ # Template file for 'peframe' pkgname=peframe version=6.0.3 -revision=8 +revision=9 build_style="python3-module" hostmakedepends="python3-setuptools" depends="python3-pefile python3-magic python3-M2Crypto python3-virustotal-api From 0b75752eb6a7f1772283ca7a9cfb399ae81d7f67 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:03 -0500 Subject: [PATCH 1390/1664] pdfarranger: rebuild for Python 3.14 --- srcpkgs/pdfarranger/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pdfarranger/template b/srcpkgs/pdfarranger/template index ce02dd75889b95..1750dc13174d95 100644 --- a/srcpkgs/pdfarranger/template +++ b/srcpkgs/pdfarranger/template @@ -1,7 +1,7 @@ # Template file for 'pdfarranger' pkgname=pdfarranger version=1.12.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="intltool python3-distutils-extra python3-setuptools" depends="img2pdf poppler-glib python3-dateutil python3-gobject python3-pikepdf From 514c75f396dddbe84588501d78b67391dd3284c5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:03 -0500 Subject: [PATCH 1391/1664] pass-import: rebuild for Python 3.14 --- srcpkgs/pass-import/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pass-import/template b/srcpkgs/pass-import/template index 440bff073b93a0..69c47eaf725276 100644 --- a/srcpkgs/pass-import/template +++ b/srcpkgs/pass-import/template @@ -1,7 +1,7 @@ # Template file for 'pass-import' pkgname=pass-import version=3.5 -revision=2 +revision=3 build_style=python3-module # This test requires gnome-keyring which requires running dbus make_check_args="--deselect=tests/imports/test_parse.py From b5db325fa1544c9a545cf9826c4719d94942d9cb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:04 -0500 Subject: [PATCH 1392/1664] pass-git-helper: rebuild for Python 3.14 --- srcpkgs/pass-git-helper/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pass-git-helper/template b/srcpkgs/pass-git-helper/template index f4522653911a8e..2a761b1f6848b9 100644 --- a/srcpkgs/pass-git-helper/template +++ b/srcpkgs/pass-git-helper/template @@ -1,7 +1,7 @@ # Template file for 'pass-git-helper' pkgname=pass-git-helper version=1.2.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="pass python3-xdg" From b8f36345bf9fc6a1c25559cdab1cadbbb158adcb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:04 -0500 Subject: [PATCH 1393/1664] papis: rebuild for Python 3.14 --- srcpkgs/papis/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/papis/template b/srcpkgs/papis/template index 9dfe7124af4f73..9170c3763f05eb 100644 --- a/srcpkgs/papis/template +++ b/srcpkgs/papis/template @@ -1,7 +1,7 @@ # Template file for 'papis' pkgname=papis version=0.13 -revision=4 +revision=5 build_style=python3-module make_check_target="papis tests" hostmakedepends="python3-setuptools" From 002c570c45ec1a36b8ff6e7dd277841c6630cf93 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:04 -0500 Subject: [PATCH 1394/1664] pantalaimon: rebuild for Python 3.14 --- srcpkgs/pantalaimon/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pantalaimon/template b/srcpkgs/pantalaimon/template index ae854a4fbfaeda..ce8dc9ff1bf1b9 100644 --- a/srcpkgs/pantalaimon/template +++ b/srcpkgs/pantalaimon/template @@ -1,7 +1,7 @@ # Template file for 'pantalaimon' pkgname=pantalaimon version=0.10.5 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-attrs python3-aiohttp python3-appdirs python3-click From 0b78d814290bb0f9dcd190ca600133803cd29b9d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:04 -0500 Subject: [PATCH 1395/1664] pam_wrapper: rebuild for Python 3.14 --- srcpkgs/pam_wrapper/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pam_wrapper/template b/srcpkgs/pam_wrapper/template index 8706e31983c12d..3a79947bcb5e5e 100644 --- a/srcpkgs/pam_wrapper/template +++ b/srcpkgs/pam_wrapper/template @@ -1,7 +1,7 @@ # Template file for 'pam_wrapper' pkgname=pam_wrapper version=1.1.8 -revision=1 +revision=2 build_style=cmake configure_args="-DUNIT_TESTING=ON" hostmakedepends="python3-setuptools" From 3371e6acffbe0c0e272c3807da5fc14344e44b2a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:04 -0500 Subject: [PATCH 1396/1664] oversteer: rebuild for Python 3.14 --- srcpkgs/oversteer/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/oversteer/template b/srcpkgs/oversteer/template index 381fda3951fae8..6c31245912de32 100644 --- a/srcpkgs/oversteer/template +++ b/srcpkgs/oversteer/template @@ -1,7 +1,7 @@ # Template file for 'oversteer' pkgname=oversteer version=0.8.3 -revision=1 +revision=2 build_style=meson hostmakedepends="pkg-config gettext desktop-file-utils" makedepends="eudev-libudev-devel" From d70bdca5b892a69f62e4af15e27dce81e8c7b3b7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:04 -0500 Subject: [PATCH 1397/1664] othman: rebuild for Python 3.14 --- srcpkgs/othman/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/othman/template b/srcpkgs/othman/template index db187f184b4ec7..7ad9cfb54bf691 100644 --- a/srcpkgs/othman/template +++ b/srcpkgs/othman/template @@ -1,7 +1,7 @@ # Template file for 'othman' pkgname=othman version=0.6.0 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3 python3-setuptools ImageMagick sqlite intltool" depends="gtk+3 python3-gobject amiri-font" From 9095fd6553a2ed18e46d3cc52101dc1d189883d8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:04 -0500 Subject: [PATCH 1398/1664] osc: rebuild for Python 3.14 --- srcpkgs/osc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/osc/template b/srcpkgs/osc/template index 13189c272cb2fb..8d575169cb9ac5 100644 --- a/srcpkgs/osc/template +++ b/srcpkgs/osc/template @@ -1,7 +1,7 @@ # Template file for 'osc' pkgname=osc version=1.8.3 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools python3-cryptography python3-devel rpm-python3 python3-urllib3" From 1bd7f8cd3f26c848363ed9e19ed8f8913e40d5d0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:05 -0500 Subject: [PATCH 1399/1664] orca: rebuild for Python 3.14 --- srcpkgs/orca/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template index c67f39f50ffba7..97c4444e4424b0 100644 --- a/srcpkgs/orca/template +++ b/srcpkgs/orca/template @@ -1,7 +1,7 @@ # Template file for 'orca' pkgname=orca version=48.6 -revision=1 +revision=2 build_style=meson hostmakedepends="gettext itstool pkg-config gtk+3-devel python3-gobject-devel" makedepends="at-spi2-atk-devel liblouis-devel python3-gobject-devel" From 2d46ed290abcdf29990036d45bb113b20259baba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:05 -0500 Subject: [PATCH 1400/1664] openshot: rebuild for Python 3.14 --- srcpkgs/openshot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/openshot/template b/srcpkgs/openshot/template index c2da71db404731..86c8f43a4ae2db 100644 --- a/srcpkgs/openshot/template +++ b/srcpkgs/openshot/template @@ -1,7 +1,7 @@ # Template file for 'openshot' pkgname=openshot version=3.1.1 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3 python3-setuptools" makedepends="ffmpeg6-devel python3-PyQt5" From 8b7f5c2aa7abb2162ca63807479dee4ecc019d5d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:05 -0500 Subject: [PATCH 1401/1664] openrazer-meta: rebuild for Python 3.14 --- srcpkgs/openrazer-meta/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/openrazer-meta/template b/srcpkgs/openrazer-meta/template index 38d5bcdc99b75d..9fa1970c511edf 100644 --- a/srcpkgs/openrazer-meta/template +++ b/srcpkgs/openrazer-meta/template @@ -1,7 +1,7 @@ # Template file for 'openrazer-meta' pkgname=openrazer-meta version=3.10.3 -revision=1 +revision=2 build_style=gnu-makefile make_install_target="setup_dkms udev_install daemon_install xdg_install python_library_install" From ffdf77dcd1ec2f68b5b791efe696685b813f2201 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:05 -0500 Subject: [PATCH 1402/1664] opencamlib: rebuild for Python 3.14 --- srcpkgs/opencamlib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/opencamlib/template b/srcpkgs/opencamlib/template index 31e326dd360b52..b7ba6af80eccae 100644 --- a/srcpkgs/opencamlib/template +++ b/srcpkgs/opencamlib/template @@ -1,7 +1,7 @@ # Template file for 'opencamlib' pkgname=opencamlib version=2019.07 -revision=15 +revision=16 build_style=cmake configure_args="-DVERSION_STRING=${version}" makedepends="boost-devel-minimal libgomp-devel" From ea419fc63633528237fee1efce3f0fbe09064906 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:05 -0500 Subject: [PATCH 1403/1664] onboard: remove package This hasn't been updated since it was added in 2017, nothing requires it, and it fails to build with Python 3.14. --- .../patches/00-Fix-build-with-musl.patch | 67 ----- .../patches/disable-gcc-warnings.patch | 14 - .../onboard/patches/fix-brokenformat.patch | 15 -- srcpkgs/onboard/patches/python-3.12.patch | 245 ------------------ srcpkgs/onboard/patches/thread-state.patch | 37 --- srcpkgs/onboard/template | 18 -- srcpkgs/removed-packages/template | 1 + 7 files changed, 1 insertion(+), 396 deletions(-) delete mode 100644 srcpkgs/onboard/patches/00-Fix-build-with-musl.patch delete mode 100644 srcpkgs/onboard/patches/disable-gcc-warnings.patch delete mode 100644 srcpkgs/onboard/patches/fix-brokenformat.patch delete mode 100644 srcpkgs/onboard/patches/python-3.12.patch delete mode 100644 srcpkgs/onboard/patches/thread-state.patch delete mode 100644 srcpkgs/onboard/template diff --git a/srcpkgs/onboard/patches/00-Fix-build-with-musl.patch b/srcpkgs/onboard/patches/00-Fix-build-with-musl.patch deleted file mode 100644 index fda37895c962ff..00000000000000 --- a/srcpkgs/onboard/patches/00-Fix-build-with-musl.patch +++ /dev/null @@ -1,67 +0,0 @@ -From 1c95f64aa342147387ce4b1b7269a5c8b34bd898 Mon Sep 17 00:00:00 2001 -From: Khem Raj -Date: Thu, 13 Jul 2017 09:01:04 -0700 -Subject: [PATCH] pypredict/lm: Define error API if platform does not have it - -error() API is not implemented across all libcs on linux -e.g. musl does not provide it. - -Signed-off-by: Khem Raj ---- - Onboard/pypredict/lm/lm.cpp | 1 - - Onboard/pypredict/lm/lm.h | 13 +++++++++++++ - Onboard/pypredict/lm/lm_dynamic.cpp | 2 -- - 3 files changed, 13 insertions(+), 3 deletions(-) - -diff --git a/Onboard/pypredict/lm/lm.cpp b/Onboard/pypredict/lm/lm.cpp -index 2e64296..37ae241 100644 ---- a/Onboard/pypredict/lm/lm.cpp -+++ b/Onboard/pypredict/lm/lm.cpp -@@ -19,7 +19,6 @@ - - #include - #include --#include - #include - #include - #include -diff --git a/Onboard/pypredict/lm/lm.h b/Onboard/pypredict/lm/lm.h -index ed4164a..b8b63ee 100644 ---- a/Onboard/pypredict/lm/lm.h -+++ b/Onboard/pypredict/lm/lm.h -@@ -32,6 +32,19 @@ - #include - #include - -+#if defined(HAVE_ERROR_H) -+#include -+#else -+#include -+#define _onboard_error(S, E, F, ...) do { \ -+ if (E) \ -+ err(S, F ": %s", ##__VA_ARGS__, strerror(E)); \ -+ else \ -+ err(S, F, ##__VA_ARGS__); \ -+} while(0) -+ -+#define error _onboard_error -+#endif - - // break into debugger - // step twice to come back out of the raise() call into known code -diff --git a/Onboard/pypredict/lm/lm_dynamic.cpp b/Onboard/pypredict/lm/lm_dynamic.cpp -index 7c62824..e7c7f40 100644 ---- a/Onboard/pypredict/lm/lm_dynamic.cpp -+++ b/Onboard/pypredict/lm/lm_dynamic.cpp -@@ -17,8 +17,6 @@ - * along with this program. If not, see . - */ - --#include -- - #include "lm_dynamic.h" - - using namespace std; --- -2.13.2 - diff --git a/srcpkgs/onboard/patches/disable-gcc-warnings.patch b/srcpkgs/onboard/patches/disable-gcc-warnings.patch deleted file mode 100644 index 57bda368386af8..00000000000000 --- a/srcpkgs/onboard/patches/disable-gcc-warnings.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- ./setup.py.orig 2023-09-29 13:54:18.617944942 -0400 -+++ ./setup.py 2023-09-29 13:54:29.783017589 -0400 -@@ -227,11 +227,6 @@ - sources = sources, - depends = depends, - define_macros = defines, -- extra_compile_args = [ -- "-Wsign-compare", -- "-Wdeclaration-after-statement", -- "-Werror=declaration-after-statement"], -- - **pkgconfig('gdk-3.0', 'x11', 'xi', 'xtst', 'xkbfile', - 'dconf', 'libcanberra', 'hunspell', - 'libudev') diff --git a/srcpkgs/onboard/patches/fix-brokenformat.patch b/srcpkgs/onboard/patches/fix-brokenformat.patch deleted file mode 100644 index e5d200208a9394..00000000000000 --- a/srcpkgs/onboard/patches/fix-brokenformat.patch +++ /dev/null @@ -1,15 +0,0 @@ -Fix for https://bugs.launchpad.net/onboard/+bug/1948723 - - --- ---- a/Onboard/LayoutLoaderSVG.py -+++ b/Onboard/LayoutLoaderSVG.py -@@ -445,7 +445,7 @@ - except KeyError as ex: - (strerror) = ex - raise Exceptions.LayoutFileError("Unrecognized modifier %s in" \ -- "definition of %s" (strerror, full_id)) -+ "definition of %s" % (strerror, full_id)) - - value = attributes.get("action") - if value: diff --git a/srcpkgs/onboard/patches/python-3.12.patch b/srcpkgs/onboard/patches/python-3.12.patch deleted file mode 100644 index 31f3ae91994e5a..00000000000000 --- a/srcpkgs/onboard/patches/python-3.12.patch +++ /dev/null @@ -1,245 +0,0 @@ ---- a/Onboard/Appearance.py -+++ b/Onboard/Appearance.py -@@ -921,7 +921,7 @@ class ColorScheme(object): - ColorScheme._parse_dom_node_item(node, item) - return item - -- _key_ids_pattern = re.compile('[\w-]+(?:[.][\w-]+)?', re.UNICODE) -+ _key_ids_pattern = re.compile(r'[\w-]+(?:[.][\w-]+)?', re.UNICODE) - - @staticmethod - def _parse_key_group(node, used_keys): -@@ -1063,7 +1063,7 @@ class ColorScheme(object): - - # read key ids - text = "".join([n.data for n in group.childNodes]) -- key_ids = [x for x in re.findall('\w+(?:[.][\w-]+)?', text) if x] -+ key_ids = [x for x in re.findall(r'\w+(?:[.][\w-]+)?', text) if x] - - # check for duplicate key definitions - for key_id in key_ids: ---- a/Onboard/LayoutLoaderSVG.py -+++ b/Onboard/LayoutLoaderSVG.py -@@ -95,7 +95,7 @@ class LayoutLoaderSVG: - self._layout_filename = "" - self._color_scheme = None - self._root_layout_dir = "" # path to svg files -- self._layout_regex = re.compile("([^\(]+) (?: \( ([^\)]*) \) )?", -+ self._layout_regex = re.compile(r"([^\(]+) (?: \( ([^\)]*) \) )?", - re.VERBOSE) - - def load(self, vk, layout_filename, color_scheme): ---- a/Onboard/SpellChecker.py -+++ b/Onboard/SpellChecker.py -@@ -321,7 +321,7 @@ class hunspell(SCBackend): - def is_running(self): - return not self._osk_hunspell is None - -- SPLITWORDS = re.compile("[^-_\s]+", re.UNICODE|re.DOTALL) -+ SPLITWORDS = re.compile(r"[^-_\s]+", re.UNICODE|re.DOTALL) - - def query(self, text): - """ ---- a/Onboard/TextDomain.py -+++ b/Onboard/TextDomain.py -@@ -141,7 +141,7 @@ class TextDomain: - - # Split at whitespace to catch whole URLs/file names and - # keep separators. -- strings = re.split('(\s+)', context) -+ strings = re.split(r'(\s+)', context) - if strings: - string = strings[-1] - if self._url_parser.is_maybe_url(string): -@@ -158,7 +158,7 @@ class TextDomain: - - - def _search_valid_file_name(self, strings): -- """ -+ r""" - Search for a valid filename backwards across separators. - - Doctests: -@@ -174,17 +174,17 @@ class TextDomain: - >>> with open(fn2, mode="w") as f: n = f.write("") - - # simple file in dir with spaces must return as filename -- >>> strings = re.split('(\s+)', fn1) -+ >>> strings = re.split(r'(\s+)', fn1) - >>> "/test onboard" in d._search_valid_file_name(strings) - True - - # file with spaces in dir with spaces must return as filename -- >>> strings = re.split('(\s+)', fn2) -+ >>> strings = re.split(r'(\s+)', fn2) - >>> "/test onboard" in d._search_valid_file_name(strings) - True - - # random string after a valid file must not be confused with a filename -- >>> strings = re.split('(\s+)', fn2 + " no-file") -+ >>> strings = re.split(r'(\s+)', fn2 + " no-file") - >>> d._search_valid_file_name(strings) is None - True - """ -@@ -288,7 +288,7 @@ class TextDomain: - def handle_key_press(self, keycode, mod_mask): - return True, None # entering_text, end_of_editing - -- _growth_sections_pattern = re.compile("[^\s?#@]+", re.DOTALL) -+ _growth_sections_pattern = re.compile(r"[^\s?#@]+", re.DOTALL) - - def _split_growth_sections(self, text): - """ -@@ -444,11 +444,11 @@ class DomainTerminal(TextDomain): - ( - "^gdb$ ", - "^>>> ", # python -- "^In \[[0-9]*\]: ", # ipython -+ r"^In \[[0-9]*\]: ", # ipython - "^:", # vi command mode - "^/", # vi search -- "^\?", # vi reverse search -- "\$ ", # generic prompt -+ r"^\?", # vi reverse search -+ r"\$ ", # generic prompt - "# ", # root prompt - "^.*?@.*?/.*?> " # fish - ) -@@ -456,7 +456,7 @@ class DomainTerminal(TextDomain): - - _prompt_blacklist_patterns = tuple(re.compile(p, re.UNICODE) for p in - ( -- "^\(.*\)`.*': ", # bash incremental search -+ r"^\(.*\)`.*': ", # bash incremental search - ) - ) - -@@ -736,7 +736,7 @@ class PartialURLParser: - _protocols = ["mailto", "apt"] - _all_schemes = _schemes + _protocols - -- _url_pattern = re.compile("([\w-]+)|(\W+)", re.UNICODE) -+ _url_pattern = re.compile(r"([\w-]+)|(\W+)", re.UNICODE) - - def iter_url(self, url): - return self._url_pattern.finditer(url) ---- a/Onboard/WordSuggestions.py -+++ b/Onboard/WordSuggestions.py -@@ -1250,8 +1250,8 @@ class WordSuggestions: - return word_span - return None - -- _section_begin_pattern = re.compile("\S*\s*$") -- _section_end_pattern = re.compile("\S*(?=\s*)") -+ _section_begin_pattern = re.compile(r"\S*\s*$") -+ _section_end_pattern = re.compile(r"\S*(?=\s*)") - - def _get_section_before_span(self, insertion_span): - """ ---- a/Onboard/pypredict/lm_wrapper.py -+++ b/Onboard/pypredict/lm_wrapper.py -@@ -299,7 +299,7 @@ def split_tokens_at(tokens, split_indice - - - SENTENCE_PATTERN = re.compile( \ -- """ .*? -+ r""" .*? - (?: - (?:[.;:!?](?:(?=[\s]) | \")) # punctuation - | (?:\\s*\\n\\s*)+(?=[\\n]) # multiples newlines -@@ -365,7 +365,7 @@ def split_sentences(text, disambiguate=F - return sentences, spans - - --tokenize_pattern = """ -+tokenize_pattern = r""" - ( # - (?:^|(?<=\s)) - \S*(\S)\\2{{3,}}\S* # char repeated more than 3 times -@@ -464,7 +464,7 @@ def tokenize_context(text): - The result is ready for use in predict(). - """ - tokens, spans = tokenize_text(text, is_context = True) -- if not re.match(""" -+ if not re.match(r""" - ^$ # empty string? - | .*[-'´΄\w]$ # word at the end? - | (?:^|.*\s)[|]=?$ # recognized operator? -@@ -501,7 +501,7 @@ def read_order(filename, encoding=None): - continue - - if data: # data section? -- result = re.search("ngram (\d+)=\d+", line) -+ result = re.search(r"ngram (\d+)=\d+", line) - if result: - if order is None: - order = 0 -@@ -621,7 +621,7 @@ def simulate_typing(query_model, learn_m - context, spans = tokenize_context(". " + inputline) # simulate sentence begin - prefix = context[len(context)-1] if context else "" - prefix_to_end = sentence[len(inputline)-len(prefix):] -- target_word = re.search("^([\w]|[-'])*", prefix_to_end, re.UNICODE).group() -+ target_word = re.search(r"^([\w]|[-'])*", prefix_to_end, re.UNICODE).group() - choices = query_model.predict(context, limit) - - if 0: # step mode for debugging ---- a/Onboard/utils.py -+++ b/Onboard/utils.py -@@ -148,7 +148,7 @@ def get_keysym_from_name(name): - return keysyms[name] - - def parse_key_combination(combo, avaliable_key_ids = None): -- """ -+ r""" - Parses a key combination into a list of modifier masks and key_ids. - The key-id part of the combo may contain a regex pattern. - -@@ -169,7 +169,7 @@ def parse_key_combination(combo, avaliab - [('TAB', 5)] - - # regex -- >>> parse_key_combination(["F\d+"], ["TAB", "F1", "F2", "F3", "F9"]) -+ >>> parse_key_combination([r"F\d+"], ["TAB", "F1", "F2", "F3", "F9"]) - [('F1', 0), ('F2', 0), ('F3', 0), ('F9', 0)] - """ - modifiers = combo[:-1] -@@ -217,8 +217,8 @@ def run_script(script): - def toprettyxml(domdoc): - ugly_xml = domdoc.toprettyxml(indent=' ') - # Join lines with text elements with their tag lines -- pattern = re.compile('>\n\s+([^<>\s].*?)\n\s+\g<1>\n\s+([^<>\s].*?)\n\s+\g<1> ---- a/setup.py -+++ b/setup.py -@@ -115,7 +115,7 @@ def get_pkg_version(package): - .format(repr(package), status), file=sys.stderr) - sys.exit(2) - -- version = re.search('(?:(?:\d+)\.)+\d+', output).group() -+ version = re.search(r'(?:(?:\d+)\.)+\d+', output).group() - components = version.split(".") - major, minor = int(components[0]), int(components[1]) - revision = int(components[2]) if len(components) >= 3 else 0 diff --git a/srcpkgs/onboard/patches/thread-state.patch b/srcpkgs/onboard/patches/thread-state.patch deleted file mode 100644 index 7a59d251c917e4..00000000000000 --- a/srcpkgs/onboard/patches/thread-state.patch +++ /dev/null @@ -1,37 +0,0 @@ ---- a/Onboard/osk/osk_devices.c -+++ b/Onboard/osk/osk_devices.c -@@ -97,13 +97,15 @@ osk_device_event_dealloc (OskDeviceEvent - static OskDeviceEvent* - new_device_event (void) - { -- OskDeviceEvent *ev = PyObject_New(OskDeviceEvent, &osk_device_event_type); -+ OskDeviceEvent *ev; -+ PyGILState_STATE gstate = PyGILState_Ensure(); -+ ev = PyObject_New(OskDeviceEvent, &osk_device_event_type); - if (ev) - { - osk_device_event_type.tp_init((PyObject*) ev, NULL, NULL); -- return ev; - } -- return NULL; -+ PyGILState_Release(gstate); -+ return ev; - } - - static PyObject * -@@ -334,6 +336,7 @@ osk_devices_dealloc (OskDevices *dev) - static void - queue_event (OskDevices* dev, OskDeviceEvent* event, Bool discard_pending) - { -+ PyGILState_STATE state = PyGILState_Ensure (); - GQueue* queue = dev->event_queue; - if (queue) - { -@@ -364,6 +367,7 @@ queue_event (OskDevices* dev, OskDeviceE - Py_INCREF(event); - g_queue_push_head(queue, event); - } -+ PyGILState_Release (state); - } - - static gboolean idle_process_event_queue (OskDevices* dev) diff --git a/srcpkgs/onboard/template b/srcpkgs/onboard/template deleted file mode 100644 index f69ce6749959dc..00000000000000 --- a/srcpkgs/onboard/template +++ /dev/null @@ -1,18 +0,0 @@ -# Template file for 'onboard' -pkgname=onboard -version=1.4.1 -revision=14 -build_style=python3-module -hostmakedepends="intltool pkg-config python3-distutils-extra python3-setuptools" -makedepends="dconf-devel eudev-libudev-devel gtk+3-devel hunspell-devel - libcanberra-devel libX11-devel libXi-devel libXtst-devel libxkbfile-devel - python3-devel" -depends="iso-codes python3-cairo python3-gobject python3-dbus" -short_desc="On-screen keyboard useful on tablet PCs or for mobility impaired users" -maintainer="Francesco Circhetta " -license="GPL-3.0-or-later" -homepage="https://launchpad.net/onboard" -distfiles="https://launchpad.net/${pkgname}/${version%.*}/${version}/+download/${pkgname}-${version}.tar.gz" -checksum=01cae1ac5b1ef1ab985bd2d2d79ded6fc99ee04b1535cc1bb191e43a231a3865 -# Tries to run onboard in tests, using xautomation(7) -make_check=no diff --git a/srcpkgs/removed-packages/template b/srcpkgs/removed-packages/template index 5b408513daaed9..d701f4f2756a4a 100644 --- a/srcpkgs/removed-packages/template +++ b/srcpkgs/removed-packages/template @@ -631,6 +631,7 @@ replaces=" oce-devel<=0.18.3_1 oce<=0.18.3_1 olive<=0.1.2_2 + onboard<=1.4.1_14 onionshare<=2.2_5 openbazaar<=1.1.13_2 opencl-clhpp<=2.0.15_1 From 93b41ba479aee7ba8d8327cc8364fe3981fd2a2d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:05 -0500 Subject: [PATCH 1404/1664] offpunk: rebuild for Python 3.14 --- srcpkgs/offpunk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/offpunk/template b/srcpkgs/offpunk/template index e3f4f5245b5471..5685fd241d6a9c 100644 --- a/srcpkgs/offpunk/template +++ b/srcpkgs/offpunk/template @@ -1,7 +1,7 @@ # Template file for 'offpunk' pkgname=offpunk version=2.7 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling" depends="chafa file less python3-BeautifulSoup4 python3-chardet From a4c0991ebe2132adc4daeaa91c7791c1bb30f0d5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:05 -0500 Subject: [PATCH 1405/1664] offlineimap: rebuild for Python 3.14 --- srcpkgs/offlineimap/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/offlineimap/template b/srcpkgs/offlineimap/template index 5104288d62e7b3..6a7df39215a7b7 100644 --- a/srcpkgs/offlineimap/template +++ b/srcpkgs/offlineimap/template @@ -1,7 +1,7 @@ # Template file for 'offlineimap' pkgname=offlineimap version=8.0.0 -revision=5 +revision=6 build_style=python3-module make_check_args="--ignore test/tests/test_00_imaputil.py --ignore test/tests/test_01_basic.py --ignore test/tests/test_02_MappedIMAP.py" From a63f6bbd239df9496a42c1d9beae2013b67bddbd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:06 -0500 Subject: [PATCH 1406/1664] obs: rebuild for Python 3.14 --- srcpkgs/obs/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/obs/template b/srcpkgs/obs/template index 0786700a51b4b7..8ea7dc238c7d98 100644 --- a/srcpkgs/obs/template +++ b/srcpkgs/obs/template @@ -1,7 +1,7 @@ # Template file for 'obs' pkgname=obs version=32.0.2 -revision=1 +revision=2 archs="i686* x86_64* ppc64le* aarch64* riscv64*" build_style=cmake configure_args="-DOBS_VERSION_OVERRIDE=${version} -DENABLE_JACK=ON From 5a8f24379fd12d5c8f2283a729117e336751879d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:06 -0500 Subject: [PATCH 1407/1664] nyx: rebuild for Python 3.14 --- srcpkgs/nyx/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template index 80a0cf48f0e9cb..9f5c09b89c5fdc 100644 --- a/srcpkgs/nyx/template +++ b/srcpkgs/nyx/template @@ -1,7 +1,7 @@ # Template file for 'nyx' pkgname=nyx version=2.1.0 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-stem tor" From c6b1a57c7df344241334bc57fb47112b3900c36a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:06 -0500 Subject: [PATCH 1408/1664] nmap: rebuild for Python 3.14 --- srcpkgs/nmap/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nmap/template b/srcpkgs/nmap/template index 64dc815b59eb50..48676795370616 100644 --- a/srcpkgs/nmap/template +++ b/srcpkgs/nmap/template @@ -1,7 +1,7 @@ # Template file for 'nmap' pkgname=nmap version=7.98 -revision=1 +revision=2 build_style=gnu-configure configure_args="--without-ndiff --with-openssl --with-zenmap $(vopt_with lua liblua)" hostmakedepends="python3-setuptools automake python3-build python3-pip pkg-config python3-cairo python3-gobject" From 1952bc2b9dba3dcf81e0cc1af61b988614917a7f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:06 -0500 Subject: [PATCH 1409/1664] nitroshare: rebuild for Python 3.14 --- srcpkgs/nitroshare/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nitroshare/template b/srcpkgs/nitroshare/template index d6023b20df3206..9ee998c08d7f2c 100644 --- a/srcpkgs/nitroshare/template +++ b/srcpkgs/nitroshare/template @@ -1,7 +1,7 @@ # Template file for 'nitroshare' pkgname=nitroshare version=0.3.4 -revision=3 +revision=4 build_style=cmake pycompile_dirs="usr/share/nautilus-python/extensions usr/share/nemo-python/extensions From 621ea8e25d3e8bf50b4924f950107fce85095422 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:06 -0500 Subject: [PATCH 1410/1664] nicotine+: rebuild for Python 3.14 --- srcpkgs/nicotine+/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nicotine+/template b/srcpkgs/nicotine+/template index 741c4beea3608c..24830b5a341391 100644 --- a/srcpkgs/nicotine+/template +++ b/srcpkgs/nicotine+/template @@ -1,7 +1,7 @@ # Template file for 'nicotine+' pkgname=nicotine+ version=3.3.10 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools gettext" depends="gtk4 python3-gobject" From 6be8960f8a55150291617b4028353323364ad562 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:06 -0500 Subject: [PATCH 1411/1664] newt: rebuild for Python 3.14 --- srcpkgs/newt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/newt/template b/srcpkgs/newt/template index 46708c49354288..c834f990210dbe 100644 --- a/srcpkgs/newt/template +++ b/srcpkgs/newt/template @@ -1,7 +1,7 @@ # Template file for 'newt' pkgname=newt version=0.52.24 -revision=2 +revision=3 build_style=gnu-configure hostmakedepends="python3-devel python3-packaging-bootstrap" makedepends="slang-devel popt-devel python3-devel" From 249828f17baea3214c6a16795387e3797f042a90 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:07 -0500 Subject: [PATCH 1412/1664] network-ups-tools: rebuild for Python 3.14 --- srcpkgs/network-ups-tools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/network-ups-tools/template b/srcpkgs/network-ups-tools/template index 8e2a68e0bd439d..ac50f07485542d 100644 --- a/srcpkgs/network-ups-tools/template +++ b/srcpkgs/network-ups-tools/template @@ -1,7 +1,7 @@ # Template file for 'network-ups-tools' pkgname=network-ups-tools version=2.8.3 -revision=1 +revision=2 build_style=gnu-configure configure_args=" --sysconfdir=/etc/ups --with-doc=man --disable-static From b89f6fff4988df51ad9d97732d451f609cd3887d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:07 -0500 Subject: [PATCH 1413/1664] neovim-remote: rebuild for Python 3.14 --- srcpkgs/neovim-remote/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/neovim-remote/template b/srcpkgs/neovim-remote/template index 2437e9f88f20c9..c939093f135db8 100644 --- a/srcpkgs/neovim-remote/template +++ b/srcpkgs/neovim-remote/template @@ -1,7 +1,7 @@ # Template file for 'neovim-remote' pkgname=neovim-remote version=2.4.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-neovim python3-psutil" From 4b6af8847a08f4b7c95f00855cb31573850d6467 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:07 -0500 Subject: [PATCH 1414/1664] nemo-terminal: rebuild for Python 3.14 --- srcpkgs/nemo-terminal/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nemo-terminal/template b/srcpkgs/nemo-terminal/template index b033c611b05dba..f5622f5ddd77f9 100644 --- a/srcpkgs/nemo-terminal/template +++ b/srcpkgs/nemo-terminal/template @@ -1,7 +1,7 @@ # Template file for 'nemo-terminal' pkgname=nemo-terminal version=6.4.0 -revision=2 +revision=3 build_wrksrc=nemo-terminal build_style=python3-module hostmakedepends="pkg-config python3-setuptools" From 67880ea59fb8331b4d2a5c7095aefc4950e92826 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:07 -0500 Subject: [PATCH 1415/1664] nemo-emblems: rebuild for Python 3.14 --- srcpkgs/nemo-emblems/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nemo-emblems/template b/srcpkgs/nemo-emblems/template index 8eb1024fce60b8..23d92f56cdb833 100644 --- a/srcpkgs/nemo-emblems/template +++ b/srcpkgs/nemo-emblems/template @@ -1,7 +1,7 @@ # Template file for 'nemo-emblems' pkgname=nemo-emblems version=6.4.0 -revision=2 +revision=3 build_wrksrc=nemo-emblems build_style=python3-module hostmakedepends="pkg-config python3-setuptools" From 5c64b87e9a7a10504a63dcb05672f10829174097 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:07 -0500 Subject: [PATCH 1416/1664] nemo-compare: rebuild for Python 3.14 --- srcpkgs/nemo-compare/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nemo-compare/template b/srcpkgs/nemo-compare/template index 2a8dad933a0100..5f9c3f92f7c60f 100644 --- a/srcpkgs/nemo-compare/template +++ b/srcpkgs/nemo-compare/template @@ -1,7 +1,7 @@ # Template file for 'nemo-compare' pkgname=nemo-compare version=6.4.0 -revision=2 +revision=3 build_wrksrc=nemo-compare build_style=python3-module hostmakedepends="pkg-config python3-setuptools" From c4b1272960c35a82b4020c72ab6a8d81c24a686a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:07 -0500 Subject: [PATCH 1417/1664] nemo-audio-tab: rebuild for Python 3.14 --- srcpkgs/nemo-audio-tab/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nemo-audio-tab/template b/srcpkgs/nemo-audio-tab/template index 5529abd02767e8..78492402a09e7d 100644 --- a/srcpkgs/nemo-audio-tab/template +++ b/srcpkgs/nemo-audio-tab/template @@ -1,7 +1,7 @@ # Template file for 'nemo-audio-tab' pkgname=nemo-audio-tab version=6.4.0 -revision=2 +revision=3 build_wrksrc=nemo-audio-tab build_style=python3-module hostmakedepends="pkg-config python3-setuptools" From 3cee2c8ca9707f8a1dd6789d31261ba022183fcc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:07 -0500 Subject: [PATCH 1418/1664] nautilus-python: rebuild for Python 3.14 --- srcpkgs/nautilus-python/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nautilus-python/template b/srcpkgs/nautilus-python/template index 79e98612f8bfb3..6ac3b34ba56892 100644 --- a/srcpkgs/nautilus-python/template +++ b/srcpkgs/nautilus-python/template @@ -1,7 +1,7 @@ # Template file for 'nautilus-python' pkgname=nautilus-python version=4.0.1 -revision=2 +revision=3 build_style=meson configure_args="$(vopt_feature gtk_doc docs)" hostmakedepends="pkg-config $(vopt_if gtk_doc gtk-doc)" From 6945db36cf2d2fbc0cd6c12879d19fbb3428be76 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:08 -0500 Subject: [PATCH 1419/1664] nanovna-saver: rebuild for Python 3.14 --- srcpkgs/nanovna-saver/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nanovna-saver/template b/srcpkgs/nanovna-saver/template index c48181b1117288..5ee4b2badd918e 100644 --- a/srcpkgs/nanovna-saver/template +++ b/srcpkgs/nanovna-saver/template @@ -1,7 +1,7 @@ # Template file for 'nanovna-saver' pkgname=nanovna-saver version=0.7.3 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-setuptools_scm qt6-base python3-pyside6-gui python3-pyside6-widgets" From 6126b40df2761191bd45cb05d8c5b8eef02f6ad0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:08 -0500 Subject: [PATCH 1420/1664] nagstamon: rebuild for Python 3.14 --- srcpkgs/nagstamon/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template index 35db1d45e29123..08831c5336a86e 100644 --- a/srcpkgs/nagstamon/template +++ b/srcpkgs/nagstamon/template @@ -1,7 +1,7 @@ # Template file for 'nagstamon' pkgname=nagstamon version=3.12.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools python3-keyring python3-psutil" depends="python3-BeautifulSoup4 python3-dbus python3-keyring python3-lxml From 37e4ef519ffc84acab956600f8dd81b4c3a343b0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:08 -0500 Subject: [PATCH 1421/1664] mypaint: rebuild for Python 3.14 --- srcpkgs/mypaint/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mypaint/template b/srcpkgs/mypaint/template index 599c3d7d70a2d7..fa5ba58c303854 100644 --- a/srcpkgs/mypaint/template +++ b/srcpkgs/mypaint/template @@ -1,7 +1,7 @@ # Template file for 'mypaint' pkgname=mypaint version=2.0.1 -revision=9 +revision=10 build_style=python3-module pycompile_dirs="/usr/share/mypaint" hostmakedepends="swig pkg-config gettext python3-setuptools python3-numpy python3" From 0b3b466a9e173967b254746d151c4c6ef7932aab Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:08 -0500 Subject: [PATCH 1422/1664] mymcplus: rebuild for Python 3.14 --- srcpkgs/mymcplus/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template index b211f5e448b47a..46a07a899f274a 100644 --- a/srcpkgs/mymcplus/template +++ b/srcpkgs/mymcplus/template @@ -1,7 +1,7 @@ # Template file for 'mymcplus' pkgname=mymcplus version=3.0.5 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="wxPython python3-PyOpenGL" From af388f8cd472cda2f58341b884039614b19722ae Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:08 -0500 Subject: [PATCH 1423/1664] muse: rebuild for Python 3.14 --- srcpkgs/muse/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/muse/template b/srcpkgs/muse/template index 11ce222044d339..a46c09d9a3b32f 100644 --- a/srcpkgs/muse/template +++ b/srcpkgs/muse/template @@ -1,7 +1,7 @@ # Template file for 'muse' pkgname=muse version=4.2.1 -revision=1 +revision=2 build_wrksrc=src build_style=cmake build_helper="qmake qemu" From 395960227ee2d5a883126d7b60e902b36886f559 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:08 -0500 Subject: [PATCH 1424/1664] multibootusb: rebuild for Python 3.14 --- srcpkgs/multibootusb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template index a583ab5b7981fb..41118abdb1991b 100644 --- a/srcpkgs/multibootusb/template +++ b/srcpkgs/multibootusb/template @@ -1,7 +1,7 @@ # Template file for 'multibootusb' pkgname=multibootusb version=9.2.0 -revision=8 +revision=9 build_style=python3-module pycompile_module="scripts" hostmakedepends="python3-setuptools" From 1ed65b728626401dc6766d5dac073d09e6072af8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:08 -0500 Subject: [PATCH 1425/1664] mugshot: rebuild for Python 3.14 --- srcpkgs/mugshot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template index 10a66b1f77a18c..ca9b6b6a059394 100644 --- a/srcpkgs/mugshot/template +++ b/srcpkgs/mugshot/template @@ -1,7 +1,7 @@ # Template file for 'mugshot' pkgname=mugshot version=0.4.3 -revision=5 +revision=6 build_style=python3-module hostmakedepends="intltool python3-distutils-extra" makedepends="python3-pexpect python3-gobject" From c96eef4818d2e9aa4bf7cbac87a7061e7eb50fb0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:09 -0500 Subject: [PATCH 1426/1664] mpd-sima: rebuild for Python 3.14 --- srcpkgs/mpd-sima/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mpd-sima/template b/srcpkgs/mpd-sima/template index bfaa4bd5034035..3e3679c1113872 100644 --- a/srcpkgs/mpd-sima/template +++ b/srcpkgs/mpd-sima/template @@ -1,7 +1,7 @@ # Template file for 'mpd-sima' pkgname=mpd-sima version=0.15.1 -revision=7 +revision=8 build_style=python3-module pycompile_module="sima" hostmakedepends="python3-setuptools" From 50288c1b057cc77fb178dfeb5b7b520ba3552f7d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:09 -0500 Subject: [PATCH 1427/1664] mozo: rebuild for Python 3.14 --- srcpkgs/mozo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template index 2f8f8144b147e7..6251f68692e0be 100644 --- a/srcpkgs/mozo/template +++ b/srcpkgs/mozo/template @@ -1,7 +1,7 @@ # Template file for 'mozo' pkgname=mozo version=1.28.0 -revision=2 +revision=3 build_style=meson hostmakedepends="pkg-config gettext" makedepends="glib-devel mate-menus-devel python3-gobject-devel" From b299565c19b0cf08a3d894339d97b18b5f0906c0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:09 -0500 Subject: [PATCH 1428/1664] mopidy-podcast: rebuild for Python 3.14 --- srcpkgs/mopidy-podcast/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mopidy-podcast/template b/srcpkgs/mopidy-podcast/template index b33721625ce695..2e7a9ce75150e5 100644 --- a/srcpkgs/mopidy-podcast/template +++ b/srcpkgs/mopidy-podcast/template @@ -1,7 +1,7 @@ # Template file for 'mopidy-podcast' pkgname=mopidy-podcast version=3.0.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="mopidy python3-cachetools python3-pykka python3-setuptools python3-uritools" From 0140dc9021b5c0b3d788564ad0afaf57f695b515 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:09 -0500 Subject: [PATCH 1429/1664] mopidy-multisonic: rebuild for Python 3.14 --- srcpkgs/mopidy-multisonic/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mopidy-multisonic/template b/srcpkgs/mopidy-multisonic/template index b2c9986e2f704e..5b525d04c58c7d 100644 --- a/srcpkgs/mopidy-multisonic/template +++ b/srcpkgs/mopidy-multisonic/template @@ -1,7 +1,7 @@ # Template file for 'mopidy-multisonic' pkgname=mopidy-multisonic version=0.4.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="mopidy" From 4ee4362bd49ed942deac302b943fc2f772f30ab9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:09 -0500 Subject: [PATCH 1430/1664] mopidy-mpd: rebuild for Python 3.14 --- srcpkgs/mopidy-mpd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mopidy-mpd/template b/srcpkgs/mopidy-mpd/template index 3397fb486539f6..d260e59470a510 100644 --- a/srcpkgs/mopidy-mpd/template +++ b/srcpkgs/mopidy-mpd/template @@ -1,7 +1,7 @@ # Template file for 'mopidy-mpd' pkgname=mopidy-mpd version=3.0.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="mopidy python3-pykka python3-setuptools" From a387150ee761a74c3b6d9be61f18baf7bd8723f2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:09 -0500 Subject: [PATCH 1431/1664] mopidy-local: rebuild for Python 3.14 --- srcpkgs/mopidy-local/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mopidy-local/template b/srcpkgs/mopidy-local/template index 10e3949d12504f..f0a4451faf7860 100644 --- a/srcpkgs/mopidy-local/template +++ b/srcpkgs/mopidy-local/template @@ -1,7 +1,7 @@ # Template file for 'mopidy-local' pkgname=mopidy-local version=3.1.1 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="mopidy python3-pykka python3-setuptools python3-uritools" From 6b4b4c01c48fc9a261e3964e21d294cf22ef4458 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:09 -0500 Subject: [PATCH 1432/1664] mod_wsgi: update to 5.0.2. --- srcpkgs/mod_wsgi/patches/cross-python.patch | 7 +++---- srcpkgs/mod_wsgi/template | 6 +++--- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/srcpkgs/mod_wsgi/patches/cross-python.patch b/srcpkgs/mod_wsgi/patches/cross-python.patch index 8157e1046de354..efe0c1467a8b01 100644 --- a/srcpkgs/mod_wsgi/patches/cross-python.patch +++ b/srcpkgs/mod_wsgi/patches/cross-python.patch @@ -40,7 +40,7 @@ if test "${ENABLE_EMBEDDED}" != "yes"; then CPPFLAGS3="-DMOD_WSGI_DISABLE_EMBEDDED" -@@ -137,70 +135,7 @@ +@@ -137,69 +135,7 @@ AC_SUBST(CPPFLAGS) @@ -48,9 +48,8 @@ - import sysconfig; \ - stdout.write(sysconfig.get_config_var("LIBDIR"))'` -PYTHONCFGDIR=`${PYTHON} -c 'from sys import stdout; \ -- import distutils.sysconfig; \ -- stdout.write(distutils.sysconfig.get_python_lib(plat_specific=1, \ -- standard_lib=1) +"/config")'` +- import sysconfig; \ +- stdout.write(sysconfig.get_path("platstdlib") +"/config")'` -PYTHONFRAMEWORKDIR=`${PYTHON} -c 'from sys import stdout; \ - import sysconfig; \ - stdout.write(sysconfig.get_config_var("PYTHONFRAMEWORKDIR"))'` diff --git a/srcpkgs/mod_wsgi/template b/srcpkgs/mod_wsgi/template index 163e5cb7b65051..7c7e590466aee6 100644 --- a/srcpkgs/mod_wsgi/template +++ b/srcpkgs/mod_wsgi/template @@ -1,7 +1,7 @@ # Template file for 'mod_wsgi' pkgname=mod_wsgi -version=4.9.4 -revision=4 +version=5.0.2 +revision=1 build_style=gnu-configure configure_args="--with-python=python3" hostmakedepends="python3 perl automake libtool" @@ -12,7 +12,7 @@ license="Apache-2.0" homepage="https://modwsgi.readthedocs.io/en/develop/" changelog="https://modwsgi.readthedocs.io/en/latest/release-notes/version-${version}.html" distfiles="https://github.com/GrahamDumpleton/mod_wsgi/archive/${version}.tar.gz" -checksum=ee926a3fd5675890b908ebc23db1f8f7f03dc3459241abdcf35d46c68e1be29b +checksum=9a0fdb61405abc300ec6b100c440dd98cf31cb5f97aeef4207390937298cad20 lib32disabled=yes pre_configure() { From daab047f17e7b60fccddac247826560e5101fb93 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:10 -0500 Subject: [PATCH 1433/1664] mnamer: rebuild for Python 3.14 --- srcpkgs/mnamer/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mnamer/template b/srcpkgs/mnamer/template index 75bfcef0605798..0f0597f388d48b 100644 --- a/srcpkgs/mnamer/template +++ b/srcpkgs/mnamer/template @@ -1,7 +1,7 @@ # Template file for 'mnamer' pkgname=mnamer version=2.5.5 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-setuptools_scm python3-wheel" depends="python3-appdirs python3-babelfish python3-guessit From f79493afe223d8d1e0f34d33bc144d8d2804b620 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:10 -0500 Subject: [PATCH 1434/1664] mitmproxy: rebuild for Python 3.14 --- srcpkgs/mitmproxy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mitmproxy/template b/srcpkgs/mitmproxy/template index 5dec34a60e4e08..d36bce98b584e0 100644 --- a/srcpkgs/mitmproxy/template +++ b/srcpkgs/mitmproxy/template @@ -1,7 +1,7 @@ # Template file for 'mitmproxy' pkgname=mitmproxy version=11.1.3 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3-aioquic python3-Brotli python3-Flask python3-argon2 python3-asgiref From b4db078e766a92cc7cab1cbfae77a32302e5698a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:10 -0500 Subject: [PATCH 1435/1664] mirage: rebuild for Python 3.14 --- srcpkgs/mirage/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mirage/template b/srcpkgs/mirage/template index 1f683b9347a6d6..4b06fb1e613119 100644 --- a/srcpkgs/mirage/template +++ b/srcpkgs/mirage/template @@ -1,7 +1,7 @@ # Template file for 'mirage' pkgname=mirage version=0.11.1 -revision=4 +revision=5 build_style="python3-module" hostmakedepends="python3-setuptools gettext glib-devel" makedepends="python3-devel libX11-devel" From 2a1bdf142321a1c5e4e3b3aaf164dc61afe06616 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:10 -0500 Subject: [PATCH 1436/1664] mininet: rebuild for Python 3.14 --- srcpkgs/mininet/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mininet/template b/srcpkgs/mininet/template index 4716d279f3ae30..3c348135547986 100644 --- a/srcpkgs/mininet/template +++ b/srcpkgs/mininet/template @@ -1,7 +1,7 @@ # Template file for 'mininet' pkgname=mininet version=2.3.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="help2man python3-setuptools" depends="bash ethtool inetutils-telnet iperf iproute2 iputils libcgroup-utils From ee33e18255fb46b1ad14c5f51fb4ee1a062b9437 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:10 -0500 Subject: [PATCH 1437/1664] minigalaxy: rebuild for Python 3.14 --- srcpkgs/minigalaxy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/minigalaxy/template b/srcpkgs/minigalaxy/template index bd18158d47d779..ddc9736362f58c 100644 --- a/srcpkgs/minigalaxy/template +++ b/srcpkgs/minigalaxy/template @@ -1,7 +1,7 @@ # Template file for 'minigalaxy' pkgname=minigalaxy version=1.2.5 -revision=3 +revision=4 build_style=python3-module hostmakedepends="gettext python3-setuptools" depends="hicolor-icon-theme libwebkit2gtk41 python3-gobject python3-requests" From 59b326618d44fffdf917d5f914f7423404de4c37 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:10 -0500 Subject: [PATCH 1438/1664] mimeo: rebuild for Python 3.14 --- srcpkgs/mimeo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template index 0da3aa3a1f42b8..db9390574a12b0 100644 --- a/srcpkgs/mimeo/template +++ b/srcpkgs/mimeo/template @@ -1,7 +1,7 @@ # Template file for 'mimeo' pkgname=mimeo version=2023 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3 python3-setuptools" depends="python3-xdg" From e2778b2c06eadc75369fec1cb59fcc88dcb35eb7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:10 -0500 Subject: [PATCH 1439/1664] meson-cmake-wrapper: rebuild for Python 3.14 --- srcpkgs/meson-cmake-wrapper/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/meson-cmake-wrapper/template b/srcpkgs/meson-cmake-wrapper/template index d6c376812d7c71..953947b2866f07 100644 --- a/srcpkgs/meson-cmake-wrapper/template +++ b/srcpkgs/meson-cmake-wrapper/template @@ -1,7 +1,7 @@ # Template file for 'meson-cmake-wrapper' pkgname=meson-cmake-wrapper version=0.3.4 -revision=7 +revision=8 build_style=python3-module pycompile_module="mcw" hostmakedepends="python3-setuptools" From 416c90ebb4b7499dc50c24605b4881181aad052c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:11 -0500 Subject: [PATCH 1440/1664] menumaker: rebuild for Python 3.14 --- srcpkgs/menumaker/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/menumaker/template b/srcpkgs/menumaker/template index 222699d884dd6f..177453de80f42c 100644 --- a/srcpkgs/menumaker/template +++ b/srcpkgs/menumaker/template @@ -1,7 +1,7 @@ # Template file for 'menumaker' pkgname=menumaker version=0.99.14 -revision=4 +revision=5 build_style=gnu-configure pycompile_dirs="/usr/share/menumaker" hostmakedepends="python3" From 84dc4b19f711c1be782be27afc370f9f66d6670f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:11 -0500 Subject: [PATCH 1441/1664] menulibre: rebuild for Python 3.14 --- srcpkgs/menulibre/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template index f2d7e82d8a9f9e..7fa34c47e9b1df 100644 --- a/srcpkgs/menulibre/template +++ b/srcpkgs/menulibre/template @@ -1,7 +1,7 @@ # Template file for 'menulibre' pkgname=menulibre version=2.2.1 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-distutils-extra intltool" depends="gnome-menus gobject-introspection gsettings-desktop-schemas gtk+3 From 2a83aab36b9258e0fee6ec26b7a038b3feb7c62b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:11 -0500 Subject: [PATCH 1442/1664] memray: rebuild for Python 3.14 --- srcpkgs/memray/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/memray/template b/srcpkgs/memray/template index b3f49c334cc88f..a2fb92d1559b74 100644 --- a/srcpkgs/memray/template +++ b/srcpkgs/memray/template @@ -1,7 +1,7 @@ # Template file for 'memray' pkgname=memray version=1.18.0 -revision=1 +revision=2 build_style=python3-pep517 make_check_args="-v -k not((TestTUILooks)or(test_tui))" make_check_target="tests/unit" From 4d114d9263a14789c970dc2b14d327151f7f5d93 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:11 -0500 Subject: [PATCH 1443/1664] mcomix: rebuild for Python 3.14 --- srcpkgs/mcomix/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mcomix/template b/srcpkgs/mcomix/template index e76ab3a6ee454a..9b252db6d06834 100644 --- a/srcpkgs/mcomix/template +++ b/srcpkgs/mcomix/template @@ -1,7 +1,7 @@ # Template file for 'mcomix' pkgname=mcomix version=3.1.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3-gobject python3-cairo python3-Pillow xdg-utils" From 03a9500df91868c5c69a3d8837bdf3aa156bf27a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:11 -0500 Subject: [PATCH 1444/1664] mcg: rebuild for Python 3.14 --- srcpkgs/mcg/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mcg/template b/srcpkgs/mcg/template index 1ea17266395065..bd2d1403495ff6 100644 --- a/srcpkgs/mcg/template +++ b/srcpkgs/mcg/template @@ -1,7 +1,7 @@ # Template file for 'mcg' pkgname=mcg version=2.1 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools glib-devel" makedepends="python3-gobject-devel glib-devel" From 774a4a94718f92d34d19f69c96bd26ac065f7d92 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:11 -0500 Subject: [PATCH 1445/1664] mate-tweak: rebuild for Python 3.14 --- srcpkgs/mate-tweak/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mate-tweak/template b/srcpkgs/mate-tweak/template index c59e2d973e421a..cb37eca88980c8 100644 --- a/srcpkgs/mate-tweak/template +++ b/srcpkgs/mate-tweak/template @@ -1,7 +1,7 @@ # Template file for 'mate-tweak' pkgname=mate-tweak version=22.10.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools" depends="mate-panel python3-gobject python3-psutil python3-setproctitle From ccd76e4fa35bb661c377ca42ac9a7e2ec70f1ea4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:11 -0500 Subject: [PATCH 1446/1664] mate-menu: rebuild for Python 3.14 --- srcpkgs/mate-menu/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mate-menu/template b/srcpkgs/mate-menu/template index e8fcd498755658..fa0274f25eafe2 100644 --- a/srcpkgs/mate-menu/template +++ b/srcpkgs/mate-menu/template @@ -1,7 +1,7 @@ # Template file for 'mate-menu' pkgname=mate-menu version=22.04.2 -revision=2 +revision=3 build_style=python3-module hostmakedepends="intltool python3-distutils-extra python3-setuptools" depends="mate-panel python3-gobject python3-setproctitle python3-xdg python3-xlib python3-configobj python3-cairo" From e9d5872454ff4728de057f3481cf135bf1b8ddad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:12 -0500 Subject: [PATCH 1447/1664] mat2: rebuild for Python 3.14 --- srcpkgs/mat2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mat2/template b/srcpkgs/mat2/template index 866ec49259b13b..423466276cc03b 100644 --- a/srcpkgs/mat2/template +++ b/srcpkgs/mat2/template @@ -1,7 +1,7 @@ # Template file for 'mat2' pkgname=mat2 version=0.13.5 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="bubblewrap python3-cairo python3-gobject python3-mutagen poppler-glib From bfdc388817101271be3ed5971eefa9304e2940ee Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:12 -0500 Subject: [PATCH 1448/1664] manuskript: rebuild for Python 3.14 --- srcpkgs/manuskript/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/manuskript/template b/srcpkgs/manuskript/template index da92d06da0e7f0..b734987cf19a0a 100644 --- a/srcpkgs/manuskript/template +++ b/srcpkgs/manuskript/template @@ -1,7 +1,7 @@ # Template file for 'manuskript' pkgname=manuskript version=0.17.0 -revision=1 +revision=2 pycompile_dirs="usr/share/${pkgname}" hostmakedepends="python3-setuptools" depends="python3-enchant python3-lxml python3-Markdown python3-PyQt5 qt5-svg" From 4ac51e3d2ccb324cabb78665a55a776f112ac9a8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:12 -0500 Subject: [PATCH 1449/1664] mailnag-goa-plugin: rebuild for Python 3.14 --- srcpkgs/mailnag-goa-plugin/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mailnag-goa-plugin/template b/srcpkgs/mailnag-goa-plugin/template index 4272778b536ca0..e4eb260045be8a 100644 --- a/srcpkgs/mailnag-goa-plugin/template +++ b/srcpkgs/mailnag-goa-plugin/template @@ -1,7 +1,7 @@ # Template file for 'mailnag-goa-plugin' pkgname=mailnag-goa-plugin version=2.0.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="mailnag gnome-online-accounts" From d48072a24db5441f752d23310edc73631867cab2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:12 -0500 Subject: [PATCH 1450/1664] magic-wormhole: rebuild for Python 3.14 --- srcpkgs/magic-wormhole/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/magic-wormhole/template b/srcpkgs/magic-wormhole/template index 44213dec1b13ad..7876d5277a6a01 100644 --- a/srcpkgs/magic-wormhole/template +++ b/srcpkgs/magic-wormhole/template @@ -1,7 +1,7 @@ # Template file for 'magic-wormhole' pkgname=magic-wormhole version=0.15.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3 python3-build python3-setuptools python3-wheel" depends="python3-autobahn python3-cffi python3-click python3-humanize From 370f2337aea6e7aeec0edc168ec09ac58ff5c3ad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:12 -0500 Subject: [PATCH 1451/1664] lutris: rebuild for Python 3.14 --- srcpkgs/lutris/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template index ec0611b5a767c4..1b210c7ee3cbae 100644 --- a/srcpkgs/lutris/template +++ b/srcpkgs/lutris/template @@ -1,7 +1,7 @@ # Template file for 'lutris' pkgname=lutris version=0.5.18 -revision=1 +revision=2 build_style=meson hostmakedepends="gettext python3-setuptools python3-gobject gtk+3-devel" depends="python3-dbus python3-gobject python3-yaml python3-evdev python3-Pillow From 7e68f2cbb1b061602f76f8f600565d04ce531d40 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:12 -0500 Subject: [PATCH 1452/1664] lollypop: rebuild for Python 3.14 --- srcpkgs/lollypop/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template index 2321b2c3243cb9..cb4a65d7e23e4b 100644 --- a/srcpkgs/lollypop/template +++ b/srcpkgs/lollypop/template @@ -1,7 +1,7 @@ # Template file for 'lollypop' pkgname=lollypop version=1.4.44 -revision=1 +revision=2 build_style=meson hostmakedepends="glib-devel gobject-introspection gettext pkg-config" makedepends="gtk+3-devel libsoup3-devel python3-gobject-devel python3-devel From b5e4de02e2d369383b3112bc65516a6c937d1d0c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:12 -0500 Subject: [PATCH 1453/1664] litecli: rebuild for Python 3.14 --- srcpkgs/litecli/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/litecli/template b/srcpkgs/litecli/template index a0c39eaf031ac4..36625a0516a6fa 100644 --- a/srcpkgs/litecli/template +++ b/srcpkgs/litecli/template @@ -1,7 +1,7 @@ # Template file for 'litecli' pkgname=litecli version=1.15.0 -revision=1 +revision=2 build_style=python3-pep517 # skip half-baked tests, should be fixed in next release make_check_args="--ignore=tests/test_llm_special.py" From 36ad6e3772af21f8bc4915513eb2b2bc182b62f1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:13 -0500 Subject: [PATCH 1454/1664] linux-tools: rebuild for Python 3.14 --- srcpkgs/linux-tools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/linux-tools/template b/srcpkgs/linux-tools/template index 97951e6e815eda..501b3ca3ebe6b5 100644 --- a/srcpkgs/linux-tools/template +++ b/srcpkgs/linux-tools/template @@ -1,7 +1,7 @@ # Template file for 'linux-tools' pkgname=linux-tools version=6.5 -revision=6 +revision=7 metapackage=yes hostmakedepends="asciidoc automake flex gettext libtool perl python3-setuptools python3-docutils xmlto pkg-config" From c7fc4bd9d5337166378b6dfbdd9ac08cace73f6d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:13 -0500 Subject: [PATCH 1455/1664] lightdm-gtk-greeter-settings: rebuild for Python 3.14 --- srcpkgs/lightdm-gtk-greeter-settings/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/lightdm-gtk-greeter-settings/template b/srcpkgs/lightdm-gtk-greeter-settings/template index 39f2a3c23e1eb6..515f7ad33b001b 100644 --- a/srcpkgs/lightdm-gtk-greeter-settings/template +++ b/srcpkgs/lightdm-gtk-greeter-settings/template @@ -1,7 +1,7 @@ # Template file for 'lightdm-gtk-greeter-settings' pkgname=lightdm-gtk-greeter-settings version=1.2.2 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-distutils-extra intltool" depends="lightdm-gtk3-greeter python3-gobject" From 4d77c09436473d5e94a75f7cb5c7978df26f154b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:13 -0500 Subject: [PATCH 1456/1664] libvoikko: rebuild for Python 3.14 --- srcpkgs/libvoikko/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libvoikko/template b/srcpkgs/libvoikko/template index 2d94f6facf1e84..d6b8db07aca31d 100644 --- a/srcpkgs/libvoikko/template +++ b/srcpkgs/libvoikko/template @@ -1,7 +1,7 @@ # Template file for 'libvoikko' pkgname=libvoikko version=4.3.3 -revision=1 +revision=2 build_style=gnu-configure configure_args="--enable-hfst=false --with-dictionary-path=/usr/share/voikko" hostmakedepends="python3" From 8e80da7867ceb2f7bd613321bb4d108417784b50 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:13 -0500 Subject: [PATCH 1457/1664] libsmbios: rebuild for Python 3.14 --- srcpkgs/libsmbios/template | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/srcpkgs/libsmbios/template b/srcpkgs/libsmbios/template index 43b645988c186a..d7af970bc9bbbf 100644 --- a/srcpkgs/libsmbios/template +++ b/srcpkgs/libsmbios/template @@ -1,7 +1,7 @@ # Template file for 'libsmbios' pkgname=libsmbios version=2.4.3 -revision=6 +revision=7 build_style=gnu-configure configure_args="--sbindir=/usr/bin --disable-static" hostmakedepends="automake doxygen gettext gettext-devel help2man libtool pkg-config" @@ -19,6 +19,8 @@ subpackages="libsmbios-devel python3-libsmbios libsmbios-utils" archs="i686* x86_64*" +export CFLAGS="-Wno-int-conversion" + pre_configure() { ./autogen.sh --no-configure } From b78126a069cd1f46aa0705c7de23bc4327144d89 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:13 -0500 Subject: [PATCH 1458/1664] libsigrokdecode: rebuild for Python 3.14 --- srcpkgs/libsigrokdecode/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libsigrokdecode/template b/srcpkgs/libsigrokdecode/template index 2a262c6fe73e1c..73c756de6f2b05 100644 --- a/srcpkgs/libsigrokdecode/template +++ b/srcpkgs/libsigrokdecode/template @@ -1,7 +1,7 @@ # Template file for 'libsigrokdecode' pkgname=libsigrokdecode version=0.5.3 -revision=12 +revision=13 build_style=gnu-configure hostmakedepends="pkg-config python3 autoconf automake" makedepends="glib-devel python3-devel" From 9284570dda9f601f8a8f94374bd85afcb6800bc8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:13 -0500 Subject: [PATCH 1459/1664] libreoffice: rebuild for Python 3.14 --- srcpkgs/libreoffice/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template index d8554dd1192f6c..0b27abe79b8fdf 100644 --- a/srcpkgs/libreoffice/template +++ b/srcpkgs/libreoffice/template @@ -1,7 +1,7 @@ # Template file for 'libreoffice' pkgname=libreoffice version=25.8.3.2 -revision=1 +revision=2 build_helper="gir" build_style=configure # hack, avoid sourcing common/.../gnu-configure-args.sh metapackage=yes From 79534a3cb08871bde54d53d143a9499e9618e3cd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:13 -0500 Subject: [PATCH 1460/1664] libpeas2: rebuild for Python 3.14 --- srcpkgs/libpeas2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libpeas2/template b/srcpkgs/libpeas2/template index 8b2ecfe9d6c007..d6b30a4594d3ad 100644 --- a/srcpkgs/libpeas2/template +++ b/srcpkgs/libpeas2/template @@ -1,7 +1,7 @@ # Template file for 'libpeas2' pkgname=libpeas2 version=2.2.0 -revision=1 +revision=2 build_style=meson build_helper="gir" configure_args="-Dgtk_doc=true -Dvapi=true" From 96c5a293b373466a253ba1f8bfd2a2c966cfe136 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:14 -0500 Subject: [PATCH 1461/1664] libgpiod: rebuild for Python 3.14 --- srcpkgs/libgpiod/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libgpiod/template b/srcpkgs/libgpiod/template index dbc8223acabbeb..00dbd95827b197 100644 --- a/srcpkgs/libgpiod/template +++ b/srcpkgs/libgpiod/template @@ -1,7 +1,7 @@ # Template file for 'libgpiod' pkgname=libgpiod version=2.2 -revision=3 +revision=4 build_style="gnu-configure" build_helper="python3" configure_args="--prefix=/usr --enable-tools=yes --enable-bindings-cxx From 4e336105ac6983787b0c333bf4959785be537977 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:14 -0500 Subject: [PATCH 1462/1664] libffado: rebuild for Python 3.14 --- srcpkgs/libffado/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libffado/template b/srcpkgs/libffado/template index 0abab4bcc8d642..90b7c278103cdf 100644 --- a/srcpkgs/libffado/template +++ b/srcpkgs/libffado/template @@ -1,7 +1,7 @@ # Template file for 'libffado' pkgname=libffado version=2.4.9 -revision=3 +revision=4 build_style=scons scons_use_destdir=yes make_build_args="PREFIX=/usr MANDIR=/usr/share/man From d46ecbf829c797f9e24be0fbf4a860ba08721c8c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:14 -0500 Subject: [PATCH 1463/1664] libblockdev: rebuild for Python 3.14 --- srcpkgs/libblockdev/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libblockdev/template b/srcpkgs/libblockdev/template index 8b97af57c00602..f56434e5a5749d 100644 --- a/srcpkgs/libblockdev/template +++ b/srcpkgs/libblockdev/template @@ -1,7 +1,7 @@ # Template file for 'libblockdev' pkgname=libblockdev version=3.3.1 -revision=1 +revision=2 build_style=gnu-configure make_check_target="test" hostmakedepends="pkg-config python3-setuptools autoconf autoconf-archive automake libtool" From 64cd50b0f9f785ad41054f56864aa2fd22f1319e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:14 -0500 Subject: [PATCH 1464/1664] libaccounts-glib: rebuild for Python 3.14 --- srcpkgs/libaccounts-glib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libaccounts-glib/template b/srcpkgs/libaccounts-glib/template index 5269a621f30822..ccb502fc393c0c 100644 --- a/srcpkgs/libaccounts-glib/template +++ b/srcpkgs/libaccounts-glib/template @@ -1,7 +1,7 @@ # Template file for 'libaccounts-glib' pkgname=libaccounts-glib version=1.26 -revision=2 +revision=3 build_style=meson build_helper="gir qemu" configure_args="-Dpy-overrides-dir=/${py3_sitelib}/gi/overrides" From 49afd9c9f7b3f392d001bf0189871949bf8f059d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:14 -0500 Subject: [PATCH 1465/1664] lfm: rebuild for Python 3.14 --- srcpkgs/lfm/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template index 622315331528be..75f55dfb78b7c0 100644 --- a/srcpkgs/lfm/template +++ b/srcpkgs/lfm/template @@ -1,7 +1,7 @@ # Template file for 'lfm' pkgname=lfm version=3.1 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 472c9e582a3247ce7ece2efa74d681535c1fff2b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:14 -0500 Subject: [PATCH 1466/1664] lesspass: rebuild for Python 3.14 --- srcpkgs/lesspass/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/lesspass/template b/srcpkgs/lesspass/template index 831dc30d2888b0..e7d4bb5a11991c 100644 --- a/srcpkgs/lesspass/template +++ b/srcpkgs/lesspass/template @@ -1,7 +1,7 @@ # Template file for 'lesspass' pkgname=lesspass version=10.2.1 -revision=4 +revision=5 build_wrksrc="cli" build_style=python3-module hostmakedepends="python3-setuptools" From aea69bc5314777e5471d4f00d72187684acbb4c5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:14 -0500 Subject: [PATCH 1467/1664] legendary: rebuild for Python 3.14 --- srcpkgs/legendary/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/legendary/template b/srcpkgs/legendary/template index a707006dca5f80..ed8339a2613c5f 100644 --- a/srcpkgs/legendary/template +++ b/srcpkgs/legendary/template @@ -1,7 +1,7 @@ # Template file for 'legendary' pkgname=legendary version=0.20.34 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests python3-filelock" From d5fd7eb611d1bdf803711e34446521c67a66fceb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:15 -0500 Subject: [PATCH 1468/1664] kvirc: rebuild for Python 3.14 --- srcpkgs/kvirc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kvirc/template b/srcpkgs/kvirc/template index 1543564da19b78..8eb0ee438e1d8c 100644 --- a/srcpkgs/kvirc/template +++ b/srcpkgs/kvirc/template @@ -1,7 +1,7 @@ # Template file for 'kvirc' pkgname=kvirc version=5.0.0 -revision=16 +revision=17 build_style=cmake configure_args="-DWANT_ENV_FLAGS=1 -DWANT_KDE=0" hostmakedepends="perl" From 4cd6193a9a30e47889cc14608f023fdbe37d49b5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:15 -0500 Subject: [PATCH 1469/1664] kupfer: rebuild for Python 3.14 --- srcpkgs/kupfer/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kupfer/template b/srcpkgs/kupfer/template index 3b1eb69f5fc12a..8886e9c8846b05 100644 --- a/srcpkgs/kupfer/template +++ b/srcpkgs/kupfer/template @@ -1,7 +1,7 @@ # Template file for 'kupfer' pkgname=kupfer version=321 -revision=5 +revision=6 build_style=waf3 pycompile_dirs="usr/share/kupfer/kupfer" configure_args="--no-update-mime --no-update-icon-cache" From 4202077aa7a5c89f1e4fc385831fb9b97869bd20 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:15 -0500 Subject: [PATCH 1470/1664] krita: rebuild for Python 3.14 --- srcpkgs/krita/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/krita/template b/srcpkgs/krita/template index 1ea24da1c279c0..281db8686c1547 100644 --- a/srcpkgs/krita/template +++ b/srcpkgs/krita/template @@ -1,7 +1,7 @@ # Template file for 'krita' pkgname=krita version=5.2.13 -revision=1 +revision=2 build_style=cmake configure_args="-Wno-dev -DBUILD_TESTING=OFF -DENABLE_UPDATERS=OFF" hostmakedepends="extra-cmake-modules gettext pkg-config python3 From 2aa361984cc927482467850179360feba67ca1b4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:15 -0500 Subject: [PATCH 1471/1664] kore: rebuild for Python 3.14 --- srcpkgs/kore/patches/no-werror.patch | 36 +++++++++++++++++ srcpkgs/kore/patches/python-3.14.00.patch | 48 +++++++++++++++++++++++ srcpkgs/kore/patches/python-3.14.01.patch | 25 ++++++++++++ srcpkgs/kore/template | 2 +- 4 files changed, 110 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/kore/patches/no-werror.patch create mode 100644 srcpkgs/kore/patches/python-3.14.00.patch create mode 100644 srcpkgs/kore/patches/python-3.14.01.patch diff --git a/srcpkgs/kore/patches/no-werror.patch b/srcpkgs/kore/patches/no-werror.patch new file mode 100644 index 00000000000000..efd0b7101d3b02 --- /dev/null +++ b/srcpkgs/kore/patches/no-werror.patch @@ -0,0 +1,36 @@ +diff -ur a/Makefile b/Makefile +--- a/Makefile 2022-08-22 07:18:44.000000000 -0400 ++++ b/Makefile 2025-11-17 14:04:07.236703698 -0500 +@@ -31,7 +31,7 @@ + FEATURES= + FEATURES_INC= + +-CFLAGS+=-Wall -Werror -Wstrict-prototypes -Wmissing-prototypes ++CFLAGS+=-Wall -Wstrict-prototypes -Wmissing-prototypes + CFLAGS+=-Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual + CFLAGS+=-Wsign-compare -Iinclude/kore -I$(OBJDIR) -std=c99 -pedantic + CFLAGS+=-Wtype-limits -fno-common +diff -ur a/kodev/Makefile b/kodev/Makefile +--- a/kodev/Makefile 2022-08-22 07:18:44.000000000 -0400 ++++ b/kodev/Makefile 2025-11-17 14:04:04.482696142 -0500 +@@ -9,7 +9,7 @@ + + S_SRC= ../src/cli.c + +-CFLAGS+=-Wall -Werror -Wstrict-prototypes -Wmissing-prototypes ++CFLAGS+=-Wall -Wstrict-prototypes -Wmissing-prototypes + CFLAGS+=-Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual + CFLAGS+=-Wsign-compare -Iincludes -std=c99 -pedantic + CFLAGS+=-DPREFIX='"$(PREFIX)"' +diff -ur a/tools/kore-serve/conf/build.conf b/tools/kore-serve/conf/build.conf +--- a/tools/kore-serve/conf/build.conf 2022-08-22 07:18:44.000000000 -0400 ++++ b/tools/kore-serve/conf/build.conf 2025-11-17 14:04:15.480726315 -0500 +@@ -2,7 +2,7 @@ + kore_source=../../ + kore_flavor=NOTLS=1 + +-cflags=-std=c99 -Werror ++cflags=-std=c99 + cflags=-Wall -Wmissing-declarations -Wshadow + cflags=-Wstrict-prototypes -Wmissing-prototypes + cflags=-Wpointer-arith -Wcast-qual -Wsign-compare diff --git a/srcpkgs/kore/patches/python-3.14.00.patch b/srcpkgs/kore/patches/python-3.14.00.patch new file mode 100644 index 00000000000000..b3f55ba78a9985 --- /dev/null +++ b/srcpkgs/kore/patches/python-3.14.00.patch @@ -0,0 +1,48 @@ +From b2b12809c7fb291543237ad2521f20428f19bcaa Mon Sep 17 00:00:00 2001 +From: Joris Vink +Date: Tue, 21 Oct 2025 17:48:56 +0200 +Subject: [PATCH 1/2] Initial support for Python 3.14.x + +--- + src/python.c | 14 +++++++++++++- + 1 file changed, 13 insertions(+), 1 deletion(-) + +diff --git a/src/python.c b/src/python.c +index 16d87da..5175e39 100644 +--- a/src/python.c ++++ b/src/python.c +@@ -70,10 +70,20 @@ + #pragma GCC diagnostic ignored "-Wpedantic" + #endif + ++#if PY_VERSION_HEX >= 0x030e0000 ++#pragma GCC diagnostic ignored "-Wcast-qual" ++#pragma GCC diagnostic ignored "-Wtypedef-redefinition" ++#endif ++ + #if PY_VERSION_HEX < 0x030d0000 + #define _PyFrame_GetCode(frame) (frame->f_code) + #endif + ++#if PY_VERSION_HEX >= 0x030e0000 ++#include ++#include ++#endif ++ + #if PY_VERSION_HEX >= 0x030b0000 + #include + #endif +@@ -1250,7 +1260,9 @@ python_coro_trace(const char *label, struct python_coro *coro) + + obj = (PyCoroObject *)coro->obj; + +-#if PY_VERSION_HEX >= 0x030b0000 ++#if PY_VERSION_HEX >= 0x030e0000 ++ frame = (_PyInterpreterFrame *)&obj->cr_iframe; ++#elif PY_VERSION_HEX >= 0x030b0000 + frame = (_PyInterpreterFrame *)obj->cr_iframe; + #else + frame = obj->cr_frame; +-- +2.51.2 + diff --git a/srcpkgs/kore/patches/python-3.14.01.patch b/srcpkgs/kore/patches/python-3.14.01.patch new file mode 100644 index 00000000000000..d9a3103fb60396 --- /dev/null +++ b/srcpkgs/kore/patches/python-3.14.01.patch @@ -0,0 +1,25 @@ +From f8a35de916353384794c385e830aea20cdde84e5 Mon Sep 17 00:00:00 2001 +From: Joris Vink +Date: Tue, 21 Oct 2025 17:50:12 +0200 +Subject: [PATCH 2/2] python: Remove include that is not required for 3.14.x + +This is pulled in via pycore_interpframe.h anyway. +--- + src/python.c | 1 - + 1 file changed, 1 deletion(-) + +diff --git a/src/python.c b/src/python.c +index 5175e39..df33c44 100644 +--- a/src/python.c ++++ b/src/python.c +@@ -81,7 +81,6 @@ + + #if PY_VERSION_HEX >= 0x030e0000 + #include +-#include + #endif + + #if PY_VERSION_HEX >= 0x030b0000 +-- +2.51.2 + diff --git a/srcpkgs/kore/template b/srcpkgs/kore/template index 502690a8c8e6a3..e13d700c89ab34 100644 --- a/srcpkgs/kore/template +++ b/srcpkgs/kore/template @@ -1,7 +1,7 @@ # Template file for 'kore' pkgname=kore version=4.2.3 -revision=6 +revision=7 # arch specific seccomp stuff archs="x86_64* aarch64* ppc64*" build_style=gnu-makefile From 7e348c4cd08d436e5c39ff189d5f341b288af9ad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:15 -0500 Subject: [PATCH 1472/1664] kodi: rebuild for Python 3.14 --- srcpkgs/kodi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kodi/template b/srcpkgs/kodi/template index ed53a86f3a62c3..eb33386197388e 100644 --- a/srcpkgs/kodi/template +++ b/srcpkgs/kodi/template @@ -1,7 +1,7 @@ # Template file for 'kodi' pkgname=kodi version=21.2 -revision=2 +revision=3 _codename="Omega" _crossguid_ver="ca1bf4b810e2d188d04cb6286f957008ee1b7681" _dvdcss_ver="1.4.3-Next-Nexus-Alpha2-2" From 3b449fe4f039eb93c9fd9c2cb8e4e7c6221612b1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:15 -0500 Subject: [PATCH 1473/1664] kmymoney: rebuild for Python 3.14 --- srcpkgs/kmymoney/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kmymoney/template b/srcpkgs/kmymoney/template index cab3e406d317e6..d21f87d5260294 100644 --- a/srcpkgs/kmymoney/template +++ b/srcpkgs/kmymoney/template @@ -1,7 +1,7 @@ # Template file for 'kmymoney' pkgname=kmymoney version=5.2.1 -revision=4 +revision=5 build_style=cmake configure_args="-DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins -DBUILD_WITH_QT6=ON -DENABLE_GPG=ON From 5217edb0c7ba496c4e79e68de620e9c449894ef1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:15 -0500 Subject: [PATCH 1474/1664] kitty: rebuild for Python 3.14 --- srcpkgs/kitty/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template index 21c1d5e13219cd..446b524108dc33 100644 --- a/srcpkgs/kitty/template +++ b/srcpkgs/kitty/template @@ -1,7 +1,7 @@ # Template file for 'kitty' pkgname=kitty version=0.44.0 -revision=1 +revision=2 build_helper="python3" pycompile_dirs="usr/lib/kitty" hostmakedepends="go pkg-config python3 wayland-devel wayland-protocols nerd-fonts-symbols-ttf" From d3caf5028bcd0b077c713ff1aeb95dc6d9245bb9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:16 -0500 Subject: [PATCH 1475/1664] kig: rebuild for Python 3.14 --- srcpkgs/kig/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kig/template b/srcpkgs/kig/template index abcbcf96a8b4a2..5c7b7cb5c6094a 100644 --- a/srcpkgs/kig/template +++ b/srcpkgs/kig/template @@ -1,7 +1,7 @@ # Template file for 'kig' pkgname=kig version=25.08.3 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF -DKF6_HOST_TOOLING=/usr/lib/cmake -DKDE_INSTALL_QTPLUGINDIR=lib/qt6/plugins From 7c6040d7fe96709337e6ecf509f1b8b50b3091d1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:16 -0500 Subject: [PATCH 1476/1664] kicad: rebuild for Python 3.14 --- srcpkgs/kicad/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kicad/template b/srcpkgs/kicad/template index 5014e07c6b5bfd..553ba45d523f28 100644 --- a/srcpkgs/kicad/template +++ b/srcpkgs/kicad/template @@ -2,7 +2,7 @@ # XXX: keep in sync with kicad-doc pkgname=kicad version=9.0.6 -revision=1 +revision=2 build_style=cmake build_helper="cmake-wxWidgets-gtk3" configure_args="-DKICAD_SCRIPTING_WXPYTHON=ON -DKICAD_USE_EGL=ON -DKICAD_BUILD_QA_TESTS=OFF From 0f5af07bdafc7c7c3985de0cb0ce3f0e5702f458 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:16 -0500 Subject: [PATCH 1477/1664] khard: rebuild for Python 3.14 --- srcpkgs/khard/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template index dced533fe9b95a..d8573eaa5e51ad 100644 --- a/srcpkgs/khard/template +++ b/srcpkgs/khard/template @@ -1,7 +1,7 @@ # Template file for 'khard' pkgname=khard version=0.19.1 -revision=1 +revision=2 build_style=python3-module # fails in CI make_check_args="--deselect test/test_command_line_interface.py::MiscCommands" From 77907b12252fae91ed2c3b5d6096e006d71d167e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:16 -0500 Subject: [PATCH 1478/1664] khal: rebuild for Python 3.14 --- srcpkgs/khal/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template index c697bd0d971841..fba107f2ed3629 100644 --- a/srcpkgs/khal/template +++ b/srcpkgs/khal/template @@ -1,7 +1,7 @@ # Template file for 'khal' pkgname=khal version=0.13.0 -revision=1 +revision=2 build_style=python3-pep517 # The first two tests get the path to the configuration file wrong in an # xbps-src chroot, the last one fails only sometimes for an unknown reason. From 327444600ab23b59de997bddb29937c87d8e8c14 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:16 -0500 Subject: [PATCH 1479/1664] kf6-kunitconversion: rebuild for Python 3.14 --- srcpkgs/kf6-kunitconversion/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kunitconversion/template b/srcpkgs/kf6-kunitconversion/template index f6c80f24569235..1fd8d5552aafd0 100644 --- a/srcpkgs/kf6-kunitconversion/template +++ b/srcpkgs/kf6-kunitconversion/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kunitconversion' pkgname=kf6-kunitconversion version=6.19.0 -revision=1 +revision=2 _llvmver=21 build_style=cmake configure_args="$(vopt_bool python BUILD_PYTHON_BINDINGS)" From 4f1ca798a4eba31cf1fce8e485e6ccb94859a762 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:16 -0500 Subject: [PATCH 1480/1664] kf6-kstatusnotifieritem: rebuild for Python 3.14 --- srcpkgs/kf6-kstatusnotifieritem/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kf6-kstatusnotifieritem/template b/srcpkgs/kf6-kstatusnotifieritem/template index ea7e1075248948..d83ae9bbefc2a9 100644 --- a/srcpkgs/kf6-kstatusnotifieritem/template +++ b/srcpkgs/kf6-kstatusnotifieritem/template @@ -1,7 +1,7 @@ # Template file for 'kf6-kstatusnotifieritem' pkgname=kf6-kstatusnotifieritem version=6.19.0 -revision=1 +revision=2 build_style=cmake _llvmver=21 configure_args="$(vopt_bool python BUILD_PYTHON_BINDINGS)" From 7e21871c505481917e9e7158e692fd75b698ac0f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:17 -0500 Subject: [PATCH 1481/1664] kea: rebuild for Python 3.14 --- srcpkgs/kea/template | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/srcpkgs/kea/template b/srcpkgs/kea/template index 6527c5e2d4f195..78ab3d5accc994 100644 --- a/srcpkgs/kea/template +++ b/srcpkgs/kea/template @@ -1,7 +1,7 @@ # Template file for 'kea' pkgname=kea version=3.1.1 -revision=2 +revision=3 build_style=meson build_helper=qemu configure_args="-Dcpp_std=gnu++20 @@ -10,8 +10,7 @@ hostmakedepends="flex bison perl pkg-config doxygen elinks libxslt docbook-xsl python3-Sphinx python3-sphinx_rtd_theme" _devel_depends="log4cplus-devel $(vopt_if botan botan-devel openssl-devel) $(vopt_if mysql libmariadbclient-devel) $(vopt_if pgsql postgresql-libs-devel)" -makedepends="boost-devel-minimal log4cplus-devel python3-devel - gtest-devel $_devel_depends" +makedepends="boost-devel log4cplus-devel python3-devel gtest-devel $_devel_depends" checkdepends="procps-ng" # needs pgrep conf_files="/etc/kea/*.conf" short_desc="Next generation DHCPv4/v6 server" From bbb5d2b73a760fdafab2346246796069c15ef179 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:17 -0500 Subject: [PATCH 1482/1664] kdevelop-python: rebuild for Python 3.14 --- srcpkgs/kdevelop-python/patches/python-3.14.patch | 11 +++++++++++ srcpkgs/kdevelop-python/template | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/kdevelop-python/patches/python-3.14.patch diff --git a/srcpkgs/kdevelop-python/patches/python-3.14.patch b/srcpkgs/kdevelop-python/patches/python-3.14.patch new file mode 100644 index 00000000000000..0a5a38356fd010 --- /dev/null +++ b/srcpkgs/kdevelop-python/patches/python-3.14.patch @@ -0,0 +1,11 @@ +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -42,7 +42,7 @@ + + set(Python3_USE_STATIC_LIBS FALSE) + set(Python3_FIND_STRATEGY VERSION) +-find_package(Python3 3.4.3...<3.14 COMPONENTS Interpreter Development REQUIRED) ++find_package(Python3 3.4.3...<3.15 COMPONENTS Interpreter Development REQUIRED) + + configure_file(kdevpythonversion.h.cmake "${CMAKE_CURRENT_BINARY_DIR}/kdevpythonversion.h" @ONLY) + diff --git a/srcpkgs/kdevelop-python/template b/srcpkgs/kdevelop-python/template index fbca99c4e0fcfe..556fb333e4e685 100644 --- a/srcpkgs/kdevelop-python/template +++ b/srcpkgs/kdevelop-python/template @@ -1,7 +1,7 @@ # Template file for 'kdevelop-python' pkgname=kdevelop-python version=25.08.3 -revision=1 +revision=2 build_style=cmake configure_args="-DBUILD_TESTING=OFF" pycompile_dirs="usr/share/kdevpythonsupport" From ad67bb807400b68ea68cec18cbe0976655b5981d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:17 -0500 Subject: [PATCH 1483/1664] kapidox: rebuild for Python 3.14 --- srcpkgs/kapidox/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kapidox/template b/srcpkgs/kapidox/template index 5540ba1e41b6e8..f3a838b2b155bf 100644 --- a/srcpkgs/kapidox/template +++ b/srcpkgs/kapidox/template @@ -1,7 +1,7 @@ # Template file for 'kapidox' pkgname=kapidox version=6.19.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3 python3-setuptools" makedepends="python3-Jinja2 python3-yaml" From 6bf7f9f5f6d9ce140954c39bb4649f11c100e669 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:17 -0500 Subject: [PATCH 1484/1664] jrnl: rebuild for Python 3.14 --- srcpkgs/jrnl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template index 06aec83e9f9b5e..f18a788fa4d0f8 100644 --- a/srcpkgs/jrnl/template +++ b/srcpkgs/jrnl/template @@ -1,7 +1,7 @@ # Template file for 'jrnl' pkgname=jrnl version=4.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-colorama python3-cryptography From 66e7c80809e10fbcb73029cc6f2737815c463231 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:17 -0500 Subject: [PATCH 1485/1664] jep: rebuild for Python 3.14 --- srcpkgs/jep/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/jep/template b/srcpkgs/jep/template index c936c94f83f01e..e81b4357d4333b 100644 --- a/srcpkgs/jep/template +++ b/srcpkgs/jep/template @@ -1,7 +1,7 @@ # Template file for 'jep' pkgname=jep version=4.2.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools openjdk17" makedepends="python3-devel openjdk17" From 8aa06ff419f0cfdab0ac471b64a1b333a0d51900 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:17 -0500 Subject: [PATCH 1486/1664] jc: rebuild for Python 3.14 --- srcpkgs/jc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/jc/template b/srcpkgs/jc/template index 46cf0dce72d901..2acdd6bb3b348d 100644 --- a/srcpkgs/jc/template +++ b/srcpkgs/jc/template @@ -1,7 +1,7 @@ # Template file for 'jc' pkgname=jc version=1.25.6 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-Pygments python3-ruamel.yaml python3-xmltodict" From 8f0eb1b4c9e8ab14df94b81d2e25cff3e8fad3ed Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:17 -0500 Subject: [PATCH 1487/1664] jack_mixer: rebuild for Python 3.14 --- srcpkgs/jack_mixer/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/jack_mixer/template b/srcpkgs/jack_mixer/template index 563a580bc16705..dde0edeb9f437c 100644 --- a/srcpkgs/jack_mixer/template +++ b/srcpkgs/jack_mixer/template @@ -1,7 +1,7 @@ # Template file for 'jack_mixer' pkgname=jack_mixer version=18 -revision=1 +revision=2 build_style=meson configure_args="-Dcheck-py-modules=false" hostmakedepends="gettext pkg-config python3-Cython" From 7ce7ca00cd00c8d5abcb03035085a242b745c7c2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:18 -0500 Subject: [PATCH 1488/1664] ite8291r3-ctl: rebuild for Python 3.14 --- srcpkgs/ite8291r3-ctl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ite8291r3-ctl/template b/srcpkgs/ite8291r3-ctl/template index e5d9602ba34379..f06426b9db1503 100644 --- a/srcpkgs/ite8291r3-ctl/template +++ b/srcpkgs/ite8291r3-ctl/template @@ -1,7 +1,7 @@ # Template file for 'ite8291r3-ctl' pkgname=ite8291r3-ctl version=0.3 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-usb python3-xlib python3-Pillow" From f00625837a22bc2ee7d58d3d7c6454e240556083 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:18 -0500 Subject: [PATCH 1489/1664] iotop: rebuild for Python 3.14 --- srcpkgs/iotop/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template index 33a6238f80b117..f6c74acabc5203 100644 --- a/srcpkgs/iotop/template +++ b/srcpkgs/iotop/template @@ -1,7 +1,7 @@ # Template file for 'iotop' pkgname=iotop version=0.6 -revision=12 +revision=13 build_style=python3-module hostmakedepends="python3-setuptools" depends="${hostmakedepends}" From e4aa16d58d021ef07b513511c8054f63726e7651 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:18 -0500 Subject: [PATCH 1490/1664] instaloader: rebuild for Python 3.14 --- srcpkgs/instaloader/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/instaloader/template b/srcpkgs/instaloader/template index 57f8f72e98a10e..10afd8c83727db 100644 --- a/srcpkgs/instaloader/template +++ b/srcpkgs/instaloader/template @@ -1,7 +1,7 @@ # Template file for 'instaloader' pkgname=instaloader version=4.15 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests" From b9d656ab5a7bf143f39c6217725e051966499571 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:18 -0500 Subject: [PATCH 1491/1664] impacket: rebuild for Python 3.14 --- srcpkgs/impacket/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/impacket/template b/srcpkgs/impacket/template index a09c9849bd5af2..8ffb7c5e2eca56 100644 --- a/srcpkgs/impacket/template +++ b/srcpkgs/impacket/template @@ -1,7 +1,7 @@ # Template file for 'impacket' pkgname=impacket version=0.10.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-future python3-six python3-chardet python3-pyasn1 From cf78788910c124e8f4756c9f9e9ee6f46e3e4864 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 25 Nov 2025 10:51:19 -0500 Subject: [PATCH 1492/1664] ifstate: rebuild for Python 3.14 --- srcpkgs/ifstate/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ifstate/template b/srcpkgs/ifstate/template index 214933cf0eac0b..ae7f912d2e061c 100644 --- a/srcpkgs/ifstate/template +++ b/srcpkgs/ifstate/template @@ -1,7 +1,7 @@ # Template file for 'ifstate' pkgname=ifstate version=2.2.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3 python3-jsonschema python3-pyroute2 python3-setproctitle From 0a3f0f7762862c133cb614d8bff77e3ead3b34ad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:18 -0500 Subject: [PATCH 1493/1664] idjc: rebuild for Python 3.14 --- srcpkgs/idjc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/idjc/template b/srcpkgs/idjc/template index 713a9162b8cf11..e11a1856a759a0 100644 --- a/srcpkgs/idjc/template +++ b/srcpkgs/idjc/template @@ -1,7 +1,7 @@ # Template file for 'idjc' pkgname=idjc version=0.9.8 -revision=4 +revision=5 build_style=gnu-configure hostmakedepends="pkg-config git python3 automake gettext-devel libtool" makedepends="libvorbis-devel libogg-devel jack-devel libsamplerate-devel From 24c78aa6d5630f0c6befcdd7187e6743bb8ceee9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:18 -0500 Subject: [PATCH 1494/1664] icdiff: rebuild for Python 3.14 --- srcpkgs/icdiff/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template index 32c22c5e83630b..a33e198d014d5a 100644 --- a/srcpkgs/icdiff/template +++ b/srcpkgs/icdiff/template @@ -1,7 +1,7 @@ # Template file for 'icdiff' pkgname=icdiff version=2.0.7 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 python3-setuptools" From ec62d403833b3207fb72d19464e5232ed0b2e728 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:18 -0500 Subject: [PATCH 1495/1664] ibus: rebuild for Python 3.14 --- srcpkgs/ibus/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ibus/template b/srcpkgs/ibus/template index a0a0bbaa5e4338..9fd7ffe2ff7539 100644 --- a/srcpkgs/ibus/template +++ b/srcpkgs/ibus/template @@ -1,7 +1,7 @@ # Template file for 'ibus' pkgname=ibus version=1.5.32 -revision=2 +revision=3 build_style=gnu-configure build_helper="gir" configure_args="--enable-ui --enable-gtk3 --enable-gtk4 From 453d04d498e0284a52f960e5152a105ac804cfd8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:19 -0500 Subject: [PATCH 1496/1664] i2c-tools: rebuild for Python 3.14 --- srcpkgs/i2c-tools/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/i2c-tools/template b/srcpkgs/i2c-tools/template index 95fe6f3dac3ab3..3676e3518e94f5 100644 --- a/srcpkgs/i2c-tools/template +++ b/srcpkgs/i2c-tools/template @@ -1,7 +1,7 @@ # Template file for 'i2c-tools' pkgname=i2c-tools version=4.4 -revision=2 +revision=3 build_style=gnu-makefile build_helper=python3 make_install_args="sbindir=/usr/bin" From 0620a95da4cdd48896e39c202a1d80d86513a95c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:19 -0500 Subject: [PATCH 1497/1664] hydrus: rebuild for Python 3.14 --- srcpkgs/hydrus/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hydrus/template b/srcpkgs/hydrus/template index 55037e9eed6411..b9c6c8f2e02190 100644 --- a/srcpkgs/hydrus/template +++ b/srcpkgs/hydrus/template @@ -1,7 +1,7 @@ # Template file for 'hydrus' pkgname=hydrus version=573 -revision=4 +revision=5 pycompile_dirs="usr/lib/hydrus" hostmakedepends="python3" depends="python3 libopencv-python3 python3-BeautifulSoup4 python3-yaml From 53443f4a9fb6d2ed074cbf4eed3ebdaf85737f88 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:19 -0500 Subject: [PATCH 1498/1664] hugin: rebuild for Python 3.14 --- srcpkgs/hugin/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hugin/template b/srcpkgs/hugin/template index bb17ec3dfb0875..a1e42b70bd5a05 100644 --- a/srcpkgs/hugin/template +++ b/srcpkgs/hugin/template @@ -1,7 +1,7 @@ # Template file for 'hugin' pkgname=hugin version=2023.0.0 -revision=3 +revision=4 build_style=cmake build_helper=cmake-wxWidgets-gtk3 configure_args="-DBUILD_WITH_EPOXY=on" From cdecc568e29e706f8ea1e5df5aca388d7c3b1a63 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:19 -0500 Subject: [PATCH 1499/1664] httpie: rebuild for Python 3.14 --- srcpkgs/httpie/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template index 783191a32e7eba..0c524d833d870c 100644 --- a/srcpkgs/httpie/template +++ b/srcpkgs/httpie/template @@ -1,7 +1,7 @@ # Template file for 'httpie' pkgname=httpie version=3.2.4 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-requests python3-requests-toolbelt From 181073f2af2f71b57959bc267464abea42f12c22 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:19 -0500 Subject: [PATCH 1500/1664] hplip: update to 3.25.6. --- srcpkgs/hplip/template | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/srcpkgs/hplip/template b/srcpkgs/hplip/template index aea65d01b05362..a56daa433fbb85 100644 --- a/srcpkgs/hplip/template +++ b/srcpkgs/hplip/template @@ -1,8 +1,8 @@ # Template file for 'hplip' # When possible, keep this package in sync with hplip-plugin pkgname=hplip -version=3.24.4 -revision=2 +version=3.25.6 +revision=1 build_style=gnu-configure pycompile_dirs="usr/share/hplip" configure_args=" @@ -34,9 +34,10 @@ license="GPL-2.0-only, BSD-3-Clause, MIT" homepage="https://developers.hp.com/hp-linux-imaging-and-printing" changelog="https://developers.hp.com/hp-linux-imaging-and-printing/release_notes" distfiles="${SOURCEFORGE_SITE}/hplip/hplip/${version}/hplip-${version}.tar.gz" -checksum=5d7643831893a5e2addf9d42d581a5dbfe5aaf023626886b8762c5645da0f1fb +checksum=a6af314a7af0572f2ab6967b2fe68760e64d74628ef0e6237f8504d81047edbe -CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/libusb-1.0 -I${XBPS_CROSS_BASE}/${py3_inc}" +CFLAGS="-I${XBPS_CROSS_BASE}/${py3_inc} \ + -I${XBPS_CROSS_BASE}/usr/include/libusb-1.0 -fpermissive" pre_configure() { export AUTOMAKE='automake --foreign' From de27bb028a22fcf948ed5f10c1bd6912ab67146e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:19 -0500 Subject: [PATCH 1501/1664] hobbits: rebuild for Python 3.14 --- srcpkgs/hobbits/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hobbits/template b/srcpkgs/hobbits/template index 13810e2b9cf763..56e9a51eb1c3a0 100644 --- a/srcpkgs/hobbits/template +++ b/srcpkgs/hobbits/template @@ -1,7 +1,7 @@ # Template file for 'hobbits' pkgname=hobbits version=0.55.0 -revision=1 +revision=2 _pffft_commit=7914df2127c206ae501a6cb2950ee65a94662215 build_style=cmake configure_args="-DBUILD_VERSION=${version} $(vopt_bool simd PFFFT_ENABLE_SIMD)" From 2dd4bfd597c0e4537af59adde11a5e925ac3a21c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:19 -0500 Subject: [PATCH 1502/1664] hivex: rebuild for Python 3.14 --- srcpkgs/hivex/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hivex/template b/srcpkgs/hivex/template index 2470b1ce689d61..ac43385a1310c1 100644 --- a/srcpkgs/hivex/template +++ b/srcpkgs/hivex/template @@ -1,7 +1,7 @@ # Template file for 'hivex' pkgname=hivex version=1.3.24 -revision=4 +revision=5 build_style=gnu-configure configure_args="--disable-ocaml" # currently ocaml is broken hostmakedepends="python3 perl ruby ocaml ocaml-findlib perl-IO-stringy From 8b9739179f28ab32a26a050ab80858f2d0034d82 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:20 -0500 Subject: [PATCH 1503/1664] hg-git: rebuild for Python 3.14 --- srcpkgs/hg-git/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hg-git/template b/srcpkgs/hg-git/template index 5e8116d90b61c9..11c6a5c09bc517 100644 --- a/srcpkgs/hg-git/template +++ b/srcpkgs/hg-git/template @@ -1,7 +1,7 @@ # Template file for 'hg-git' pkgname=hg-git version=1.1.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3-dulwich mercurial" From 973a93ae91767f8b43b30000999af7b9a8f2cfe7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:20 -0500 Subject: [PATCH 1504/1664] hg-evolve: rebuild for Python 3.14 --- srcpkgs/hg-evolve/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hg-evolve/template b/srcpkgs/hg-evolve/template index c1bd9d661315e6..2caa5ec5d782af 100644 --- a/srcpkgs/hg-evolve/template +++ b/srcpkgs/hg-evolve/template @@ -1,7 +1,7 @@ # Template file for 'hg-evolve' pkgname=hg-evolve version=11.1.8 -revision=1 +revision=2 _hg_version=6.9 # sync with mercurial version in void repos build_style=python3-module build_wrksrc="hg_evolve-${version}" From 7ff8fe236977501368166265245d81c3ff92b8fb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:20 -0500 Subject: [PATCH 1505/1664] hexchat: rebuild for Python 3.14 --- srcpkgs/hexchat/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template index fa9e9fdf48730e..42924884a76548 100644 --- a/srcpkgs/hexchat/template +++ b/srcpkgs/hexchat/template @@ -1,7 +1,7 @@ # Template file for 'hexchat' pkgname=hexchat version=2.16.2 -revision=8 +revision=9 build_style=meson configure_args="-Ddbus=enabled -Dtls=enabled -Dwith-perl=/usr/bin/perl -Dwith-python=python3 From 8b2e869aabebc2ae7e0017296f41e6409ecf55dc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:20 -0500 Subject: [PATCH 1506/1664] heisenbridge: rebuild for Python 3.14 --- srcpkgs/heisenbridge/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/heisenbridge/template b/srcpkgs/heisenbridge/template index 178422d2b5e1e3..d5d46ccc41472e 100644 --- a/srcpkgs/heisenbridge/template +++ b/srcpkgs/heisenbridge/template @@ -1,7 +1,7 @@ # Template file for 'heisenbridge' pkgname=heisenbridge version=1.15.2 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-irc python3-ruamel.yaml python3-mautrix python3-socks python3-aiohttp python3-async-timeout" From e67d8155b6a4d116e65e4680839a541ed0b3622a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:20 -0500 Subject: [PATCH 1507/1664] hatch: rebuild for Python 3.14 --- srcpkgs/hatch/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hatch/template b/srcpkgs/hatch/template index 46e9e4d1259f73..368a698fbea195 100644 --- a/srcpkgs/hatch/template +++ b/srcpkgs/hatch/template @@ -1,7 +1,7 @@ # Template file for 'hatch' pkgname=hatch version=1.6.3 -revision=4 +revision=5 build_style=python3-pep517 # ignore backend tests, because updating hatchling when there is no new hatch # version yet breaks these in hatch. From 6f1c8f17215ec7d0e5e316cca1236acaacc58894 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:20 -0500 Subject: [PATCH 1508/1664] hamlib: rebuild for Python 3.14 --- srcpkgs/hamlib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hamlib/template b/srcpkgs/hamlib/template index f1283d730b5bbf..28af9c8e216cf4 100644 --- a/srcpkgs/hamlib/template +++ b/srcpkgs/hamlib/template @@ -1,7 +1,7 @@ # Template file for 'hamlib' pkgname=hamlib version=4.6.5 -revision=1 +revision=2 build_style=gnu-configure configure_args="--disable-static --with-perl-binding --with-python-binding --with-tcl-binding --with-xml-support" From 681ba94dd622ae74ab28a4d899c2a717be22e1d8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:21 -0500 Subject: [PATCH 1509/1664] gwe: rebuild for Python 3.14 --- srcpkgs/gwe/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gwe/template b/srcpkgs/gwe/template index 862acee322be22..ccdfbd721a8b9b 100644 --- a/srcpkgs/gwe/template +++ b/srcpkgs/gwe/template @@ -1,7 +1,7 @@ # Template file for 'gwe' pkgname=gwe version=0.15.5 -revision=3 +revision=4 build_style=meson hostmakedepends="gobject-introspection pkg-config ninja appstream-glib glib-devel" makedepends="gtk+3-devel python3-devel" From 5ecddb6dc8519bc7da940f3562259eedc7298f76 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:21 -0500 Subject: [PATCH 1510/1664] gufw: rebuild for Python 3.14 --- srcpkgs/gufw/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template index b1d0e62cf6809c..2e651f06894a9f 100644 --- a/srcpkgs/gufw/template +++ b/srcpkgs/gufw/template @@ -1,7 +1,7 @@ # Template file for 'gufw' pkgname=gufw version=24.04 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools python3-distutils-extra intltool" depends="python3-gobject net-tools ufw gtk+3 libwebkit2gtk41" From a3ae6d8578e00b39727c8f745c29cc97c2f8c337 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:21 -0500 Subject: [PATCH 1511/1664] guake: rebuild for Python 3.14 --- srcpkgs/guake/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template index ae62cd602a5950..7c6ecda01073b8 100644 --- a/srcpkgs/guake/template +++ b/srcpkgs/guake/template @@ -1,7 +1,7 @@ # Template file for 'guake' pkgname=guake version=3.10 -revision=2 +revision=3 build_style=python3-module hostmakedepends="gettext python3-setuptools_scm python3-pbr python3-wheel" makedepends="python3-devel python3-pbr" From 2ad62d19c0dfa279857aaa9464750ac3c3d75ed5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:21 -0500 Subject: [PATCH 1512/1664] gscreenshot: rebuild for Python 3.14 --- srcpkgs/gscreenshot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gscreenshot/template b/srcpkgs/gscreenshot/template index 053f25521c55a6..27d4919fc6785b 100644 --- a/srcpkgs/gscreenshot/template +++ b/srcpkgs/gscreenshot/template @@ -1,7 +1,7 @@ # Template file for 'gscreenshot' pkgname=gscreenshot version=3.8.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools gettext go-md2man" # refer to https://github.com/thenaterhood/gscreenshot#installation From 4bfdb189a9ce4139e9d84b1a7cf9d8a97e48a4bc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:21 -0500 Subject: [PATCH 1513/1664] grip: rebuild for Python 3.14 --- srcpkgs/grip/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/grip/template b/srcpkgs/grip/template index a1fa43ccea43ec..7570828cd2fb0e 100644 --- a/srcpkgs/grip/template +++ b/srcpkgs/grip/template @@ -1,7 +1,7 @@ # Template file for 'grip' pkgname=grip version=4.6.1 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-docopt python3-Flask python3-Markdown python3-path-and-address From 2f461f741845f0da19cbbfe832f3c65fe50c32a0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:21 -0500 Subject: [PATCH 1514/1664] greg: rebuild for Python 3.14 --- srcpkgs/greg/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template index fc324b54d22143..e62a59eb48de56 100644 --- a/srcpkgs/greg/template +++ b/srcpkgs/greg/template @@ -1,7 +1,7 @@ # Template file for 'greg' pkgname=greg version=0.4.7 -revision=11 +revision=12 build_style=python3-module pycompile_module="greg" hostmakedepends="python3-setuptools" From eab97891a502d7164d3214d4a26ea19e1902d586 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:21 -0500 Subject: [PATCH 1515/1664] gramps: rebuild for Python 3.14 --- srcpkgs/gramps/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template index e17407cb9f0c88..1697005cd1105f 100644 --- a/srcpkgs/gramps/template +++ b/srcpkgs/gramps/template @@ -1,7 +1,7 @@ # Template file for 'gramps' pkgname=gramps version=6.0.5 -revision=1 +revision=2 build_style=python3-module hostmakedepends="pkg-config intltool python3-setuptools" depends="gtk+3 python3-gobject python3-bsddb3 python3-PyICU python3-jsonschema python3-lxml python3-imagesize python3-orjson" From eabdae5a166470903f5f8b9f0d81f20cd608852b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:22 -0500 Subject: [PATCH 1516/1664] gpsd: rebuild for Python 3.14 --- srcpkgs/gpsd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gpsd/template b/srcpkgs/gpsd/template index d838956e327da2..1b4aac9c6bf3f8 100644 --- a/srcpkgs/gpsd/template +++ b/srcpkgs/gpsd/template @@ -1,7 +1,7 @@ # Template file for 'gpsd' pkgname=gpsd version=3.26.1 -revision=1 +revision=2 build_style=scons make_build_args="dbus_export=0 gpsd_user=gpsd gpsd_group=gpsd sbindir=/usr/bin CC=${CC} qt_versioned=5" From 02b03b7bafa057bf07b1a7448487bd525cf63504 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:22 -0500 Subject: [PATCH 1517/1664] gpodder: rebuild for Python 3.14 --- srcpkgs/gpodder/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template index a361eaf582ed9a..2a981f847b4f25 100644 --- a/srcpkgs/gpodder/template +++ b/srcpkgs/gpodder/template @@ -1,7 +1,7 @@ # Template file for 'gpodder' pkgname=gpodder version=3.11.5 -revision=1 +revision=2 hostmakedepends="python3-setuptools python3-build python3-installer intltool" depends="eyeD3 gtk+3 hicolor-icon-theme python3-dbus python3-gobject python3-html5lib python3-mygpoclient python3-podcastparser python3-mutagen From df87a33f56859a930b71c36adad8d552d4ec4830 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:22 -0500 Subject: [PATCH 1518/1664] gom: rebuild for Python 3.14 --- srcpkgs/gom/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gom/template b/srcpkgs/gom/template index 38f3a81a417711..7e64c14760c5b5 100644 --- a/srcpkgs/gom/template +++ b/srcpkgs/gom/template @@ -1,7 +1,7 @@ # Template file for 'gom' pkgname=gom version=0.4 -revision=6 +revision=7 build_style=meson build_helper="gir" configure_args="-Denable-introspection=$(vopt_if gir true false) From ead2ede35a00039d0e3d1aaa289f77b2ec31f047 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:22 -0500 Subject: [PATCH 1519/1664] gnuradio-rds: rebuild for Python 3.14 --- srcpkgs/gnuradio-rds/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnuradio-rds/template b/srcpkgs/gnuradio-rds/template index 1d3543d2bdc00a..eea8dacd7b3625 100644 --- a/srcpkgs/gnuradio-rds/template +++ b/srcpkgs/gnuradio-rds/template @@ -1,7 +1,7 @@ # Template file for 'gnuradio-rds' pkgname=gnuradio-rds version=3.10 -revision=16 +revision=17 build_style=cmake configure_args="-Dpybind11_DIR=${XBPS_CROSS_BASE}/${py3_sitelib}/pybind11/share/cmake/pybind11" hostmakedepends="pkg-config gnuradio python3" From 1ea34e14e51cbb496702424f574006738ff19411 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:22 -0500 Subject: [PATCH 1520/1664] gnuradio-osmosdr: rebuild for Python 3.14 --- srcpkgs/gnuradio-osmosdr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnuradio-osmosdr/template b/srcpkgs/gnuradio-osmosdr/template index 16a9fd84294b3c..223ca24eedef19 100644 --- a/srcpkgs/gnuradio-osmosdr/template +++ b/srcpkgs/gnuradio-osmosdr/template @@ -1,7 +1,7 @@ # Template file for 'gnuradio-osmosdr' pkgname=gnuradio-osmosdr version=0.2.4 -revision=11 +revision=12 build_style=cmake configure_args="-Dpybind11_DIR=${XBPS_CROSS_BASE}/${py3_sitelib}/pybind11/share/cmake/pybind11" hostmakedepends="pkg-config gnuradio python3" From 586e8a7fc519ec952965211f64819530a685bb59 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:22 -0500 Subject: [PATCH 1521/1664] gnuradio-nrsc5: rebuild for Python 3.14 --- srcpkgs/gnuradio-nrsc5/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnuradio-nrsc5/template b/srcpkgs/gnuradio-nrsc5/template index 7711161c5a8bfd..5718c9177fd5e6 100644 --- a/srcpkgs/gnuradio-nrsc5/template +++ b/srcpkgs/gnuradio-nrsc5/template @@ -1,7 +1,7 @@ # Template file for 'gnuradio-nrsc5' pkgname=gnuradio-nrsc5 version=2.0.0 -revision=10 +revision=11 build_style=cmake make_cmd=make configure_args="-Dpybind11_DIR=${XBPS_CROSS_BASE}/${py3_sitelib}/pybind11/share/cmake/pybind11" From 8999b9d029dcf9e5ed89f29aaddd1c237c05262e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:22 -0500 Subject: [PATCH 1522/1664] gnucash: rebuild for Python 3.14 --- srcpkgs/gnucash/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnucash/template b/srcpkgs/gnucash/template index 9700952d715f7c..2f5927185bbb8a 100644 --- a/srcpkgs/gnucash/template +++ b/srcpkgs/gnucash/template @@ -1,7 +1,7 @@ # Template file for 'gnucash' pkgname=gnucash version=5.12 -revision=3 +revision=4 build_style=cmake make_check_target=check configure_args="-DWITH_PYTHON=1 -DCOMPILE_GSCHEMAS=OFF" From b053e842d14aa494182a0988ce0b564dbb5bb756 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:23 -0500 Subject: [PATCH 1523/1664] gnubg: rebuild for Python 3.14 --- srcpkgs/gnubg/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnubg/template b/srcpkgs/gnubg/template index d9f5efb8f15efa..664c74e7b6eba9 100644 --- a/srcpkgs/gnubg/template +++ b/srcpkgs/gnubg/template @@ -1,7 +1,7 @@ # Template file for 'gnubg' pkgname=gnubg version=1.08.003 -revision=5 +revision=6 build_style=gnu-configure configure_args="--disable-cputest ax_cv_gcc_x86_cpuid_0x00000001=6000000 --with-gtk3 --localedir=/usr/share/locale" From a358882772d9f7b3e908d2545cffb14229e1f5d1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:23 -0500 Subject: [PATCH 1524/1664] gns3-server: rebuild for Python 3.14 --- srcpkgs/gns3-server/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gns3-server/template b/srcpkgs/gns3-server/template index 03359a35008115..9ff2788002c8c5 100644 --- a/srcpkgs/gns3-server/template +++ b/srcpkgs/gns3-server/template @@ -1,7 +1,7 @@ # Template file for 'gns3-server' pkgname=gns3-server version=2.2.54 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-jsonschema python3-aiohttp python3-aiohttp-cors From 7d44b52b1bc3643baafa9f0ff2475cc9ed7c78b3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:23 -0500 Subject: [PATCH 1525/1664] gns3-gui: rebuild for Python 3.14 --- srcpkgs/gns3-gui/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gns3-gui/template b/srcpkgs/gns3-gui/template index cdf802914f2662..582f647c77f256 100644 --- a/srcpkgs/gns3-gui/template +++ b/srcpkgs/gns3-gui/template @@ -1,7 +1,7 @@ # Template file for 'gns3-gui' pkgname=gns3-gui version=2.2.54 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-psutil python3-jsonschema From 57154082cb13d0a8aecc169b6a3ace89542e16e1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:23 -0500 Subject: [PATCH 1526/1664] gnome-tweaks: rebuild for Python 3.14 --- srcpkgs/gnome-tweaks/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnome-tweaks/template b/srcpkgs/gnome-tweaks/template index bbe918bc7999a7..42ea19a3e79dfd 100644 --- a/srcpkgs/gnome-tweaks/template +++ b/srcpkgs/gnome-tweaks/template @@ -1,7 +1,7 @@ # Template file for 'gnome-tweaks' pkgname=gnome-tweaks version=46.1 -revision=2 +revision=3 build_style=meson hostmakedepends="pkg-config gettext desktop-file-utils gtk4-update-icon-cache" makedepends="gsettings-desktop-schemas-devel libadwaita-devel From acfd8aac5584283887b240f347d84a2baf2f6527 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:23 -0500 Subject: [PATCH 1527/1664] gnome-secrets: rebuild for Python 3.14 --- srcpkgs/gnome-secrets/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnome-secrets/template b/srcpkgs/gnome-secrets/template index 3dac89c57bf27c..42336f2a054b70 100644 --- a/srcpkgs/gnome-secrets/template +++ b/srcpkgs/gnome-secrets/template @@ -1,7 +1,7 @@ # Template file for 'gnome-secrets' pkgname=gnome-secrets version=8.0 -revision=2 +revision=3 build_style=meson hostmakedepends="pkg-config gettext gobject-introspection python3-pykeepass python3-pyotp glib-devel desktop-file-utils gtk-update-icon-cache From 95e3887f6cc7ef5329dcaa87d6fffa0f0df16ab9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:23 -0500 Subject: [PATCH 1528/1664] gnome-passbook: rebuild for Python 3.14 --- srcpkgs/gnome-passbook/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnome-passbook/template b/srcpkgs/gnome-passbook/template index 2f1cbf20611332..12b3dcac806099 100644 --- a/srcpkgs/gnome-passbook/template +++ b/srcpkgs/gnome-passbook/template @@ -1,7 +1,7 @@ # Template file for 'gnome-passbook' pkgname=gnome-passbook version=0.8 -revision=7 +revision=8 _release_hash=5fea4e4fc19f1732d3a5270bc43eb8e9 build_style=meson hostmakedepends="glib-devel pkg-config gettext" From 59fec7037047dfa93bc47f7be71e34db738d2074 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:23 -0500 Subject: [PATCH 1529/1664] gnome-music: rebuild for Python 3.14 --- srcpkgs/gnome-music/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnome-music/template b/srcpkgs/gnome-music/template index 1f66974979f8f1..5cd2a87f6806c0 100644 --- a/srcpkgs/gnome-music/template +++ b/srcpkgs/gnome-music/template @@ -1,7 +1,7 @@ # Template file for 'gnome-music' pkgname=gnome-music version=48.0 -revision=1 +revision=2 build_helper="gir" build_style=meson hostmakedepends="gettext glib-devel itstool pkg-config From 58b32224a5af8f29ba0f235a631f223ea2e322c0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:24 -0500 Subject: [PATCH 1530/1664] gnome-browser-connector: rebuild for Python 3.14 --- srcpkgs/gnome-browser-connector/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnome-browser-connector/template b/srcpkgs/gnome-browser-connector/template index 51ccb3114cda52..c9440895282c79 100644 --- a/srcpkgs/gnome-browser-connector/template +++ b/srcpkgs/gnome-browser-connector/template @@ -1,7 +1,7 @@ # Template file for 'gnome-browser-connector' pkgname=gnome-browser-connector version=42.1 -revision=4 +revision=5 build_style=meson hostmakedepends="python3-gobject" depends="python3-gobject dbus gnome-shell" From 0217e940aa416385a697ff8a41a2dbb98f3809b4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:24 -0500 Subject: [PATCH 1531/1664] glances: rebuild for Python 3.14 --- srcpkgs/glances/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template index 2f2647c8bd68d3..68c237985f0a2e 100644 --- a/srcpkgs/glances/template +++ b/srcpkgs/glances/template @@ -1,7 +1,7 @@ # Template file for 'glances' pkgname=glances version=4.3.3 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-defusedxml python3-packaging python3-psutil python3-shtab" From 1d69980c33bdad31e160d7e677d7004f8ec13133 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:24 -0500 Subject: [PATCH 1532/1664] gitg: rebuild for Python 3.14 --- srcpkgs/gitg/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gitg/template b/srcpkgs/gitg/template index bd5d64782af48a..40b2d8848b697f 100644 --- a/srcpkgs/gitg/template +++ b/srcpkgs/gitg/template @@ -1,7 +1,7 @@ # Template file for 'gitg' pkgname=gitg version=44 -revision=4 +revision=5 build_style=meson build_helper="gir qemu" hostmakedepends="desktop-file-utils gettext glib-devel gtk-update-icon-cache From c9e57ef4903f5cfc7903a2884cc4fcd1133372b0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:24 -0500 Subject: [PATCH 1533/1664] git-revise: rebuild for Python 3.14 --- srcpkgs/git-revise/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/git-revise/template b/srcpkgs/git-revise/template index 7bd9dfd3e0661b..f73359d13d39fa 100644 --- a/srcpkgs/git-revise/template +++ b/srcpkgs/git-revise/template @@ -1,7 +1,7 @@ # Template file for 'git-revise' pkgname=git-revise version=0.7.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3 python3-setuptools" depends="git python3-setuptools" From 4060082e2235e395b9fad2bd14ca6bbba21f8e3a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:24 -0500 Subject: [PATCH 1534/1664] git-review: rebuild for Python 3.14 --- srcpkgs/git-review/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/git-review/template b/srcpkgs/git-review/template index f4214de7b45785..07143e5c8830cb 100644 --- a/srcpkgs/git-review/template +++ b/srcpkgs/git-review/template @@ -1,7 +1,7 @@ # Template file for 'git-review' pkgname=git-review version=1.28.0 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools python3-pbr" depends="python3-requests" From 9312be446ff4f5067d92c3791c5be805a35c3a3e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:24 -0500 Subject: [PATCH 1535/1664] git-filter-repo: rebuild for Python 3.14 --- srcpkgs/git-filter-repo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/git-filter-repo/template b/srcpkgs/git-filter-repo/template index 110ab5f8cd498d..c76e99467f79b5 100644 --- a/srcpkgs/git-filter-repo/template +++ b/srcpkgs/git-filter-repo/template @@ -1,7 +1,7 @@ # Template file for 'git-filter-repo' pkgname=git-filter-repo version=2.34.0 -revision=4 +revision=5 depends="git python3" checkdepends="git python3 perl rsync dos2unix" short_desc="Versatile tool for rewriting git history" From 29d4ad802a0a2bb9eb81cbbd4732edb3e5849328 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:24 -0500 Subject: [PATCH 1536/1664] git-delete-merged-branches: rebuild for Python 3.14 --- srcpkgs/git-delete-merged-branches/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/git-delete-merged-branches/template b/srcpkgs/git-delete-merged-branches/template index 18ed32b9d0bbe5..6f693a72e0d17f 100644 --- a/srcpkgs/git-delete-merged-branches/template +++ b/srcpkgs/git-delete-merged-branches/template @@ -1,7 +1,7 @@ # Template file for 'git-delete-merged-branches' pkgname=git-delete-merged-branches version=7.5.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3-colorama python3-prompt_toolkit" From f896bc30b27f7257db7b48b6c220120889b35bb6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:25 -0500 Subject: [PATCH 1537/1664] git-cola: rebuild for Python 3.14 --- srcpkgs/git-cola/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/git-cola/template b/srcpkgs/git-cola/template index b9ef60fbf9a511..231efa5efcf2fa 100644 --- a/srcpkgs/git-cola/template +++ b/srcpkgs/git-cola/template @@ -1,7 +1,7 @@ # Template file for 'git-cola' pkgname=git-cola version=4.16.1 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3 python3-build python3-packaging python3-setuptools python3-setuptools_scm python3-wheel" depends="git qt6-svg python3-pyqt6-gui python3-pyqt6-widgets From 976ad539726db6b59ef0b256913cf7da4e4dfd99 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:25 -0500 Subject: [PATCH 1538/1664] gfeeds: rebuild for Python 3.14 --- srcpkgs/gfeeds/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gfeeds/template b/srcpkgs/gfeeds/template index 8bf1bac3135752..50543e00e5c268 100644 --- a/srcpkgs/gfeeds/template +++ b/srcpkgs/gfeeds/template @@ -1,7 +1,7 @@ # Template file for 'gfeeds' pkgname=gfeeds version=2.2.0 -revision=2 +revision=3 build_style=meson build_helper=gir hostmakedepends="blueprint-compiler gettext glib-devel gtk-update-icon-cache From 5e954708ac61ef7c3ec6785eb4745d0ee3762c16 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:25 -0500 Subject: [PATCH 1539/1664] geis: rebuild for Python 3.14 --- srcpkgs/geis/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/geis/template b/srcpkgs/geis/template index 39d4402e1cb0db..ef45ae4d430ecb 100644 --- a/srcpkgs/geis/template +++ b/srcpkgs/geis/template @@ -1,7 +1,7 @@ # Template file for 'geis' pkgname=geis version=2.2.17 -revision=13 +revision=14 build_style="gnu-configure" configure_args="--disable-static" hostmakedepends="pkg-config python3-devel" From 5e6bc14b8af1ef395246052cb2da6960a8428707 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:25 -0500 Subject: [PATCH 1540/1664] gef: rebuild for Python 3.14 --- srcpkgs/gef/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gef/template b/srcpkgs/gef/template index 85261020bbc1ef..0be9769931340f 100644 --- a/srcpkgs/gef/template +++ b/srcpkgs/gef/template @@ -1,7 +1,7 @@ # Template file for 'gef' pkgname=gef version=2025.01 -revision=1 +revision=2 pycompile_dirs="usr/lib/gef" depends="keystone-python3 capstone-python3 unicorn-python3 python3-Ropper gdb binutils" From 4689280f3d14952073f289990ea97c9f7af749c0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:25 -0500 Subject: [PATCH 1541/1664] gdown: rebuild for Python 3.14 --- srcpkgs/gdown/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gdown/template b/srcpkgs/gdown/template index 2164246a622574..e1eb63a5d1b9cc 100644 --- a/srcpkgs/gdown/template +++ b/srcpkgs/gdown/template @@ -1,7 +1,7 @@ # Template file for 'gdown' pkgname=gdown version=5.2.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs hatch-fancy-pypi-readme" depends="python3-filelock python3-requests python3-six python3-tqdm From c3e21d41d5c6f13f6d1a647c81f6101e5b4767ef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:25 -0500 Subject: [PATCH 1542/1664] gdm-settings: rebuild for Python 3.14 --- srcpkgs/gdm-settings/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gdm-settings/template b/srcpkgs/gdm-settings/template index e94397d4ea3ce9..992dd2b54cebe5 100644 --- a/srcpkgs/gdm-settings/template +++ b/srcpkgs/gdm-settings/template @@ -1,7 +1,7 @@ # Template file for 'gdm-settings' pkgname=gdm-settings version=4.1 -revision=2 +revision=3 build_style=meson build_helper=gir hostmakedepends="pkg-config gettext blueprint-compiler desktop-file-utils gtk-update-icon-cache gtk4 libadwaita glib-devel" From 19880a482a24d37cd4deef01fd7655add24d6050 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:25 -0500 Subject: [PATCH 1543/1664] gcovr: rebuild for Python 3.14 --- srcpkgs/gcovr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template index cf0245e231cb94..35c82d821646ed 100644 --- a/srcpkgs/gcovr/template +++ b/srcpkgs/gcovr/template @@ -1,7 +1,7 @@ # Template file for 'gcovr' pkgname=gcovr version=7.2 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-Jinja2 python3-lxml python3-Pygments python3-colorlog" From 0435671e4320b895378913c76ae153742953fac8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:26 -0500 Subject: [PATCH 1544/1664] gcalcli: rebuild for Python 3.14 --- srcpkgs/gcalcli/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gcalcli/template b/srcpkgs/gcalcli/template index 30345411faff89..c8766a755d2110 100644 --- a/srcpkgs/gcalcli/template +++ b/srcpkgs/gcalcli/template @@ -1,7 +1,7 @@ # Template file for 'gcalcli' pkgname=gcalcli version=4.3.0 -revision=3 +revision=4 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-dateutil python3-google-api-python-client From 07648cd55ba0e643c4bb4fc2a2fad053519ec235 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:26 -0500 Subject: [PATCH 1545/1664] gaupol: rebuild for Python 3.14 --- srcpkgs/gaupol/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gaupol/template b/srcpkgs/gaupol/template index b7e01fb9a22e9d..f5fe6385656123 100644 --- a/srcpkgs/gaupol/template +++ b/srcpkgs/gaupol/template @@ -1,7 +1,7 @@ # Template file for 'gaupol' pkgname=gaupol version=1.15 -revision=1 +revision=2 build_style=python3-module hostmakedepends="gettext python3-setuptools" makedepends="gstreamer1-devel python3-devel" From 06c54e4a012622b8d6d82820a9601a1de3a72198 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:26 -0500 Subject: [PATCH 1546/1664] gammastep: rebuild for Python 3.14 --- srcpkgs/gammastep/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gammastep/template b/srcpkgs/gammastep/template index f537dd6088d5e9..e0fe73b94b8861 100644 --- a/srcpkgs/gammastep/template +++ b/srcpkgs/gammastep/template @@ -1,7 +1,7 @@ # Template file for 'gammastep' pkgname=gammastep version=2.0.9 -revision=4 +revision=5 build_style=gnu-configure configure_args="--enable-gui --enable-drm --enable-vidmode --enable-randr --enable-wayland --enable-apparmor --with-systemduserunitdir=no From 65309a163d8b925282a7f0f888053d6e2ccf53c2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:26 -0500 Subject: [PATCH 1547/1664] gallery-dl: rebuild for Python 3.14 --- srcpkgs/gallery-dl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gallery-dl/template b/srcpkgs/gallery-dl/template index 25e7dde2f925a7..f8ad482c341619 100644 --- a/srcpkgs/gallery-dl/template +++ b/srcpkgs/gallery-dl/template @@ -1,7 +1,7 @@ # Template file for 'gallery-dl' pkgname=gallery-dl version=1.30.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools" depends="python3-requests" From aa7e51736f1b3178a17597712c6451bfcca31ba0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:26 -0500 Subject: [PATCH 1548/1664] gajim: rebuild for Python 3.14 --- srcpkgs/gajim/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template index 40ceb0345bc7f3..3d8227a256d4d5 100644 --- a/srcpkgs/gajim/template +++ b/srcpkgs/gajim/template @@ -1,7 +1,7 @@ # Template file for 'gajim' pkgname=gajim version=2.2.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="gettext python3-wheel" depends="farstream gsound gst-libav gst-plugins-base1 gst-plugins-ugly1 From 396be490ac83ca3ff6ead0f008b8377e17c09b33 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:26 -0500 Subject: [PATCH 1549/1664] frr: rebuild for Python 3.14 --- srcpkgs/frr/template | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/srcpkgs/frr/template b/srcpkgs/frr/template index caedf801c89611..3cce1d13242e72 100644 --- a/srcpkgs/frr/template +++ b/srcpkgs/frr/template @@ -1,7 +1,7 @@ # Template file for 'frr' pkgname=frr version=7.5 -revision=7 +revision=8 build_style=gnu-configure # chroot-texinfo is not able to build frr's docs configure_args="--disable-doc @@ -27,8 +27,8 @@ python_version=3 system_groups="_frrvty" system_accounts="_frr" _frr_groups="_frrvty" -_daemons="zebra staticd bgpd ospfd ospf6d ripd ripngd isisd pimd ldpd nhrpd - eigrpd babeld sharpd pbrd bfdd fabricd" + +export CFLAGS="-fpermissive" if [ "$XBPS_TARGET_LIBC" = "musl" ]; then makedepends+=" musl-legacy-compat" @@ -66,6 +66,12 @@ post_install() { vsv frr-generic vmkdir etc/frr 0755 vinstall /dev/null 0640 etc/frr vtysh.conf + + local _daemons=" + zebra staticd bgpd ospfd ospf6d ripd ripngd isisd pimd + ldpd nhrpd eigrpd babeld sharpd pbrd bfdd fabricd + " + for daemon in ${_daemons}; do vinstall /dev/null 0640 etc/frr "${daemon}.conf" vsv "${daemon}" From da23077b55ca7651503d5fa8457a6c17716ddc92 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:26 -0500 Subject: [PATCH 1550/1664] freeorion: rebuild for Python 3.14 --- srcpkgs/freeorion/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/freeorion/template b/srcpkgs/freeorion/template index f0df21705284ec..1e81cf8c473bfa 100644 --- a/srcpkgs/freeorion/template +++ b/srcpkgs/freeorion/template @@ -1,7 +1,7 @@ # Template file for 'freeorion' pkgname=freeorion version=0.5.1.1 -revision=3 +revision=4 build_style=cmake hostmakedepends="cppcheck doxygen python3-pycodestyle" makedepends="boost-devel-minimal boost-python3 From 62f4f27ec85189698c5ea2257859b5845a965ac0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:27 -0500 Subject: [PATCH 1551/1664] freecad: rebuild for Python 3.14 --- srcpkgs/freecad/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/freecad/template b/srcpkgs/freecad/template index 4f06da2ae643fb..6c44af45f5467a 100644 --- a/srcpkgs/freecad/template +++ b/srcpkgs/freecad/template @@ -1,7 +1,7 @@ # Template file for 'freecad' pkgname=freecad version=1.0.2 -revision=6 +revision=7 _pycxx_ver=7.1.8 _ondsel_ver=09d6175a2ba69e7016fcecc4f384946a2f84f92d build_style=cmake From 0cbbbd00c44b9cf1dd8c01eb87a4a39078108de7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:27 -0500 Subject: [PATCH 1552/1664] flinks: rebuild for Python 3.14 --- srcpkgs/flinks/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/flinks/template b/srcpkgs/flinks/template index f44feaa9985187..5f04ace84a951f 100644 --- a/srcpkgs/flinks/template +++ b/srcpkgs/flinks/template @@ -1,7 +1,7 @@ # Template file for 'flinks' pkgname=flinks version=0.5.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="lynx python3" From 60fc33991764ab0de7d7f659974a11aa8a538cba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:27 -0500 Subject: [PATCH 1553/1664] fierce: rebuild for Python 3.14 --- srcpkgs/fierce/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template index ca3dc48a4968e0..fe1b16b74e1167 100644 --- a/srcpkgs/fierce/template +++ b/srcpkgs/fierce/template @@ -1,7 +1,7 @@ # Template file for 'fierce' pkgname=fierce version=1.6.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-dnspython" From aee35a16ce35614a6b29de6c1479a2bbd22a9d80 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:27 -0500 Subject: [PATCH 1554/1664] fetchmail: rebuild for Python 3.14 --- srcpkgs/fetchmail/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/fetchmail/template b/srcpkgs/fetchmail/template index fe8c69f4eaf573..171f1c8c575574 100644 --- a/srcpkgs/fetchmail/template +++ b/srcpkgs/fetchmail/template @@ -1,7 +1,7 @@ # Template file for 'fetchmail' pkgname=fetchmail version=6.4.30 -revision=5 +revision=6 build_style=gnu-configure configure_args="--with-ssl=${XBPS_CROSS_BASE}/usr" hostmakedepends="python3 pkg-config" From 171fba4d78508d1d8e0b84e4c903ed277d831d97 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:27 -0500 Subject: [PATCH 1555/1664] fenrir: rebuild for Python 3.14 --- srcpkgs/fenrir/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/fenrir/template b/srcpkgs/fenrir/template index c767449355ec46..254481807d0c91 100644 --- a/srcpkgs/fenrir/template +++ b/srcpkgs/fenrir/template @@ -1,7 +1,7 @@ # Template file for 'fenrir' pkgname=fenrir version=2025.04.28 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3 python3-setuptools" depends="python3-evdev python3-daemonize python3-dbus python3-pyudev @@ -13,7 +13,7 @@ maintainer="Michael Taboada " license="LGPL-3.0-only" homepage="https://git.stormux.org/storm/fenrir" distfiles="https://git.stormux.org/storm/fenrir/archive/${version}.tar.gz" -checksum=4b3c4bb51b3872867831e60fe81c782df663094607441b96ce7392899b7e552d +checksum=67c34b5ff5d4e67a976fd6339535d8f3d108cf81fa55314198e17f9bbda99605 conf_files="/etc/fenrirscreenreader/settings/*.conf" post_install() { From 259898c21e5f873cdba280f4abd4d258766676db Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:27 -0500 Subject: [PATCH 1556/1664] fava: rebuild for Python 3.14 --- srcpkgs/fava/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template index 7f9708f656401f..ceabbb20e012ba 100644 --- a/srcpkgs/fava/template +++ b/srcpkgs/fava/template @@ -1,7 +1,7 @@ # Template file for 'fava' pkgname=fava version=1.27.3 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel python3-Babel" depends="python3-Babel python3-Cheroot python3-Flask-Babel python3-Flask From 6fd9095faed28c13ed8e2cfcb8b814715005b83e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:27 -0500 Subject: [PATCH 1557/1664] falkon: rebuild for Python 3.14 --- srcpkgs/falkon/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/falkon/template b/srcpkgs/falkon/template index e6b126eedea1c2..0c8d43268d5e30 100644 --- a/srcpkgs/falkon/template +++ b/srcpkgs/falkon/template @@ -1,7 +1,7 @@ # Template file for 'falkon' pkgname=falkon version=25.08.3 -revision=2 +revision=3 build_style=cmake _llvmver=21 configure_args=" From e2cbe6bafbb591eabe6a9f12d30a6c676d721fcb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:28 -0500 Subject: [PATCH 1558/1664] fail2ban: rebuild for Python 3.14 --- srcpkgs/fail2ban/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template index 82db4745a2f5d7..e5c8f62e3fabf5 100644 --- a/srcpkgs/fail2ban/template +++ b/srcpkgs/fail2ban/template @@ -1,7 +1,7 @@ # Template file for 'fail2ban' pkgname=fail2ban version=1.1.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="pkg-config python3-setuptools" depends="python3-pyasynchat" From 489fbf91c1d807b2854a01e5593f4cd7bffc1b8c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:28 -0500 Subject: [PATCH 1559/1664] evemu: rebuild for Python 3.14 --- srcpkgs/evemu/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/evemu/template b/srcpkgs/evemu/template index 6bea4fbf7d0256..aa701bfdc5b09d 100644 --- a/srcpkgs/evemu/template +++ b/srcpkgs/evemu/template @@ -1,7 +1,7 @@ # Template file for 'evemu' pkgname=evemu version=2.7.0 -revision=5 +revision=6 build_style=gnu-configure hostmakedepends="pkg-config python3 asciidoc xmlto" makedepends="libevdev-devel" From 51f442e640eaa79ed6395e47f4fdb7e3f42f8c24 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:28 -0500 Subject: [PATCH 1560/1664] etesync-dav: rebuild for Python 3.14 --- srcpkgs/etesync-dav/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/etesync-dav/template b/srcpkgs/etesync-dav/template index c455d9ddacba3e..a374a3b6756d22 100644 --- a/srcpkgs/etesync-dav/template +++ b/srcpkgs/etesync-dav/template @@ -1,7 +1,7 @@ # Template file for 'etesync-dav' pkgname=etesync-dav version=0.32.1 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-etesync python3-etebase radicale2 python3-Flask python3-Flask-WTF" From 8854b4532b4465dc64919fc6bcd3da40da9ce52a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:28 -0500 Subject: [PATCH 1561/1664] etcetera: rebuild for Python 3.14 --- srcpkgs/etcetera/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/etcetera/template b/srcpkgs/etcetera/template index e33bba939c3e8f..5d42cf52364467 100644 --- a/srcpkgs/etcetera/template +++ b/srcpkgs/etcetera/template @@ -1,7 +1,7 @@ # Template file for 'etcetera' pkgname=etcetera version=1.0 -revision=6 +revision=7 pycompile_dirs="usr/lib/etcetera" depends="python3" short_desc="Config file management with a touch of wisdom" From 658e612dec7d53ab83d958db2911196e6b6b92a6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:28 -0500 Subject: [PATCH 1562/1664] esptool: rebuild for Python 3.14 --- srcpkgs/esptool/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/esptool/template b/srcpkgs/esptool/template index 66d32ee9a2f0c8..3409f62bc808f0 100644 --- a/srcpkgs/esptool/template +++ b/srcpkgs/esptool/template @@ -1,7 +1,7 @@ # Template file for 'esptool' pkgname=esptool version=4.5.1 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-bitstring python3-cryptography python3-ecdsa python3-pyserial From 2182c5b6f6533f951a13d8301ca2384e94d9852c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:28 -0500 Subject: [PATCH 1563/1664] epy: rebuild for Python 3.14 --- srcpkgs/epy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/epy/template b/srcpkgs/epy/template index 71d41859f96d7f..195075451cb50a 100644 --- a/srcpkgs/epy/template +++ b/srcpkgs/epy/template @@ -1,7 +1,7 @@ # Template file for 'epy' pkgname=epy version=2023.6.11 -revision=4 +revision=5 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3" From 59eebc349b6f54908169785c944fc544b9fa20eb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:29 -0500 Subject: [PATCH 1564/1664] eolie: rebuild for Python 3.14 --- srcpkgs/eolie/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/eolie/template b/srcpkgs/eolie/template index 353a8a879a245f..537824a1786b31 100644 --- a/srcpkgs/eolie/template +++ b/srcpkgs/eolie/template @@ -1,7 +1,7 @@ # Template file for 'eolie' pkgname=eolie version=0.9.101 -revision=4 +revision=5 _eolie_hash=bb4aad19272cc636bd17f2f6602127fe _po=d5aac9503b4af24e3df89f531305cf9a70e26549 build_style=meson From 8c9f99eb6533dcbd2cc99db44a77ff44ce41a5ca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:29 -0500 Subject: [PATCH 1565/1664] eog-plugins: rebuild for Python 3.14 --- srcpkgs/eog-plugins/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/eog-plugins/template b/srcpkgs/eog-plugins/template index e3fc26ca04c6bd..9f6dc4ce44eba2 100644 --- a/srcpkgs/eog-plugins/template +++ b/srcpkgs/eog-plugins/template @@ -1,7 +1,7 @@ # Template file for 'eog-plugins' pkgname=eog-plugins version=44.1 -revision=2 +revision=3 build_style=meson configure_args="-Dplugin_postasa=false" pycompile_dirs="usr/lib/eog/plugins" From 0797e2e7274dd8b13db433833f07df7b07ef4401 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:29 -0500 Subject: [PATCH 1566/1664] electrum: rebuild for Python 3.14 --- srcpkgs/electrum/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template index 3ddb229884efc6..c27b480fb6f358 100644 --- a/srcpkgs/electrum/template +++ b/srcpkgs/electrum/template @@ -1,7 +1,7 @@ # Template file for 'electrum' pkgname=electrum version=4.6.2 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools python3-pyqt6-devel-tools" depends="python3-aiohttp python3-aiohttp_socks python3-aiorpcx From 92653f07a4a48a15ceb3953f5fccf8cf2a0222f5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:29 -0500 Subject: [PATCH 1567/1664] duplicity: rebuild for Python 3.14 --- srcpkgs/duplicity/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/duplicity/template b/srcpkgs/duplicity/template index e8189584f83894..298b0b3c647ad5 100644 --- a/srcpkgs/duplicity/template +++ b/srcpkgs/duplicity/template @@ -1,7 +1,7 @@ # Template file for 'duplicity' pkgname=duplicity version=3.0.3.1 -revision=2 +revision=3 build_style=python3-module hostmakedepends="gettext python3-setuptools_scm" makedepends="python3-devel librsync-devel" From 5f047a5daf4f6d4cd4c6bbefb8d6b7f5370943ed Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:29 -0500 Subject: [PATCH 1568/1664] duckdb: rebuild for Python 3.14 --- srcpkgs/duckdb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/duckdb/template b/srcpkgs/duckdb/template index aac7239881b521..3e2a53d86506f8 100644 --- a/srcpkgs/duckdb/template +++ b/srcpkgs/duckdb/template @@ -1,7 +1,7 @@ # Template file for 'duckdb' pkgname=duckdb version=1.3.2 -revision=1 +revision=2 archs="x86_64* aarch64*" # 32-bit FTBFS build_style=cmake build_helper="python3" From 467b91855f514f1b8282f634d0001602a3699bc8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:29 -0500 Subject: [PATCH 1569/1664] dtrx: rebuild for Python 3.14 --- srcpkgs/dtrx/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/dtrx/template b/srcpkgs/dtrx/template index 78bb492442bf4f..d407d67c3f75d0 100644 --- a/srcpkgs/dtrx/template +++ b/srcpkgs/dtrx/template @@ -1,7 +1,7 @@ # Template file for 'dtrx' pkgname=dtrx version=8.5.3 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 0e37808b1831c29be585396f9f549904bb794586 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:29 -0500 Subject: [PATCH 1570/1664] dnsrecon: rebuild for Python 3.14 --- srcpkgs/dnsrecon/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/dnsrecon/template b/srcpkgs/dnsrecon/template index cc213bad509c53..1812886904459a 100644 --- a/srcpkgs/dnsrecon/template +++ b/srcpkgs/dnsrecon/template @@ -1,7 +1,7 @@ # Template file for 'dnsrecon' pkgname=dnsrecon version=1.4.0 -revision=1 +revision=2 build_style=python3-pep517 make_check_args="-k not(test_zone_transfer)" hostmakedepends="python3-wheel" From d2a57935e22da85e7e59cde0b512f00952b4c777 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:30 -0500 Subject: [PATCH 1571/1664] dlib: rebuild for Python 3.14 --- srcpkgs/dlib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/dlib/template b/srcpkgs/dlib/template index d28d840bf76949..f72b89e24919da 100644 --- a/srcpkgs/dlib/template +++ b/srcpkgs/dlib/template @@ -1,7 +1,7 @@ # Template file for 'dlib' pkgname=dlib version=20.0 -revision=1 +revision=2 build_style=cmake # arm6/7 need helper build_helper=python3 From 8d8a9266591e5eeb40365577c76636bccfa75938 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:30 -0500 Subject: [PATCH 1572/1664] distcc: rebuild for Python 3.14 --- srcpkgs/distcc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/distcc/template b/srcpkgs/distcc/template index 3122b3c83206e1..f43a5f91cf8966 100644 --- a/srcpkgs/distcc/template +++ b/srcpkgs/distcc/template @@ -1,7 +1,7 @@ # Template file for 'distcc' pkgname=distcc version=3.4 -revision=3 +revision=4 build_style=gnu-configure configure_args="--disable-Werror" conf_files=" From fe32ac2f6320aa36dfdebcd358cc9b3d85ab4499 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:30 -0500 Subject: [PATCH 1573/1664] diffoscope: rebuild for Python 3.14 --- srcpkgs/diffoscope/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/diffoscope/template b/srcpkgs/diffoscope/template index 78ba22de32aec5..0075d481a23739 100644 --- a/srcpkgs/diffoscope/template +++ b/srcpkgs/diffoscope/template @@ -1,7 +1,7 @@ # Template file for 'diffoscope' pkgname=diffoscope version=306 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-magic python3-libarchive-c python3-progressbar From f10b9cda46cf49e945fc308756df5fe54b908d27 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:30 -0500 Subject: [PATCH 1574/1664] devedeng: rebuild for Python 3.14 --- srcpkgs/devedeng/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template index 602d64bbed2e3d..aa0a8ae4f0b491 100644 --- a/srcpkgs/devedeng/template +++ b/srcpkgs/devedeng/template @@ -1,7 +1,7 @@ # Template file for 'devedeng' pkgname=devedeng version=4.21.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="gettext python3-setuptools" depends="cdrtools desktop-file-utils dvdauthor ffmpeg gtk+3 From ab120304f88b9993e7042b6139ffe7a6c6be1399 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:30 -0500 Subject: [PATCH 1575/1664] deluge: rebuild for Python 3.14 --- srcpkgs/deluge/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template index b2429f3d9f73b3..ef644911b69e2f 100644 --- a/srcpkgs/deluge/template +++ b/srcpkgs/deluge/template @@ -1,7 +1,7 @@ # Template file for 'deluge' pkgname=deluge version=2.2.0 -revision=1 +revision=2 build_style=python3-module # TODO package python3-slimit to minify javascript hostmakedepends="intltool python3-setuptools python3-wheel" From 696f6f77376b68a0007be6ddc60b20d2ec710ed0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:30 -0500 Subject: [PATCH 1576/1664] d-feet: rebuild for Python 3.14 --- srcpkgs/d-feet/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/d-feet/template b/srcpkgs/d-feet/template index 17211af6d0443b..b659eb33315f86 100644 --- a/srcpkgs/d-feet/template +++ b/srcpkgs/d-feet/template @@ -1,7 +1,7 @@ # Template file for 'd-feet' pkgname=d-feet version=0.3.16 -revision=5 +revision=6 build_style=meson hostmakedepends="pkg-config gettext itstool python3-pycodestyle" makedepends="gtk+3-devel gobject-introspection" From 35744cd2d20441dd89daa5d1f4ded81703a5c55f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:30 -0500 Subject: [PATCH 1577/1664] cutter: rebuild for Python 3.14 --- srcpkgs/cutter/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cutter/template b/srcpkgs/cutter/template index 2f54f22c2c7de2..8739800e7a84fc 100644 --- a/srcpkgs/cutter/template +++ b/srcpkgs/cutter/template @@ -1,7 +1,7 @@ # Template file for 'cutter' pkgname=cutter version=2.3.4 -revision=5 +revision=6 build_style=cmake configure_args="-DCUTTER_EXTRA_PLUGIN_DIRS=/usr/lib/rizin/cutter/plugins -DCUTTER_ENABLE_PYTHON=ON -DCUTTER_ENABLE_PYTHON_BINDINGS=OFF From 69d88aa1539203d9fbd38880a69f3112bad9c74b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:31 -0500 Subject: [PATCH 1578/1664] curseradio: rebuild for Python 3.14 --- srcpkgs/curseradio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template index 911d56f3a00216..529ef8b801fb8f 100644 --- a/srcpkgs/curseradio/template +++ b/srcpkgs/curseradio/template @@ -1,7 +1,7 @@ # Template file for 'curseradio' pkgname=curseradio version=0.0.20171017 -revision=9 +revision=10 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d build_style=python3-module pycompile_module="curseradio" From 41fb979017d25e276caaf0d30e0f9dead7ff4847 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:31 -0500 Subject: [PATCH 1579/1664] ctop: rebuild for Python 3.14 --- srcpkgs/ctop/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template index 051daa0116f20a..a87cc0599889bb 100644 --- a/srcpkgs/ctop/template +++ b/srcpkgs/ctop/template @@ -1,7 +1,7 @@ # Template file for 'ctop' pkgname=ctop version=1.0.0 -revision=9 +revision=10 build_style=python3-module pycompile_module="cgroup_top.py" hostmakedepends="python3-setuptools" From af3bb8f158a73683fd94e3b80cdf6f5e2187d241 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:31 -0500 Subject: [PATCH 1580/1664] csound: rebuild for Python 3.14 --- srcpkgs/csound/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/csound/template b/srcpkgs/csound/template index 1e7bb22db54961..dc9b36c64a0897 100644 --- a/srcpkgs/csound/template +++ b/srcpkgs/csound/template @@ -1,7 +1,7 @@ # Template file for 'csound' pkgname=csound version=6.18.1 -revision=5 +revision=6 build_style=cmake configure_args=" -DLUA_MODULE_INSTALL_DIR=${XBPS_CROSS_BASE}/usr/lib/lua/5.1 From aeb6de70031e2a8b9379fe69f585cb9aa5990dc1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:31 -0500 Subject: [PATCH 1581/1664] cross-arm-none-eabi-gdb: rebuild for Python 3.14 --- srcpkgs/cross-arm-none-eabi-gdb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cross-arm-none-eabi-gdb/template b/srcpkgs/cross-arm-none-eabi-gdb/template index 65da639ef08cdf..8bcfaf8efbd77e 100644 --- a/srcpkgs/cross-arm-none-eabi-gdb/template +++ b/srcpkgs/cross-arm-none-eabi-gdb/template @@ -1,7 +1,7 @@ # Template file for 'cross-arm-none-eabi-gdb' pkgname=cross-arm-none-eabi-gdb version=15.2 -revision=1 +revision=2 build_style=gnu-configure configure_args="--target=arm-none-eabi --disable-werror --disable-nls --with-system-readline --with-system-gdbinit=/etc/gdb/gdbinit --with-system-zlib From 8590020a2307a09d9ee637f7f4e9650f494dd265 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:31 -0500 Subject: [PATCH 1582/1664] cropgui: rebuild for Python 3.14 --- srcpkgs/cropgui/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cropgui/template b/srcpkgs/cropgui/template index c90b5790eb80d3..f7123ef0b6c703 100644 --- a/srcpkgs/cropgui/template +++ b/srcpkgs/cropgui/template @@ -1,7 +1,7 @@ # Template file for 'cropgui' pkgname=cropgui version=0.9 -revision=2 +revision=3 hostmakedepends="which python3-setuptools" depends="python3-Pillow python3-gobject libjpeg-turbo-tools ImageMagick exiftool gtk+3" short_desc="Gtk frontend for lossless cropping of jpeg images" From 0c064c33eb281098fcaf43cb26102503afb2cc0b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:31 -0500 Subject: [PATCH 1583/1664] criu: rebuild for Python 3.14 --- srcpkgs/criu/template | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/srcpkgs/criu/template b/srcpkgs/criu/template index 4da03cc94d54d9..c079a7e142382b 100644 --- a/srcpkgs/criu/template +++ b/srcpkgs/criu/template @@ -1,13 +1,13 @@ # Template file for 'criu' pkgname=criu version=3.18 -revision=3 +revision=4 # i686 unsupported upstream: https://criu.org/32bit_tasks_C/R#Compatible_applications # ppc64 big endian not supported upstream archs="x86_64* aarch64* ppc64le* armv6l* armv7l*" build_style=gnu-makefile make_use_env=compliant -make_build_args="WERROR=0" +make_build_args="WERROR=0 WARNINGS=" make_install_args="LOGROTATEDIR=/etc/logrotate.d LIBDIR=/usr/lib SBINDIR=/usr/bin" hostmakedepends="asciidoc pkg-config xmlto protobuf which python3-pip protobuf-c protobuf-devel perl" makedepends="libcap-devel libnet-devel libnftables-devel libnl3-devel protobuf-c-devel @@ -20,6 +20,8 @@ changelog="https://criu.org/Download/criu" distfiles="https://github.com/checkpoint-restore/criu/archive/refs/tags/v${version}.tar.gz" checksum=6a9997981c9fe4730c848ce59346b3a22fad69b803607cb67a3f6ec0557fa474 +export CFLAGS="-D_LARGEFILE64_SOURCE -fpermissive" + pre_build() { if [[ "$CROSS_BUILD" ]]; then case "${XBPS_TARGET_MACHINE}" in From 39f201a371a4701271ab78b312620243d08e3901 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:31 -0500 Subject: [PATCH 1584/1664] cpuset: rebuild for Python 3.14 --- srcpkgs/cpuset/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template index 7bdb2d8b63bf9c..c17f17e3f08b1f 100644 --- a/srcpkgs/cpuset/template +++ b/srcpkgs/cpuset/template @@ -1,7 +1,7 @@ # Template file for 'cpuset' pkgname=cpuset version=1.6.2 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" short_desc="Wrapper to make kernel cpusets facilities easier to use" From 181e4769aa5acdc444a463178babe9d6d61f6ba1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:32 -0500 Subject: [PATCH 1585/1664] cppman: rebuild for Python 3.14 --- srcpkgs/cppman/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cppman/template b/srcpkgs/cppman/template index d38b2e6b24cd6c..b37f56faac2885 100644 --- a/srcpkgs/cppman/template +++ b/srcpkgs/cppman/template @@ -1,7 +1,7 @@ # Template file for 'cppman' pkgname=cppman version=0.5.7 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-BeautifulSoup4 python3-html5lib python3-lxml" From cd4cebead8cdeadea73fb24b1b64a770089187cf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:32 -0500 Subject: [PATCH 1586/1664] cozy: rebuild for Python 3.14 --- srcpkgs/cozy/template | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template index 56c4f11d12f6d1..ff32327bcfd51d 100644 --- a/srcpkgs/cozy/template +++ b/srcpkgs/cozy/template @@ -1,17 +1,16 @@ # Template file for 'cozy' pkgname=cozy version=1.3.0 -revision=2 +revision=3 build_style=meson hostmakedepends="pkg-config glib-devel python3 python3-distro python3-peewee - python3-mutagen python3-gobject-devel gettext desktop-file-utils - gtk+3-devel" + python3-mutagen python3-gobject-devel gettext desktop-file-utils gtk+3-devel" # FIXME: libgladeui3 added only to resolve ordering for Python rebuilds makedepends="libadwaita-devel glib-devel python3-gobject-devel libhandy1-devel granite-devel libgladeui3" depends="python3-peewee gst-libav gst-plugins-good1 gst1-python3 - python3-mutagen python3-distro python3-apsw python3-packaging python3-pytz - python3-requests python3-gobject libhandy1 granite libdazzle" + python3-mutagen python3-distro python3-pytz python3-requests python3-gobject + libhandy1 granite libdazzle" short_desc="Audio book player" maintainer="Orphaned " license="GPL-3.0-only, LGPL-3.0-only, Apache-2.0" From 6842cdce6d0c7eb23eedbb7033768ed19def2dfe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:32 -0500 Subject: [PATCH 1587/1664] coursera-dl: rebuild for Python 3.14 --- srcpkgs/coursera-dl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/coursera-dl/template b/srcpkgs/coursera-dl/template index bfce84ede1f827..395d4e0be39071 100644 --- a/srcpkgs/coursera-dl/template +++ b/srcpkgs/coursera-dl/template @@ -1,7 +1,7 @@ # Template file for 'coursera-dl' pkgname=coursera-dl version=0.11.5 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-attrs python3-setuptools python3-pyasn1 python3-ConfigArgParse From 30c7e2dca2a74179464e774fdfcbdbea5792928f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:32 -0500 Subject: [PATCH 1588/1664] cookiecutter: rebuild for Python 3.14 --- srcpkgs/cookiecutter/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cookiecutter/template b/srcpkgs/cookiecutter/template index 441e4479553421..139ef34ad2f230 100644 --- a/srcpkgs/cookiecutter/template +++ b/srcpkgs/cookiecutter/template @@ -1,7 +1,7 @@ # Template file for 'cookiecutter' pkgname=cookiecutter version=2.6.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-Arrow python3-Jinja2 python3-binaryornot python3-click From d773e6c0c4832072e7d9426692413ced3cd44e76 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:32 -0500 Subject: [PATCH 1589/1664] collectd: rebuild for Python 3.14 --- srcpkgs/collectd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/collectd/template b/srcpkgs/collectd/template index ee62ec0603f7b1..535e38c44e6390 100644 --- a/srcpkgs/collectd/template +++ b/srcpkgs/collectd/template @@ -1,7 +1,7 @@ # Template file for 'collectd' pkgname=collectd version=5.12.0 -revision=15 +revision=16 build_style=gnu-configure configure_args="$(vopt_enable rrdtool rrdtool) $(vopt_enable perl perl) $(vopt_enable notify notify_desktop) --with-libiptc --enable-virt From 64ee39b35eee1dc43dc9b75e144b41fec449bb36 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:32 -0500 Subject: [PATCH 1590/1664] coccigrep: rebuild for Python 3.14 --- srcpkgs/coccigrep/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template index 6dbe65444ef421..5ad2a8151c3ad2 100644 --- a/srcpkgs/coccigrep/template +++ b/srcpkgs/coccigrep/template @@ -1,7 +1,7 @@ # Template file for 'coccigrep' pkgname=coccigrep version=1.20 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="coccinelle python3-Pygments" From a25f9c1eb6a9f8d4ae36714c6ce35a4f2e9d70e4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:33 -0500 Subject: [PATCH 1591/1664] cmakelang: rebuild for Python 3.14 --- srcpkgs/cmakelang/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cmakelang/template b/srcpkgs/cmakelang/template index 936f72e358a3c0..434074d38336db 100644 --- a/srcpkgs/cmakelang/template +++ b/srcpkgs/cmakelang/template @@ -1,7 +1,7 @@ # Template file for 'cmakelang' pkgname=cmakelang version=0.6.13 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-six" From 430a529a1aaf05cd26159ac130e67cc1a6e37aaf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:33 -0500 Subject: [PATCH 1592/1664] cmake-language-server: rebuild for Python 3.14 --- srcpkgs/cmake-language-server/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cmake-language-server/template b/srcpkgs/cmake-language-server/template index 7f0e23f3167e3b..a53b3504aa27a0 100644 --- a/srcpkgs/cmake-language-server/template +++ b/srcpkgs/cmake-language-server/template @@ -1,7 +1,7 @@ # Template file for 'cmake-language-server' pkgname=cmake-language-server version=0.1.11 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-pdm-backend" depends="python3-pygls python3-typing_extensions" From 8a64ce0938d4c260f78535e6a302569dc7b74801 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:33 -0500 Subject: [PATCH 1593/1664] clearine: rebuild for Python 3.14 --- srcpkgs/clearine/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/clearine/template b/srcpkgs/clearine/template index 629124d9e0633a..8d377d53060979 100644 --- a/srcpkgs/clearine/template +++ b/srcpkgs/clearine/template @@ -1,7 +1,7 @@ # Template file for 'clearine' pkgname=clearine version=0.7 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-gobject gtk+3 python3-cairo" From b927e6a4e5880d5530abd5a1526566e049cbcb1d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:33 -0500 Subject: [PATCH 1594/1664] cinnamon: rebuild for Python 3.14 --- srcpkgs/cinnamon/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cinnamon/template b/srcpkgs/cinnamon/template index f27b1e1287f19a..88aa0330a7c276 100644 --- a/srcpkgs/cinnamon/template +++ b/srcpkgs/cinnamon/template @@ -1,7 +1,7 @@ # Template file for 'cinnamon' pkgname=cinnamon version=6.4.13 -revision=1 +revision=2 build_style=meson build_helper="gir" hostmakedepends="pkg-config gettext glib-devel xmlto perl cjs From dd101085f545761185c23ab649ee033f30d01859 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:33 -0500 Subject: [PATCH 1595/1664] chirp: rebuild for Python 3.14 --- srcpkgs/chirp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/chirp/template b/srcpkgs/chirp/template index bcaf978d39670d..df1cf87c0c4e27 100644 --- a/srcpkgs/chirp/template +++ b/srcpkgs/chirp/template @@ -1,7 +1,7 @@ # Template file for 'chirp' pkgname=chirp version=20241025 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-six wxPython python3-pyserial python3-requests From df93667c2632cffb1a6028e6f72ae0511e8475c6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:33 -0500 Subject: [PATCH 1596/1664] certbot-nginx: rebuild for Python 3.14 --- srcpkgs/certbot-nginx/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/certbot-nginx/template b/srcpkgs/certbot-nginx/template index a90f0059eb4849..59ad2482cd3c18 100644 --- a/srcpkgs/certbot-nginx/template +++ b/srcpkgs/certbot-nginx/template @@ -1,7 +1,7 @@ # Template file for 'certbot-nginx' pkgname=certbot-nginx version=5.1.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-setuptools python3-wheel" depends="certbot python3-acme python3-parsing python3-zope.interface python3-openssl" From bbe46a7c4ee525ae7342447e5aee1ddce70ad11f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:33 -0500 Subject: [PATCH 1597/1664] certbot-apache: rebuild for Python 3.14 --- srcpkgs/certbot-apache/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/certbot-apache/template b/srcpkgs/certbot-apache/template index 1d9dffa7f449c8..064bbf3c0b8229 100644 --- a/srcpkgs/certbot-apache/template +++ b/srcpkgs/certbot-apache/template @@ -1,7 +1,7 @@ # Template file for 'certbot-apache' pkgname=certbot-apache version=5.1.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core python3-setuptools python3-wheel" depends="certbot python3-acme python3-augeas python3-zope.interface python3-openssl" From baaf65ad381b026d251d7346fe1a8a338b7e0d37 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:34 -0500 Subject: [PATCH 1598/1664] ccsm: rebuild for Python 3.14 --- srcpkgs/ccsm/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template index 1b5064ce6a7e8c..2e1bb1da5dfeea 100644 --- a/srcpkgs/ccsm/template +++ b/srcpkgs/ccsm/template @@ -1,7 +1,7 @@ # Template file for 'ccsm' pkgname=ccsm version=0.8.18 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools intltool" depends="compizconfig-python python3-xlib python3-gobject" From 9445c541b8e5c1c3bf3833522856651502575340 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:34 -0500 Subject: [PATCH 1599/1664] catfish: rebuild for Python 3.14 --- srcpkgs/catfish/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template index 458361f2799888..eb58a1e3ebe0d6 100644 --- a/srcpkgs/catfish/template +++ b/srcpkgs/catfish/template @@ -1,7 +1,7 @@ # Template file for 'catfish' pkgname=catfish version=4.20.1 -revision=1 +revision=2 build_style=meson hostmakedepends="gettext python3-gobject python3-dbus python3-pexpect pkg-config desktop-file-utils gtk-update-icon-cache python3-packaging-bootstrap" From b5f0a8c95963f40a768e6a6561b67325774ededd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:34 -0500 Subject: [PATCH 1600/1664] castero: rebuild for Python 3.14 --- srcpkgs/castero/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/castero/template b/srcpkgs/castero/template index 84ec67e2b22bdf..6f95d628a9cf9e 100644 --- a/srcpkgs/castero/template +++ b/srcpkgs/castero/template @@ -1,7 +1,7 @@ # Template file for 'castero' pkgname=castero version=0.9.5 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" # taken from https://github.com/xgi/castero/blob/master/requirements.txt, From 6f8881cb32ef95e8f72a70424e42154c73392d98 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:34 -0500 Subject: [PATCH 1601/1664] canto-curses: rebuild for Python 3.14 --- srcpkgs/canto-curses/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/canto-curses/template b/srcpkgs/canto-curses/template index 0b3ce4c3c0daec..e3e04b3cbd8e69 100644 --- a/srcpkgs/canto-curses/template +++ b/srcpkgs/canto-curses/template @@ -1,7 +1,7 @@ # Template file for 'canto-curses' pkgname=canto-curses version=0.9.9 -revision=11 +revision=12 build_style=python3-module pycompile_dirs="/usr/lib/canto/plugins" hostmakedepends="python3-setuptools" From 41d2a2e42cbc979c140f268fb7a1ada2b47ca597 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:34 -0500 Subject: [PATCH 1602/1664] cameractrls: rebuild for Python 3.14 --- srcpkgs/cameractrls/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cameractrls/template b/srcpkgs/cameractrls/template index ca822a1c36b74f..23e5c2b61c8671 100644 --- a/srcpkgs/cameractrls/template +++ b/srcpkgs/cameractrls/template @@ -1,7 +1,7 @@ # Template file for 'cameractrls' pkgname=cameractrls version=0.6.7 -revision=1 +revision=2 pycompile_dirs=/usr/lib/cameractrls depends="python3 python3-gobject libjpeg-turbo SDL2 gtk4" short_desc="Camera controls for Linux" From caa4c671f7075b62a0651707f6f80ede7af6f132 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:34 -0500 Subject: [PATCH 1603/1664] calibre: rebuild for Python 3.14 --- .../calibre/patches/py313-re-scanner.patch | 106 ++++++++++++++++++ srcpkgs/calibre/template | 2 +- 2 files changed, 107 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/calibre/patches/py313-re-scanner.patch diff --git a/srcpkgs/calibre/patches/py313-re-scanner.patch b/srcpkgs/calibre/patches/py313-re-scanner.patch new file mode 100644 index 00000000000000..6ce0f84c6e9bc1 --- /dev/null +++ b/srcpkgs/calibre/patches/py313-re-scanner.patch @@ -0,0 +1,106 @@ +diff -Nur a/src/calibre/utils/_py313_scanner.py b/src/calibre/utils/_py313_scanner.py +--- a/src/calibre/utils/_py313_scanner.py 1969-12-31 19:00:00.000000000 -0500 ++++ b/src/calibre/utils/_py313_scanner.py 2025-12-04 16:43:12.371808182 -0500 +@@ -0,0 +1,52 @@ ++### THIS FILE WAS ADDED SPECIFICALLY TO THE VOID LINUX PACKAGE ++### ++### Python 3.14.1 has restricted the use of re.Scanner to patterns that do not ++### use capturing groups because capturing groups never worked properly and can ++### cause the interpreter to crash. Cf. ++### ++### https://github.com/python/cpython/pull/140944 ++### ++### The Scanner implementation is undocumented and there is some debate how to ++### address programs that rely on this now-missing functionality. Because it ++### seemed to work in calibre, and upstream has not addressed the change, we ++### will just vendor the implementation from Python 3.13 for now. ++ ++from re import _compiler, _parser, RegexFlag ++class Scanner: ++ def __init__(self, lexicon, flags=0): ++ from re._constants import BRANCH, SUBPATTERN ++ if isinstance(flags, RegexFlag): ++ flags = flags.value ++ self.lexicon = lexicon ++ # combine phrases into a compound pattern ++ p = [] ++ s = _parser.State() ++ s.flags = flags ++ for phrase, action in lexicon: ++ gid = s.opengroup() ++ p.append(_parser.SubPattern(s, [ ++ (SUBPATTERN, (gid, 0, 0, _parser.parse(phrase, flags))), ++ ])) ++ s.closegroup(gid, p[-1]) ++ p = _parser.SubPattern(s, [(BRANCH, (None, p))]) ++ self.scanner = _compiler.compile(p) ++ def scan(self, string): ++ result = [] ++ append = result.append ++ match = self.scanner.scanner(string).match ++ i = 0 ++ while True: ++ m = match() ++ if not m: ++ break ++ j = m.end() ++ if i == j: ++ break ++ action = self.lexicon[m.lastindex-1][1] ++ if callable(action): ++ self.match = m ++ action = action(self, m.group()) ++ if action is not None: ++ append(action) ++ i = j ++ return result, string[i:] +diff -Nur a/src/calibre/utils/formatter.py b/src/calibre/utils/formatter.py +--- a/src/calibre/utils/formatter.py 2025-07-17 23:41:17.000000000 -0400 ++++ b/src/calibre/utils/formatter.py 2025-12-04 16:43:51.782906462 -0500 +@@ -25,6 +25,7 @@ + from calibre.utils.localization import _ + from polyglot.builtins import error_message + ++from ._py313_scanner import Scanner + + class Node: + NODE_RVALUE = 1 +@@ -1690,7 +1691,7 @@ + compress_spaces = re.compile(r'\s+') + backslash_comma_to_comma = re.compile(r'\\,') + +- arg_parser = re.Scanner([ ++ arg_parser = Scanner([ + (r',', lambda x,t: ''), + (r'.*?((?=#|>#)', lambda x,t: (_Parser.LEX_NUMERIC_INFIX, t)), + (r'(==|!=|<=|<|>=|>)', lambda x,t: (_Parser.LEX_STRING_INFIX, t)), + (r'(if|then|else|elif|fi)\b',lambda x,t: (_Parser.LEX_KEYWORD, t)), +diff -Nur a/src/calibre/utils/search_query_parser.py b/src/calibre/utils/search_query_parser.py +--- a/src/calibre/utils/search_query_parser.py 2025-07-17 23:41:17.000000000 -0400 ++++ b/src/calibre/utils/search_query_parser.py 2025-12-04 16:44:16.500968101 -0500 +@@ -28,6 +28,8 @@ + from polyglot.binary import as_hex_unicode, from_hex_unicode + from polyglot.builtins import codepoint_to_chr + ++from ._py313_scanner import Scanner ++ + ''' + This class manages access to the preference holding the saved search queries. + It exists to ensure that unicode is used throughout, and also to permit +@@ -157,7 +159,7 @@ + docstring_sep = '□ༀ؆' # Unicode white square, Tibetian Om, Arabic-Indic Cube Root + + # Had to translate named constants to numeric values +- lex_scanner = re.Scanner([ ++ lex_scanner = Scanner([ + (r'[()]', lambda x,t: (Parser.OPCODE, t)), + (r'@.+?:[^")\s]+', lambda x,t: (Parser.WORD, str(t))), + (r'[^"()\s]+', lambda x,t: (Parser.WORD, str(t))), diff --git a/srcpkgs/calibre/template b/srcpkgs/calibre/template index fff00d97920690..885f0f6b6ec887 100644 --- a/srcpkgs/calibre/template +++ b/srcpkgs/calibre/template @@ -1,7 +1,7 @@ # Template file for 'calibre' pkgname=calibre version=8.7.0 -revision=2 +revision=3 build_helper=python3 pycompile_dirs="/usr/lib/calibre/" hostmakedepends="pkg-config cmake python3-BeautifulSoup4 python3-Pillow From 65c7bf30f770d45767be118563e37a33a02fe236 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:34 -0500 Subject: [PATCH 1604/1664] cairo-dock-plugins: rebuild for Python 3.14 --- srcpkgs/cairo-dock-plugins/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cairo-dock-plugins/template b/srcpkgs/cairo-dock-plugins/template index 38f29853366ee8..854cf420968670 100644 --- a/srcpkgs/cairo-dock-plugins/template +++ b/srcpkgs/cairo-dock-plugins/template @@ -1,7 +1,7 @@ # Template file for 'cairo-dock-plugins' pkgname=cairo-dock-plugins version=3.4.1 -revision=20 +revision=21 build_style=cmake hostmakedepends="gettext pkg-config python3-setuptools python3-devel vala-devel" makedepends="alsa-lib-devel fftw-devel pulseaudio-devel libexif-devel From f56476df17e90a14579da92acedf196d6aa727b2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:35 -0500 Subject: [PATCH 1605/1664] caffeine-ng: rebuild for Python 3.14 --- srcpkgs/caffeine-ng/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/caffeine-ng/template b/srcpkgs/caffeine-ng/template index 0c4b10a4347343..805adf929ce78d 100644 --- a/srcpkgs/caffeine-ng/template +++ b/srcpkgs/caffeine-ng/template @@ -1,7 +1,7 @@ # Template file for 'caffeine-ng' pkgname=caffeine-ng version=4.0.2 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="desktop-file-utils gtk+3 hicolor-icon-theme libnotify From 2d4111198db6e7ef420d5178063a989085b4aab8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:35 -0500 Subject: [PATCH 1606/1664] cadence: rebuild for Python 3.14 --- srcpkgs/cadence/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cadence/template b/srcpkgs/cadence/template index cfcb1f0865f9f6..35f4fdb44c3aa6 100644 --- a/srcpkgs/cadence/template +++ b/srcpkgs/cadence/template @@ -1,7 +1,7 @@ # Template file for 'cadence' pkgname=cadence version=0.9.2 -revision=6 +revision=7 build_style=gnu-makefile pycompile_dirs="usr/share/cadence/src" hostmakedepends="pkg-config qt5-host-tools python3-PyQt5-devel-tools" From 2e10f600214ab4a4156a04dbed2546d309445562 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:35 -0500 Subject: [PATCH 1607/1664] bup: rebuild for Python 3.14 --- srcpkgs/bup/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/bup/template b/srcpkgs/bup/template index 29a4a18c42042e..9f40bbc8bfc95e 100644 --- a/srcpkgs/bup/template +++ b/srcpkgs/bup/template @@ -1,7 +1,7 @@ # Template file for 'bup' pkgname=bup version=0.33.7 -revision=1 +revision=2 build_style=configure hostmakedepends="pkg-config python3 perl git pandoc" makedepends="python3-devel readline-devel acl-devel" From 61f9cdcaacbd9b6219d2e8e37bff1e172705a71c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:35 -0500 Subject: [PATCH 1608/1664] bumblebee-status: rebuild for Python 3.14 --- srcpkgs/bumblebee-status/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/bumblebee-status/template b/srcpkgs/bumblebee-status/template index 0fdec478d798ae..9e9c4c98535225 100644 --- a/srcpkgs/bumblebee-status/template +++ b/srcpkgs/bumblebee-status/template @@ -1,7 +1,7 @@ # Template file for 'bumblebee-status' pkgname=bumblebee-status version=2.1.6 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-netifaces python3-psutil python3-requests" From 139064ee73ba722df9d2f32ea231237a209c6fda Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:35 -0500 Subject: [PATCH 1609/1664] bum: rebuild for Python 3.14 --- srcpkgs/bum/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template index 3d47729dd50fcd..a9af4197e0591a 100644 --- a/srcpkgs/bum/template +++ b/srcpkgs/bum/template @@ -1,7 +1,7 @@ # Template file for 'bum' pkgname=bum version=0.1.3 -revision=10 +revision=11 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-mpd2 python3-musicbrainzngs python3-mpv" From 554050d0f251ba08c53e9fefea71da37e9c57dd7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:35 -0500 Subject: [PATCH 1610/1664] btrfs-backup: rebuild for Python 3.14 --- srcpkgs/btrfs-backup/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/btrfs-backup/template b/srcpkgs/btrfs-backup/template index 3943aa509d437b..ffa11d10d1a816 100644 --- a/srcpkgs/btrfs-backup/template +++ b/srcpkgs/btrfs-backup/template @@ -1,7 +1,7 @@ # Template file for 'btrfs-backup' pkgname=btrfs-backup version=0.3.1 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools" From e3413aae0b3f2d76c40aeed76b2b2c797ca527ed Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:35 -0500 Subject: [PATCH 1611/1664] botan: rebuild for Python 3.14 --- srcpkgs/botan/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/botan/template b/srcpkgs/botan/template index 3b02e0a1e81cbc..5098db7cea7c31 100644 --- a/srcpkgs/botan/template +++ b/srcpkgs/botan/template @@ -1,7 +1,7 @@ # Template file for 'botan' pkgname=botan version=3.9.0 -revision=1 +revision=2 build_style=gnu-makefile hostmakedepends="doxygen python3 python3-packaging-bootstrap" makedepends="bzip2-devel liblzma-devel sqlite-devel zlib-devel" From fd86d3a5e38913ef6fc53887d3f3cb54e5df25a6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:36 -0500 Subject: [PATCH 1612/1664] borgmatic: rebuild for Python 3.14 --- srcpkgs/borgmatic/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template index d21e2e6b8b6cab..0982f1bca0ebef 100644 --- a/srcpkgs/borgmatic/template +++ b/srcpkgs/borgmatic/template @@ -1,7 +1,7 @@ # Template file for 'borgmatic' pkgname=borgmatic version=2.0.5 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="borg python3-setuptools python3-ruamel.yaml python3-jsonschema From 5f9de271d952279b22306585536ee80bafa088f1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:36 -0500 Subject: [PATCH 1613/1664] bootchart2: rebuild for Python 3.14 --- srcpkgs/bootchart2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/bootchart2/template b/srcpkgs/bootchart2/template index 3d3cc4cb0dea34..7fb5febf3dcc1d 100644 --- a/srcpkgs/bootchart2/template +++ b/srcpkgs/bootchart2/template @@ -1,7 +1,7 @@ # Template file for 'bootchart2' pkgname=bootchart2 version=0.14.9 -revision=5 +revision=6 build_style=gnu-makefile make_install_args="EARLY_PREFIX=/usr DOCDIR=/usr/share/doc/bootchart2" hostmakedepends="python3-setuptools" From e741ef71cdb94209d0f9da04c631e4a9c2e80412 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:36 -0500 Subject: [PATCH 1614/1664] bmaptool: rebuild for Python 3.14 --- srcpkgs/bmaptool/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/bmaptool/template b/srcpkgs/bmaptool/template index c8f00257a287b0..140520e2e8a236 100644 --- a/srcpkgs/bmaptool/template +++ b/srcpkgs/bmaptool/template @@ -1,7 +1,7 @@ # Template file for 'bmaptool' pkgname=bmaptool version=3.9.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling" depends="gpgme-python3 python3-six" From 5a7b8b38141783b1b0508dfdde5d45fe8ae3dbf8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:36 -0500 Subject: [PATCH 1615/1664] blueman: rebuild for Python 3.14 --- srcpkgs/blueman/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/blueman/template b/srcpkgs/blueman/template index 149ed998170059..bd831e621f9dd8 100644 --- a/srcpkgs/blueman/template +++ b/srcpkgs/blueman/template @@ -1,7 +1,7 @@ # Template file for 'blueman' pkgname=blueman version=2.4.6 -revision=1 +revision=2 build_style=gnu-configure configure_args="--disable-static" hostmakedepends="intltool iproute2 pkg-config python3-Cython glib-devel From a4edd204994821dbb5055a95cec97e65eaebe01a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:36 -0500 Subject: [PATCH 1616/1664] bluefish: rebuild for Python 3.14 --- srcpkgs/bluefish/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/bluefish/template b/srcpkgs/bluefish/template index 65fcdf13c1ccf0..5a8f4cf2d26f8b 100644 --- a/srcpkgs/bluefish/template +++ b/srcpkgs/bluefish/template @@ -1,7 +1,7 @@ # Template file for 'bluefish' pkgname=bluefish version=2.2.17 -revision=1 +revision=2 build_style=gnu-configure configure_args="--enable-spell-check --disable-update-databases --disable-xml-catalog-update $(vopt_enable python)" From cac6dd8536d30ad48779b326a68289914ac63506 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:36 -0500 Subject: [PATCH 1617/1664] blender: update to 4.5.4. --- srcpkgs/blender/patches/cross.patch | 69 +++++++++++++++-------------- srcpkgs/blender/patches/numpy.patch | 13 ------ srcpkgs/blender/template | 4 +- 3 files changed, 38 insertions(+), 48 deletions(-) delete mode 100644 srcpkgs/blender/patches/numpy.patch diff --git a/srcpkgs/blender/patches/cross.patch b/srcpkgs/blender/patches/cross.patch index 2d491bffe098fe..151e26f3d06c3e 100644 --- a/srcpkgs/blender/patches/cross.patch +++ b/srcpkgs/blender/patches/cross.patch @@ -1,32 +1,9 @@ using a bare target name instead of a generator allows cmake to wrap it in CROSSCOMPILING_EMULATOR ---- a/source/blender/makesdna/intern/CMakeLists.txt -+++ b/source/blender/makesdna/intern/CMakeLists.txt -@@ -105,8 +105,7 @@ - ${CMAKE_CURRENT_BINARY_DIR}/dna_type_offsets.h - ${CMAKE_CURRENT_BINARY_DIR}/dna_verify.c - COMMAND -- ${CMAKE_COMMAND} -E env ${PLATFORM_ENV_BUILD} -- "$" -+ makesdna - ${CMAKE_CURRENT_BINARY_DIR}/dna.c - ${CMAKE_CURRENT_BINARY_DIR}/dna_type_offsets.h - ${CMAKE_CURRENT_BINARY_DIR}/dna_verify.c ---- a/source/blender/makesrna/intern/CMakeLists.txt -+++ b/source/blender/makesrna/intern/CMakeLists.txt -@@ -459,8 +459,7 @@ - add_custom_command( - OUTPUT ${GENSRC} - COMMAND -- ${CMAKE_COMMAND} -E env ${PLATFORM_ENV_BUILD} -- "$" ${CMAKE_CURRENT_BINARY_DIR}/ ${CMAKE_CURRENT_BINARY_DIR}/../ -+ makesrna ${CMAKE_CURRENT_BINARY_DIR}/ ${CMAKE_CURRENT_BINARY_DIR}/../ - DEPENDS makesrna - ) - ---- a/build_files/cmake/macros.cmake -+++ b/build_files/cmake/macros.cmake -@@ -990,7 +990,7 @@ +diff -ur a/build_files/cmake/macros.cmake b/build_files/cmake/macros.cmake +--- a/build_files/cmake/macros.cmake 2025-07-08 08:58:38.000000000 -0400 ++++ b/build_files/cmake/macros.cmake 2025-11-17 16:17:54.898589820 -0500 +@@ -1000,7 +1000,7 @@ add_custom_command( OUTPUT ${file_to} COMMAND ${CMAKE_COMMAND} -E make_directory ${_file_to_path} @@ -35,7 +12,7 @@ using a bare target name instead of a generator allows cmake to wrap it in CROSS DEPENDS ${file_from} datatoc) set_source_files_properties(${file_to} PROPERTIES GENERATED TRUE) -@@ -1017,7 +1017,7 @@ +@@ -1027,7 +1027,7 @@ add_custom_command( OUTPUT ${_file_to} COMMAND ${CMAKE_COMMAND} -E make_directory ${_file_to_path} @@ -44,18 +21,18 @@ using a bare target name instead of a generator allows cmake to wrap it in CROSS DEPENDS ${_file_from} datatoc) set_source_files_properties(${_file_to} PROPERTIES GENERATED TRUE) -@@ -1045,8 +1045,8 @@ +@@ -1056,8 +1056,8 @@ add_custom_command( - OUTPUT ${_file_to} + OUTPUT ${_file_to} ${_file_meta} COMMAND ${CMAKE_COMMAND} -E make_directory ${_file_to_path} -- COMMAND "$" ${_file_from} ${_file_tmp} +- COMMAND "$" ${_file_from} ${_file_tmp} ${_file_meta} - COMMAND "$" ${_file_tmp} ${_file_to} -+ COMMAND glsl_preprocess ${_file_from} ${_file_tmp} ++ COMMAND glsl_preprocess ${_file_from} ${_file_tmp} ${_file_meta} + COMMAND datatoc ${_file_tmp} ${_file_to} DEPENDS ${_file_from} datatoc glsl_preprocess) set_source_files_properties(${_file_tmp} PROPERTIES GENERATED TRUE) -@@ -1076,8 +1076,7 @@ +@@ -1088,8 +1088,7 @@ COMMAND ${CMAKE_COMMAND} -E make_directory ${_file_to_path} @@ -65,3 +42,29 @@ using a bare target name instead of a generator allows cmake to wrap it in CROSS DEPENDS msgfmt ${_file_from}) +diff -ur a/source/blender/makesdna/intern/CMakeLists.txt b/source/blender/makesdna/intern/CMakeLists.txt +--- a/source/blender/makesdna/intern/CMakeLists.txt 2025-07-08 08:59:47.000000000 -0400 ++++ b/source/blender/makesdna/intern/CMakeLists.txt 2025-11-17 16:17:13.523438205 -0500 +@@ -106,8 +106,7 @@ + ${CMAKE_CURRENT_BINARY_DIR}/dna_verify.cc + ${CMAKE_CURRENT_BINARY_DIR}/dna_struct_ids.cc + COMMAND +- ${CMAKE_COMMAND} -E env ${PLATFORM_ENV_BUILD} +- "$" ++ makesdna + ${CMAKE_CURRENT_BINARY_DIR}/dna.cc + ${CMAKE_CURRENT_BINARY_DIR}/dna_type_offsets.h + ${CMAKE_CURRENT_BINARY_DIR}/dna_verify.cc +diff -ur a/source/blender/makesrna/intern/CMakeLists.txt b/source/blender/makesrna/intern/CMakeLists.txt +--- a/source/blender/makesrna/intern/CMakeLists.txt 2025-07-08 08:59:47.000000000 -0400 ++++ b/source/blender/makesrna/intern/CMakeLists.txt 2025-11-17 16:16:37.015304420 -0500 +@@ -460,8 +460,7 @@ + add_custom_command( + OUTPUT ${GENSRC} + COMMAND +- ${CMAKE_COMMAND} -E env ${PLATFORM_ENV_BUILD} +- "$" ${CMAKE_CURRENT_BINARY_DIR}/ ${CMAKE_CURRENT_BINARY_DIR}/../ ++ makesrna ${CMAKE_CURRENT_BINARY_DIR}/ ${CMAKE_CURRENT_BINARY_DIR}/../ + DEPENDS makesrna + ) + diff --git a/srcpkgs/blender/patches/numpy.patch b/srcpkgs/blender/patches/numpy.patch deleted file mode 100644 index e94af22f02aa40..00000000000000 --- a/srcpkgs/blender/patches/numpy.patch +++ /dev/null @@ -1,13 +0,0 @@ -void's numpy uses a different path, and it doesn't seem to be possible to set it on Linux - ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -2519,7 +2519,7 @@ - # Always use numpy bundled in precompiled libs. - elseif((WITH_PYTHON_INSTALL AND WITH_PYTHON_INSTALL_NUMPY) OR WITH_PYTHON_NUMPY) - if(("${PYTHON_NUMPY_PATH}" STREQUAL "") OR (${PYTHON_NUMPY_PATH} MATCHES NOTFOUND)) -- find_python_package(numpy "core/include") -+ find_python_package(numpy "_core/include") - endif() - endif() - diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template index ac418816a30f28..521b05ab4d252d 100644 --- a/srcpkgs/blender/template +++ b/srcpkgs/blender/template @@ -1,6 +1,6 @@ # Template file for 'blender' pkgname=blender -version=4.4.3 +version=4.5.4 revision=1 archs="x86_64* aarch64* ppc64*" build_style=cmake @@ -33,7 +33,7 @@ maintainer="Enno Boland " license="GPL-3.0-or-later" homepage="https://www.blender.org" distfiles="https://download.blender.org/source/blender-${version}.tar.xz" -checksum=99ecdef24ece14084016ee47c756eeb2fc8a09c8487a0296b45a117224dc5ca7 +checksum=ea744e06a39265eb6d914fb57364ad357e709c90738f2729f1d480ba3fe8d805 python_version=3 LDFLAGS="-Wl,-z,stack-size=2097152" # Blender tests are executed against a system installation of blender. This From 36e3e18293e87509179109e890af6923f676e36f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:36 -0500 Subject: [PATCH 1618/1664] beets: rebuild for Python 3.14 --- srcpkgs/beets/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template index 4eec570a4d1cc3..50a0ec84dba6a1 100644 --- a/srcpkgs/beets/template +++ b/srcpkgs/beets/template @@ -1,7 +1,7 @@ # Template file for 'beets' pkgname=beets version=2.3.1 -revision=1 +revision=2 build_style=python3-pep517 # tests requires unpackaged librosa, pytest-flask make_check_args="--ignore=test/plugins/test_autobpm.py From fc2d558b4b8b60d1bac2a32556911d7c32c93cf7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:37 -0500 Subject: [PATCH 1619/1664] bcc: rebuild for Python 3.14 --- srcpkgs/bcc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template index a5b9613a7ac118..52680102fecfb9 100644 --- a/srcpkgs/bcc/template +++ b/srcpkgs/bcc/template @@ -1,7 +1,7 @@ # Template file for 'bcc' pkgname=bcc version=0.35.0 -revision=1 +revision=2 _llvmver=19 build_style=cmake configure_args="-DREVISION=${version} -DENABLE_LLVM_SHARED=1 From a27b14f70b5ede6ac89b1f1b1c53cc9575ce8fd3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:37 -0500 Subject: [PATCH 1620/1664] backintime: rebuild for Python 3.14 --- srcpkgs/backintime/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/backintime/template b/srcpkgs/backintime/template index fffff20bfdfb7b..555aaa73c357e7 100644 --- a/srcpkgs/backintime/template +++ b/srcpkgs/backintime/template @@ -1,7 +1,7 @@ # Template file for 'backintime' pkgname=backintime version=1.5.4 -revision=1 +revision=2 configure_args="--python3" pycompile_dirs="/usr/share/backintime" hostmakedepends="gettext python3" From 15b8bba8d76917025971a062b3f2a765a868fe3e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:37 -0500 Subject: [PATCH 1621/1664] backblaze-b2: rebuild for Python 3.14 --- srcpkgs/backblaze-b2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/backblaze-b2/template b/srcpkgs/backblaze-b2/template index 83de54ecb1e1b2..17c42a8bc84d40 100644 --- a/srcpkgs/backblaze-b2/template +++ b/srcpkgs/backblaze-b2/template @@ -1,7 +1,7 @@ # Template file for 'backblaze-b2' pkgname=backblaze-b2 version=4.4.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3 python3-build python3-packaging python3-pdm-backend python3-pip python3-setuptools_scm python3-wheel" depends="python3-argcomplete python3-Arrow python3-b2sdk python3-docutils python3-phx-class-registry From 8bbd879c082d4f4585af7d68fb0615e881bde1d7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:37 -0500 Subject: [PATCH 1622/1664] bCNC: rebuild for Python 3.14 --- srcpkgs/bCNC/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/bCNC/template b/srcpkgs/bCNC/template index 6b75d5d8572ad8..714888e9ebca33 100644 --- a/srcpkgs/bCNC/template +++ b/srcpkgs/bCNC/template @@ -1,7 +1,7 @@ # Template file for 'bCNC' pkgname=bCNC version=0.9.15 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pyserial python3-Pillow python3-tkinter python3-numpy python3-scipy From c827fa96536a4d884306316421885a4754efe9e8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:37 -0500 Subject: [PATCH 1623/1664] azote: rebuild for Python 3.14 --- srcpkgs/azote/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template index 841fca7f466005..ed25a74e0969e1 100644 --- a/srcpkgs/azote/template +++ b/srcpkgs/azote/template @@ -1,7 +1,7 @@ # Template file for 'azote' pkgname=azote version=1.16.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="gtk+3 feh libayatana-appindicator python3 python3-cairo python3-gobject From 8944c6e44bba724103da4eaff6aaf5c2b6cc2a46 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:37 -0500 Subject: [PATCH 1624/1664] awsume: rebuild for Python 3.14 --- srcpkgs/awsume/patches/fix-setup.patch | 124 +++++++++++++++++++++++++ srcpkgs/awsume/template | 2 +- 2 files changed, 125 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/awsume/patches/fix-setup.patch diff --git a/srcpkgs/awsume/patches/fix-setup.patch b/srcpkgs/awsume/patches/fix-setup.patch new file mode 100644 index 00000000000000..538f45e85ef6df --- /dev/null +++ b/srcpkgs/awsume/patches/fix-setup.patch @@ -0,0 +1,124 @@ +diff -Nur a/fastentrypoints.py b/fastentrypoints.py +--- a/fastentrypoints.py 2024-07-10 15:02:29.000000000 -0400 ++++ b/fastentrypoints.py 1969-12-31 19:00:00.000000000 -0500 +@@ -1,112 +0,0 @@ +-# noqa: D300,D400 +-# Copyright (c) 2016, Aaron Christianson +-# All rights reserved. +-# +-# Redistribution and use in source and binary forms, with or without +-# modification, are permitted provided that the following conditions are +-# met: +-# +-# 1. Redistributions of source code must retain the above copyright +-# notice, this list of conditions and the following disclaimer. +-# +-# 2. Redistributions in binary form must reproduce the above copyright +-# notice, this list of conditions and the following disclaimer in the +-# documentation and/or other materials provided with the distribution. +-# +-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS +-# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +-# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +-# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +-# HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +-# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +-# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +-# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +-# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +-# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +-''' +-Monkey patch setuptools to write faster console_scripts with this format: +- +- import sys +- from mymodule import entry_function +- sys.exit(entry_function()) +- +-This is better. +- +-(c) 2016, Aaron Christianson +-http://github.com/ninjaaron/fast-entry_points +-''' +-from setuptools.command import easy_install +-import re +-TEMPLATE = '''\ +-# -*- coding: utf-8 -*- +-# EASY-INSTALL-ENTRY-SCRIPT: '{3}','{4}','{5}' +-__requires__ = '{3}' +-import re +-import sys +- +-from {0} import {1} +- +-if __name__ == '__main__': +- sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) +- sys.exit({2}())''' +- +- +-@classmethod +-def get_args(cls, dist, header=None): # noqa: D205,D400 +- """ +- Yield write_script() argument tuples for a distribution's +- console_scripts and gui_scripts entry points. +- """ +- if header is None: +- # pylint: disable=E1101 +- header = cls.get_header() +- spec = str(dist.as_requirement()) +- for type_ in 'console', 'gui': +- group = type_ + '_scripts' +- for name, ep in dist.get_entry_map(group).items(): +- # ensure_safe_name +- if re.search(r'[\\/]', name): +- raise ValueError("Path separators not allowed in script names") +- script_text = TEMPLATE.format( +- ep.module_name, ep.attrs[0], '.'.join(ep.attrs), +- spec, group, name) +- # pylint: disable=E1101 +- args = cls._get_script_args(type_, name, header, script_text) +- for res in args: +- yield res +- +- +-# pylint: disable=E1101 +-easy_install.ScriptWriter.get_args = get_args +- +- +-def main(): +- import os +- import re +- import shutil +- import sys +- dests = sys.argv[1:] or ['.'] +- filename = re.sub('\.pyc$', '.py', __file__) +- +- for dst in dests: +- shutil.copy(filename, dst) +- manifest_path = os.path.join(dst, 'MANIFEST.in') +- setup_path = os.path.join(dst, 'setup.py') +- +- # Insert the include statement to MANIFEST.in if not present +- with open(manifest_path, 'a+') as manifest: +- manifest.seek(0) +- manifest_content = manifest.read() +- if 'include fastentrypoints.py' not in manifest_content: +- manifest.write(('\n' if manifest_content else '') + +- 'include fastentrypoints.py') +- +- # Insert the import statement to setup.py if not present +- with open(setup_path, 'a+') as setup: +- setup.seek(0) +- setup_content = setup.read() +- if 'import fastentrypoints' not in setup_content: +- setup.seek(0) +- setup.truncate() +- setup.write('import fastentrypoints\n' + setup_content) +diff -Nur a/setup.py b/setup.py +--- a/setup.py 2024-07-10 15:02:29.000000000 -0400 ++++ b/setup.py 2025-11-19 10:17:00.050814587 -0500 +@@ -1,4 +1,3 @@ +-import fastentrypoints + from setuptools import setup, find_packages + + import awsume diff --git a/srcpkgs/awsume/template b/srcpkgs/awsume/template index aa8ef36b01d0fd..7ba0a6b2e7a823 100644 --- a/srcpkgs/awsume/template +++ b/srcpkgs/awsume/template @@ -1,7 +1,7 @@ # Template file for 'awsume' pkgname=awsume version=4.5.5 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3 python3-setuptools" makedepends="python3-boto3 python3-botocore python3-colorama python3-pluggy python3-psutil python3-xmltodict python3-yaml python3-dateutil" From c792c39edf5aac98643996a192ca79295338406d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:37 -0500 Subject: [PATCH 1625/1664] aws-cli: rebuild for Python 3.14 --- srcpkgs/aws-cli/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/aws-cli/template b/srcpkgs/aws-cli/template index 1bfdf13c59c2c0..f2eeb3b1ac75c8 100644 --- a/srcpkgs/aws-cli/template +++ b/srcpkgs/aws-cli/template @@ -1,7 +1,7 @@ # Template file for 'aws-cli' pkgname=aws-cli version=1.22.88 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="groff python3-botocore python3-s3transfer python3-colorama From 41ee5dbf97c9b6203fc207b7a116cb6be62d3ed5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:38 -0500 Subject: [PATCH 1626/1664] avr-gdb: rebuild for Python 3.14 --- srcpkgs/avr-gdb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/avr-gdb/template b/srcpkgs/avr-gdb/template index 3bfd5e27422116..749211b2caf14e 100644 --- a/srcpkgs/avr-gdb/template +++ b/srcpkgs/avr-gdb/template @@ -1,7 +1,7 @@ # Template file for 'avr-gdb' pkgname=avr-gdb version=15.2 -revision=1 +revision=2 build_style=gnu-configure configure_args="--target=avr --disable-werror --disable-nls --with-system-readline --with-system-gdbinit=/etc/gdb/gdbinit --with-system-zlib From ce44f49b3889da1a9a2b2efbbd3be5d414c355f9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:38 -0500 Subject: [PATCH 1627/1664] avideo: rebuild for Python 3.14 --- srcpkgs/avideo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template index d229094ce0e2d4..52dabd866927bd 100644 --- a/srcpkgs/avideo/template +++ b/srcpkgs/avideo/template @@ -1,7 +1,7 @@ # Template file for 'avideo' pkgname=avideo version=2017.9.27 -revision=10 +revision=11 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 9384df6d5db6afb0b9b278dfe17e66c61515d034 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:38 -0500 Subject: [PATCH 1628/1664] autotiling: rebuild for Python 3.14 --- srcpkgs/autotiling/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/autotiling/template b/srcpkgs/autotiling/template index 88cedeaa2cbd79..fbd752c1e11c4c 100644 --- a/srcpkgs/autotiling/template +++ b/srcpkgs/autotiling/template @@ -1,7 +1,7 @@ # Template file for 'autotiling' pkgname=autotiling version=1.9.3 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-wheel" depends="python3-i3ipc" From 616018b8f78054facdc58e26b079e1d65369db9a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:38 -0500 Subject: [PATCH 1629/1664] autorandr: rebuild for Python 3.14 --- srcpkgs/autorandr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template index 46aa5398a15da9..16341530151a5c 100644 --- a/srcpkgs/autorandr/template +++ b/srcpkgs/autorandr/template @@ -1,7 +1,7 @@ # Template file for 'autorandr' pkgname=autorandr version=1.15 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools pkg-config desktop-file-utils" depends="python3-setuptools xrandr" From 0e065a489dcdae7cbf496aa887fc227e87852a61 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:38 -0500 Subject: [PATCH 1630/1664] autopep8: rebuild for Python 3.14 --- srcpkgs/autopep8/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/autopep8/template b/srcpkgs/autopep8/template index 4f34cf5550a215..0b5ca0d23e34cf 100644 --- a/srcpkgs/autopep8/template +++ b/srcpkgs/autopep8/template @@ -1,7 +1,7 @@ # Template file for 'autopep8' pkgname=autopep8 version=2.3.2 -revision=1 +revision=2 build_style=python3-pep517 # fails in CI due to readonly check make_check_args="-k not(io_error)" From a50704a197d31c755394af7426fae62a89cb6265 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:38 -0500 Subject: [PATCH 1631/1664] attic: rebuild for Python 3.14 --- srcpkgs/attic/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template index dcb3cfd0ca9598..09d6e5ecef40b5 100644 --- a/srcpkgs/attic/template +++ b/srcpkgs/attic/template @@ -1,7 +1,7 @@ # Template file for 'attic' pkgname=attic version=0.16 -revision=25 +revision=26 build_style=python3-module hostmakedepends="python3-setuptools python3-Cython python3-Sphinx python3-pytz" makedepends="python3-devel openssl-devel acl-devel" From 47fe7e810677b0326cadc211f7ee7ee00d9149eb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:38 -0500 Subject: [PATCH 1632/1664] asncounter: rebuild for Python 3.14 --- srcpkgs/asncounter/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/asncounter/template b/srcpkgs/asncounter/template index 7507def97c8904..efd1ad1cebe1df 100644 --- a/srcpkgs/asncounter/template +++ b/srcpkgs/asncounter/template @@ -1,7 +1,7 @@ # Template file for 'asncounter' pkgname=asncounter version=0.5.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="pandoc python3-setuptools python3-setuptools_scm python3-wheel" makedepends="python3-devel" From 658156df6de0db51f836e4d740038c58317a2421 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:39 -0500 Subject: [PATCH 1633/1664] asciinema: rebuild for Python 3.14 --- srcpkgs/asciinema/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template index 8b70c8a55186a1..37c1a0b5e27a81 100644 --- a/srcpkgs/asciinema/template +++ b/srcpkgs/asciinema/template @@ -1,7 +1,7 @@ # Template file for 'asciinema' pkgname=asciinema version=2.4.0 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3" From b5c7a433fcd8a684a6f2cba8571a90dc6c9cfaee Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:39 -0500 Subject: [PATCH 1634/1664] arandr: rebuild for Python 3.14 --- srcpkgs/arandr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template index 899a16b047c937..5d52b39cd3e291 100644 --- a/srcpkgs/arandr/template +++ b/srcpkgs/arandr/template @@ -1,7 +1,7 @@ # Template file for 'arandr' pkgname=arandr version=0.1.11 -revision=3 +revision=4 build_style=python3-module hostmakedepends="gettext python3-setuptools python3-docutils" depends="python3-gobject gtk+3 xrandr" From 74174af72c969ed079a7546908f732a3891d1f30 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:39 -0500 Subject: [PATCH 1635/1664] apostrophe: rebuild for Python 3.14 --- srcpkgs/apostrophe/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/apostrophe/template b/srcpkgs/apostrophe/template index 1a9ab5bc95388d..f2b64a2ad18455 100644 --- a/srcpkgs/apostrophe/template +++ b/srcpkgs/apostrophe/template @@ -1,7 +1,7 @@ # Template file for 'apostrophe' pkgname=apostrophe version=2.6.3 -revision=6 +revision=7 build_style=meson build_helper=gir hostmakedepends="python3 glib-devel appstream-glib pkg-config gettext sassc" From f4302caba1a293a95cef4fa367af3ef00564f994 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 17 Nov 2025 10:34:19 -0500 Subject: [PATCH 1636/1664] ansible: update to 12.2.0. --- srcpkgs/ansible/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template index 274f21e513245f..3f69bc52ad4424 100644 --- a/srcpkgs/ansible/template +++ b/srcpkgs/ansible/template @@ -1,7 +1,7 @@ # Template file for 'ansible' pkgname=ansible -version=10.5.0 -revision=2 +version=12.2.0 +revision=1 build_style="python3-pep517" hostmakedepends="python3-setuptools python3-wheel" depends="ansible-core" @@ -10,6 +10,6 @@ maintainer="Orphaned " license="GPL-3.0-or-later" homepage="https://www.ansible.com/" distfiles="${PYPI_SITE}/a/ansible/ansible-${version}.tar.gz" -checksum=ba2045031a7d60c203b6e5fe1f8eaddd53ae076f7ada910e636494384135face +checksum=0563dfd33ebd28caf6ccdc7a6d22a7fdafbd9c9c42fefcae5179616a53a35211 # Relevant tests happen in ansible-core make_check=no From 5394daf8d78ec3d29fbc2a847bf8568a048b284d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:39 -0500 Subject: [PATCH 1637/1664] angrysearch: rebuild for Python 3.14 --- srcpkgs/angrysearch/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/angrysearch/template b/srcpkgs/angrysearch/template index b98f0f55dda674..5eabe8e6094a88 100644 --- a/srcpkgs/angrysearch/template +++ b/srcpkgs/angrysearch/template @@ -1,7 +1,7 @@ # Template file for 'angrysearch' pkgname=angrysearch version=1.0.4 -revision=1 +revision=2 pycompile_dirs="usr/share/angrysearch" hostmakedepends="python3" depends="python3-PyQt5 xdg-utils" From e1763ee0d0784419d145235108b18d913a065e88 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:39 -0500 Subject: [PATCH 1638/1664] alot: rebuild for Python 3.14 --- srcpkgs/alot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template index 46a61c3ed80112..c69a57cbfd8bf0 100644 --- a/srcpkgs/alot/template +++ b/srcpkgs/alot/template @@ -1,7 +1,7 @@ # Template file for 'alot' pkgname=alot version=0.11 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-Sphinx python3-notmuch2 python3-cffi python3-importlib_metadata" From da8d5390da81da32e10888d8bbb6cdc8dd702270 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:39 -0500 Subject: [PATCH 1639/1664] alienfx: rebuild for Python 3.14 --- srcpkgs/alienfx/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/alienfx/template b/srcpkgs/alienfx/template index 39580df96caaad..50413174af4420 100644 --- a/srcpkgs/alienfx/template +++ b/srcpkgs/alienfx/template @@ -1,7 +1,7 @@ # Template file for 'alienfx' pkgname=alienfx version=2.4.3 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-usb python3-cairo python3-gobject python3-setuptools From 938e627b6f4bb5b5810883b7b98a8118a31b5c4a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:40 -0500 Subject: [PATCH 1640/1664] aircrack-ng: rebuild for Python 3.14 --- srcpkgs/aircrack-ng/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/aircrack-ng/template b/srcpkgs/aircrack-ng/template index a440b9af54a547..995c3c92264fa4 100644 --- a/srcpkgs/aircrack-ng/template +++ b/srcpkgs/aircrack-ng/template @@ -1,7 +1,7 @@ # Template file for 'aircrack-ng' pkgname=aircrack-ng version=1.7 -revision=5 +revision=6 build_style=gnu-configure hostmakedepends="automake ethtool libtool pkg-config python3 python3-setuptools" makedepends="libhwloc-devel libnl3-devel libpcap-devel libpciaccess-devel From 88377d60f0eda290191613a4e8d8b3f24c16af87 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:40 -0500 Subject: [PATCH 1641/1664] afl++: rebuild for Python 3.14 --- srcpkgs/afl++/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/afl++/template b/srcpkgs/afl++/template index 918c4d7cc82df9..a3b7d61f50600c 100644 --- a/srcpkgs/afl++/template +++ b/srcpkgs/afl++/template @@ -1,7 +1,7 @@ # Template file for 'afl++' pkgname=afl++ version=4.34c -revision=2 +revision=3 archs="i686* x86_64* aarch64*" build_helper="qemu" build_style=gnu-makefile From 0919d71f2d59a465070a539764154b63be8d8bb3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:40 -0500 Subject: [PATCH 1642/1664] afew: rebuild for Python 3.14 --- srcpkgs/afew/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template index c49c0446a0cb21..752f9b9eac8d6b 100644 --- a/srcpkgs/afew/template +++ b/srcpkgs/afew/template @@ -1,7 +1,7 @@ # Template file for 'afew' pkgname=afew version=3.0.1 -revision=8 +revision=9 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-Sphinx pkg-config" depends="notmuch-python3 python3-dkimpy python3-chardet notmuch" From 4ac221a260e9f44f84125ea4c459a9e47f2cbac2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:40 -0500 Subject: [PATCH 1643/1664] activityrelay: rebuild for Python 3.14 --- srcpkgs/activityrelay/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/activityrelay/template b/srcpkgs/activityrelay/template index 12fec9fd2977db..44a320fdc3e829 100644 --- a/srcpkgs/activityrelay/template +++ b/srcpkgs/activityrelay/template @@ -1,7 +1,7 @@ # Template file for 'activityrelay' pkgname=activityrelay version=0.2.4 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-aiohttp python3-aputils python3-cachetools python3-click From fb350634fd0b7ac948a54c8ba675b93b14f0bee4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:40 -0500 Subject: [PATCH 1644/1664] TwitchNotifier: rebuild for Python 3.14 --- srcpkgs/TwitchNotifier/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template index eb4ac2bd50f705..c569c9f0352190 100644 --- a/srcpkgs/TwitchNotifier/template +++ b/srcpkgs/TwitchNotifier/template @@ -1,7 +1,7 @@ # Template file for 'TwitchNotifier' pkgname=TwitchNotifier version=0.5 -revision=8 +revision=9 build_style=python3-module hostmakedepends="python3-devel python3-setuptools" makedepends="python3-devel" From 3ced3bf49a8f7dea8a64dbfa31ac1410e3b492d6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:40 -0500 Subject: [PATCH 1645/1664] Trimage: rebuild for Python 3.14 --- srcpkgs/Trimage/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/Trimage/template b/srcpkgs/Trimage/template index 8e1bee95269a1a..14600e0bf0ca8f 100644 --- a/srcpkgs/Trimage/template +++ b/srcpkgs/Trimage/template @@ -1,7 +1,7 @@ # Template file for 'Trimage' pkgname=Trimage version=1.0.6 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 jpegoptim optipng advancecomp pngcrush python3-PyQt5" From 76089f35ab0222dc6dd61d682273fdd0de09387b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:40 -0500 Subject: [PATCH 1646/1664] Sunflower: rebuild for Python 3.14 --- srcpkgs/Sunflower/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/Sunflower/template b/srcpkgs/Sunflower/template index 67ac82b08a263e..aa1375de9e0b1c 100644 --- a/srcpkgs/Sunflower/template +++ b/srcpkgs/Sunflower/template @@ -1,7 +1,7 @@ # Template file for 'Sunflower' pkgname=Sunflower version=0.5pl63 -revision=1 +revision=2 build_style=python3-module hostmakedepends="libnotify-devel vte3-devel python3-setuptools python3-chardet python3-gobject" depends="gtk+3 vte3 python3 python3-gobject python3-chardet From 08f8de243f44fd3fe9090f12ddea49e602bffec8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:41 -0500 Subject: [PATCH 1647/1664] Solaar: rebuild for Python 3.14 --- srcpkgs/Solaar/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template index bb434a05d40a4d..8936b2ecf2c5d7 100644 --- a/srcpkgs/Solaar/template +++ b/srcpkgs/Solaar/template @@ -1,7 +1,7 @@ # Template file for 'Solaar' pkgname=Solaar version=1.1.14 -revision=2 +revision=3 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3-evdev python3-pyudev python3-psutil python3-yaml python3-dbus From e70d1ba298a9b190ffee9b9c3237ccf9cb4eb514 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:41 -0500 Subject: [PATCH 1648/1664] ReText: rebuild for Python 3.14 --- srcpkgs/ReText/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template index aaecedf0883d50..72b0be5111264e 100644 --- a/srcpkgs/ReText/template +++ b/srcpkgs/ReText/template @@ -1,7 +1,7 @@ # Template file for 'ReText' pkgname=ReText version=7.2.3 -revision=3 +revision=4 build_style=python3-module hostmakedepends="ImageMagick python3 qt5-host-tools qt5-tools python3-setuptools" makedepends="python3-Markdown python3-Markups python3-PyQt5-webkit qt5-tools" From c99e2015a206e7d22e95e0e52e9bd5345ba3d226 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:41 -0500 Subject: [PATCH 1649/1664] PyInstaller: rebuild for Python 3.14 --- srcpkgs/PyInstaller/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/PyInstaller/template b/srcpkgs/PyInstaller/template index f2ee5eaa3fdbfb..508f8b35e40b1a 100644 --- a/srcpkgs/PyInstaller/template +++ b/srcpkgs/PyInstaller/template @@ -1,7 +1,7 @@ # Template file for 'PyInstaller' pkgname=PyInstaller version=4.1 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="zlib-devel" From e1d5e419bfc7fd0424d2bde08d6678cf855d9478 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:41 -0500 Subject: [PATCH 1650/1664] PhotoCollage: rebuild for Python 3.14 --- srcpkgs/PhotoCollage/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template index b2f73f003c3475..e0dc541d222620 100644 --- a/srcpkgs/PhotoCollage/template +++ b/srcpkgs/PhotoCollage/template @@ -1,7 +1,7 @@ # Template file for 'PhotoCollage' pkgname=PhotoCollage version=1.4.8 -revision=1 +revision=2 build_style=python3-module hostmakedepends="gettext python3-setuptools" depends="python3-Pillow python3-gobject" From 63aef89c8d0104941924c15b4e8c8b5dce9aed4d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:41 -0500 Subject: [PATCH 1651/1664] PackageKit: rebuild for Python 3.14 --- srcpkgs/PackageKit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/PackageKit/template b/srcpkgs/PackageKit/template index 798eea87ba3d3f..0a50bbbc7f4dde 100644 --- a/srcpkgs/PackageKit/template +++ b/srcpkgs/PackageKit/template @@ -1,7 +1,7 @@ # Template file for 'PackageKit' pkgname=PackageKit version=1.2.4 -revision=4 +revision=5 build_style=meson build_helper="gir" configure_args="-Dgstreamer_plugin=false -Dgtk_module=false From 806cc152e1ebcad184b03d73f477f1b9fdb2e186 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:41 -0500 Subject: [PATCH 1652/1664] OpenLP: rebuild for Python 3.14 --- srcpkgs/OpenLP/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template index d02e82a4e58956..40abf21edf4c53 100644 --- a/srcpkgs/OpenLP/template +++ b/srcpkgs/OpenLP/template @@ -1,7 +1,7 @@ # Template file for 'OpenLP' pkgname=OpenLP version=3.1.7 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools qt5-host-tools" depends="python3-alembic python3-platformdirs python3-BeautifulSoup4 From 69352c94ca822bf65875f83b6808d4f1ad7faa2e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:41 -0500 Subject: [PATCH 1653/1664] LabJackPython: rebuild for Python 3.14 --- srcpkgs/LabJackPython/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/LabJackPython/template b/srcpkgs/LabJackPython/template index 906117f1d0d694..66e5074820083c 100644 --- a/srcpkgs/LabJackPython/template +++ b/srcpkgs/LabJackPython/template @@ -1,7 +1,7 @@ # Template file for 'LabJackPython' pkgname=LabJackPython version=2.0.4 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 exodriver" From 603126c7029b196083a90d3c6a5291158ba98851 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:42 -0500 Subject: [PATCH 1654/1664] Komikku: rebuild for Python 3.14 --- srcpkgs/Komikku/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/Komikku/template b/srcpkgs/Komikku/template index 8eac123241e414..405a40919d4d12 100644 --- a/srcpkgs/Komikku/template +++ b/srcpkgs/Komikku/template @@ -1,7 +1,7 @@ # Template file for 'Komikku' pkgname=Komikku version=1.85.0 -revision=1 +revision=2 build_style=meson build_helper=gir hostmakedepends="gettext glib-devel pkg-config desktop-file-utils From 6eb12f5b54e2799cb895504449f207ecc21cd424 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:42 -0500 Subject: [PATCH 1655/1664] Grammalecte: rebuild for Python 3.14 --- srcpkgs/Grammalecte/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/Grammalecte/template b/srcpkgs/Grammalecte/template index b32dce3f507ead..1a366b9efd5e20 100644 --- a/srcpkgs/Grammalecte/template +++ b/srcpkgs/Grammalecte/template @@ -1,7 +1,7 @@ # Template file for 'Grammalecte' pkgname=Grammalecte version=1.6.0 -revision=7 +revision=8 create_wrksrc=yes build_style=python3-module hostmakedepends="python3-setuptools" From 2cffc4f8a59144cd975d931b795989f68a6669b3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:42 -0500 Subject: [PATCH 1656/1664] GCP-Guest-Environment: rebuild for Python 3.14 --- srcpkgs/GCP-Guest-Environment/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/GCP-Guest-Environment/template b/srcpkgs/GCP-Guest-Environment/template index 0827b04d99da06..3a7afabb4e1976 100644 --- a/srcpkgs/GCP-Guest-Environment/template +++ b/srcpkgs/GCP-Guest-Environment/template @@ -1,7 +1,7 @@ # Template file for 'GCP-Guest-Environment' pkgname=GCP-Guest-Environment version=20191210 -revision=6 +revision=7 build_wrksrc="packages/python-google-compute-engine" build_style=python3-module hostmakedepends="python3-setuptools python3-distro" From a5c5a0cc814d8dec5ba7c73033dad9706b2ff909 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:42 -0500 Subject: [PATCH 1657/1664] DisplayCAL: update to 3.9.17. --- srcpkgs/DisplayCAL/patches/python-3-12.patch | 103 ------------------- srcpkgs/DisplayCAL/template | 6 +- 2 files changed, 3 insertions(+), 106 deletions(-) delete mode 100644 srcpkgs/DisplayCAL/patches/python-3-12.patch diff --git a/srcpkgs/DisplayCAL/patches/python-3-12.patch b/srcpkgs/DisplayCAL/patches/python-3-12.patch deleted file mode 100644 index cf63082ae85c05..00000000000000 --- a/srcpkgs/DisplayCAL/patches/python-3-12.patch +++ /dev/null @@ -1,103 +0,0 @@ -From 0025940335eb1bd56f03f742aa095028d7ffa06f Mon Sep 17 00:00:00 2001 -From: Erkan Ozgur Yilmaz -Date: Sun, 24 Mar 2024 10:24:36 +0000 -Subject: [PATCH] - Fixed #335 - ---- - .github/workflows/pytest.yml | 3 +++ - DisplayCAL/meta.py | 2 +- - 2 files changed, 4 insertions(+), 1 deletion(-) - -diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml -index 02666a76..c9236a93 100644 ---- a/.github/workflows/pytest.yml -+++ b/.github/workflows/pytest.yml -@@ -20,12 +20,15 @@ jobs: - - "3.9" - - "3.10" - - "3.11" -+ - "3.12" - wx-version: - - "4.1.1" - - "4.2.1" - exclude: - - python-version: "3.11" - wx-version: "4.1.1" -+ - python-version: "3.12" -+ wx-version: "4.1.1" - - steps: - -diff --git a/DisplayCAL/meta.py b/DisplayCAL/meta.py -index 30797cdf..fa52e733 100644 ---- a/DisplayCAL/meta.py -+++ b/DisplayCAL/meta.py -@@ -62,7 +62,7 @@ - name_html = 'DisplayCAL' - - py_minversion = (3, 8) --py_maxversion = (3, 11) -+py_maxversion = (3, 12) - - version = VERSION_STRING - version_lin = VERSION_STRING # Linux -commit 64336cdc9af0eb858ceeab0522bb9747008a8466 -Author: Patrick Zwerschke -Date: Sun Mar 24 14:47:01 2024 +0100 - - updated testing environment to python 3.12 - -diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml -index c9236a93..16d19983 100644 ---- a/.github/workflows/pytest.yml -+++ b/.github/workflows/pytest.yml -@@ -32,7 +32,7 @@ jobs: - - steps: - -- - uses: actions/checkout@v3 -+ - uses: actions/checkout@v4 - - - name: Set Environment Variables - run: | -@@ -45,13 +45,10 @@ jobs: - echo "add_dir_str=cpython-310" >> $GITHUB_ENV - elif [ "${{ matrix.python-version }}" == "3.11" ]; then - echo "add_dir_str=cpython-311" >> $GITHUB_ENV -+ elif [ "${{ matrix.python-version }}" == "3.12" ]; then -+ echo "add_dir_str=cpython-312" >> $GITHUB_ENV - fi - -- - name: Setup timezone -- uses: zcong1993/setup-timezone@master -- with: -- timezone: UTC -- - - name: Setup xvfb - run: | - sudo apt-get update -@@ -69,7 +66,7 @@ jobs: - sudo /usr/bin/Xvfb $DISPLAY -screen 0 1280x1024x24 & - - - name: Setup Python ${{ matrix.python-version }} -- uses: actions/setup-python@v4 -+ uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - -diff --git a/DisplayCAL/RealDisplaySizeMM.py b/DisplayCAL/RealDisplaySizeMM.py -index 25b730d0..e77dcb43 100644 ---- a/DisplayCAL/RealDisplaySizeMM.py -+++ b/DisplayCAL/RealDisplaySizeMM.py -@@ -27,6 +27,8 @@ else: - from DisplayCAL.lib64.python310.RealDisplaySizeMM import * - elif sys.version_info[:2] == (3, 11): - from DisplayCAL.lib64.python311.RealDisplaySizeMM import * -+ elif sys.version_info[:2] == (3, 12): -+ from DisplayCAL.lib64.python312.RealDisplaySizeMM import * - # else: - # pass - -diff --git a/DisplayCAL/lib64/python312/__init__.py b/DisplayCAL/lib64/python312/__init__.py -new file mode 100644 -index 00000000..e69de29b diff --git a/srcpkgs/DisplayCAL/template b/srcpkgs/DisplayCAL/template index 9c7290ba011c39..5cf2d1ae44bf11 100644 --- a/srcpkgs/DisplayCAL/template +++ b/srcpkgs/DisplayCAL/template @@ -1,7 +1,7 @@ # Template file for 'DisplayCAL' pkgname=DisplayCAL -version=3.9.12 -revision=2 +version=3.9.17 +revision=1 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel libXxf86vm-devel libXinerama-devel libXrandr-devel" @@ -12,7 +12,7 @@ maintainer="lemmi " license="GPL-3.0-or-later" homepage="https://github.com/eoyilmaz/displaycal-py3" distfiles="https://github.com/eoyilmaz/displaycal-py3/archive/refs/tags/${version}.tar.gz" -checksum=6ea182a5992f316f6aa63d55333e5e9caa065807224b8840470d461bb30e9ff8 +checksum=ddc84d7e2c6b4bbaf981d2a8fb99910d14fd39b89023de4fac824098eb567544 make_check=no # checks fail to build pre_configure() { From a982e0d58e0590c1045fd31d0da7204c2d749740 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:42 -0500 Subject: [PATCH 1658/1664] DSView: rebuild for Python 3.14 --- srcpkgs/DSView/template | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/srcpkgs/DSView/template b/srcpkgs/DSView/template index 649f7e7355f216..78c0aa8d11a9d4 100644 --- a/srcpkgs/DSView/template +++ b/srcpkgs/DSView/template @@ -1,7 +1,7 @@ # Template file for 'DSView' pkgname=DSView version=1.3.2 -revision=2 +revision=3 build_style=cmake hostmakedepends="pkg-config qt5-qmake qt5-host-tools" makedepends="boost-devel-minimal fftw-devel libglib-devel libusb-devel python3-devel qt5-devel" @@ -12,3 +12,5 @@ homepage="https://github.com/DreamSourceLab/DSView" changelog="https://raw.githubusercontent.com/DreamSourceLab/DSView/master/NEWS31" distfiles="https://github.com/DreamSourceLab/DSView/archive/refs/tags/v${version}.tar.gz" checksum=da68674c32da7bd212883d599267a137ce152060d28796ea16cc3442695de7ab + +export CFLAGS="-fpermissive" From 749c7f7e54ae4229972422824aa89483d96947d2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:43 -0500 Subject: [PATCH 1659/1664] Carla: rebuild for Python 3.14 --- srcpkgs/Carla/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/Carla/template b/srcpkgs/Carla/template index 644e9e046d42fc..44c8e3474bd856 100755 --- a/srcpkgs/Carla/template +++ b/srcpkgs/Carla/template @@ -1,7 +1,7 @@ # Template file for 'Carla' pkgname=Carla version=2.5.10 -revision=1 +revision=2 archs="x86_64* i686* aarch64* arm*" build_style=gnu-makefile pycompile_dirs="usr/share/carla" From bf65c2a359ec29568d928043e5ce1af1bd973d8c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Wed, 19 Nov 2025 22:06:29 -0500 Subject: [PATCH 1660/1664] duiadns: update to 1.4. --- srcpkgs/duiadns/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/duiadns/template b/srcpkgs/duiadns/template index c4d192fc18b102..01f2aa9c9a05d3 100644 --- a/srcpkgs/duiadns/template +++ b/srcpkgs/duiadns/template @@ -1,6 +1,6 @@ # Template file for 'duiadns' pkgname=duiadns -version=1.3 +version=1.4 revision=1 depends="python3-netifaces python3-netaddr python3-requests" short_desc="Python client for Duiadns dynamic DNS hosting service" @@ -8,7 +8,7 @@ maintainer="Andrew J. Hesford " license="BSD-2-Clause" homepage="https://github.com/ahesford/duiadns" distfiles="${homepage}/archive/v${version}.tar.gz" -checksum=2c62e828dffcc26f210aed036d3e43d97f509c6dfb5a15fd639dd2f0844382d6 +checksum=6c7bb930d20d1501ca3dbf2c5c020a51a45c2fb58a0ecd0c974a99a3b38ea9a7 system_accounts="_duiadns" _duiadns_homedir="/var/empty" _duiadns_descr="duiadns user" From 75f877e24a90e5ee1e933b01e87de037f540aa3b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 6 Dec 2025 10:39:42 -0500 Subject: [PATCH 1661/1664] python3: update to 3.14.2. --- srcpkgs/python3/template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template index f595f26d8abf03..1bbde563979332 100644 --- a/srcpkgs/python3/template +++ b/srcpkgs/python3/template @@ -5,7 +5,7 @@ # - coccinelle # pkgname=python3 -version=3.14.1 +version=3.14.2 revision=1 build_style="gnu-configure" configure_args="--enable-shared --enable-ipv6 @@ -22,13 +22,13 @@ short_desc="Python programming language (${version%.*} series)" maintainer="Andrew J. Hesford " license="Python-2.0" homepage="https://www.python.org" -_bluez="bluez-5.76" +_bluez="bluez-5.78" distfiles=" https://www.python.org/ftp/python/${version%rc*}/Python-${version}.tar.xz ${KERNEL_SITE}/bluetooth/${_bluez}.tar.xz " -checksum="8dfa08b1959d9d15838a1c2dab77dc8d8ff4a553a1ed046dfacbc8095c6d42fc - 55e2c645909ad82d833c42ce85ec20434e0ef0070941b1eab73facdd240bbd63" +checksum="ce543ab854bc256b61b71e9b27f831ffd1bfd60a479d639f8be7f9757cf573e9 + 830fed1915c5d375b8de0f5e6f45fcdea0dcc5ff5ffb3d31db6ed0f00d73c5e3" skip_extraction="${_bluez}.tar.xz" alternatives=" From 2007cc974cb5fbf696a8865c724135bbd4ecfffc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 6 Dec 2025 10:42:56 -0500 Subject: [PATCH 1662/1664] python3-tkinter: update to 3.14.2. --- srcpkgs/python3-tkinter/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template index 03979a79d7ee70..cf30def7860b6e 100644 --- a/srcpkgs/python3-tkinter/template +++ b/srcpkgs/python3-tkinter/template @@ -8,7 +8,7 @@ _desc="Python programming language" pkgname=python3-tkinter -version=3.14.1 +version=3.14.2 revision=1 build_style="gnu-configure" configure_args="--enable-shared --enable-ipv6 @@ -25,7 +25,7 @@ maintainer="Andrew J. Hesford " homepage="https://www.python.org" license="Python-2.0" distfiles="https://www.python.org/ftp/python/${version%rc*}/Python-${version}.tar.xz" -checksum=8dfa08b1959d9d15838a1c2dab77dc8d8ff4a553a1ed046dfacbc8095c6d42fc +checksum=ce543ab854bc256b61b71e9b27f831ffd1bfd60a479d639f8be7f9757cf573e9 if [ "$XBPS_TARGET_LIBC" = "glibc" ]; then makedepends+=" libxcrypt-devel" From b0a7b7047722ef8fc47dcbcbc54851688b05ba49 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 6 Dec 2025 10:53:05 -0500 Subject: [PATCH 1663/1664] python3-networkx: update to 3.6. --- ...b527998dcc9077f704848e48538020e36098.patch | 35 ------------------- srcpkgs/python3-networkx/template | 6 ++-- 2 files changed, 3 insertions(+), 38 deletions(-) delete mode 100644 srcpkgs/python3-networkx/patches/05c7b527998dcc9077f704848e48538020e36098.patch diff --git a/srcpkgs/python3-networkx/patches/05c7b527998dcc9077f704848e48538020e36098.patch b/srcpkgs/python3-networkx/patches/05c7b527998dcc9077f704848e48538020e36098.patch deleted file mode 100644 index 3d8e132ded69d9..00000000000000 --- a/srcpkgs/python3-networkx/patches/05c7b527998dcc9077f704848e48538020e36098.patch +++ /dev/null @@ -1,35 +0,0 @@ -Taken from https://github.com/networkx/networkx/pull/8096 - -From 05c7b527998dcc9077f704848e48538020e36098 Mon Sep 17 00:00:00 2001 -From: Ross Barnowski -Date: Tue, 3 Jun 2025 13:05:37 -0700 -Subject: [PATCH] Fix gh-8091 - ---- - networkx/generators/lattice.py | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/networkx/generators/lattice.py b/networkx/generators/lattice.py -index 95e520d2ce1..0617cd2bf7a 100644 ---- a/networkx/generators/lattice.py -+++ b/networkx/generators/lattice.py -@@ -124,15 +124,15 @@ def grid_graph(dim, periodic=False): - >>> len(G) - 6 - """ -+ from collections.abc import Iterable -+ - from networkx.algorithms.operators.product import cartesian_product - - if not dim: - return empty_graph(0) - -- try: -- func = (cycle_graph if p else path_graph for p in periodic) -- except TypeError: -- func = repeat(cycle_graph if periodic else path_graph) -+ periodic = repeat(periodic) if not isinstance(periodic, Iterable) else periodic -+ func = (cycle_graph if p else path_graph for p in periodic) - - G = next(func)(dim[0]) - for current_dim in dim[1:]: diff --git a/srcpkgs/python3-networkx/template b/srcpkgs/python3-networkx/template index 4e90de7a83c50f..c92d4cc07850ed 100644 --- a/srcpkgs/python3-networkx/template +++ b/srcpkgs/python3-networkx/template @@ -1,7 +1,7 @@ # Template file for 'python3-networkx' pkgname=python3-networkx -version=3.5 -revision=2 +version=3.6 +revision=1 build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" depends="python3" @@ -13,7 +13,7 @@ license="BSD-3-Clause" homepage="https://networkx.org" changelog="https://github.com/networkx/networkx/raw/main/doc/release/release_${version}.rst" distfiles="${PYPI_SITE}/n/networkx/networkx-${version}.tar.gz" -checksum=d4c6f9cf81f52d69230866796b82afbccdec3db7ae4fbd1b65ea750feed50037 +checksum=285276002ad1f7f7da0f7b42f004bcba70d381e936559166363707fdad3d72ad post_install() { vlicense LICENSE.txt From c13b5f6d60def7f3227dcf7d93ea9d7d16f7a45d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 6 Dec 2025 10:55:19 -0500 Subject: [PATCH 1664/1664] srcpkgs/lc3plus/update: remove mysterious, unused file --- srcpkgs/lc3plus/update | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 srcpkgs/lc3plus/update diff --git a/srcpkgs/lc3plus/update b/srcpkgs/lc3plus/update deleted file mode 100644 index 91ef6593a5d219..00000000000000 --- a/srcpkgs/lc3plus/update +++ /dev/null @@ -1,2 +0,0 @@ -site='https://www.etsi.org/deliver/etsi_ts/103600_103699/103634/' -pattern='(?<=103634/)[0-9.]+(?=_)'