From f29de1b060a3f6ee83cb2871b35bf88de63abfbf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 08:21:36 -0500 Subject: [PATCH 0001/1661] 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 7aeba594f32ec42c22db7e987abc5c0c24c54f2b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 14 Nov 2025 14:10:51 -0500 Subject: [PATCH 0002/1661] 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 5a4f65ec1def6eb42125a543fd3593c14745d638 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 14 Nov 2025 14:11:05 -0500 Subject: [PATCH 0003/1661] 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 0bb6612ec4b1f9c0a7f420abb60167247e1d6733 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:21 -0500 Subject: [PATCH 0004/1661] 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 0d25a340e30ae97bbd18f5539ea50c6d4575b412 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:21 -0500 Subject: [PATCH 0005/1661] 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 ef16c4b4b71a18fd80457842812a34baccc32d53 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:21 -0500 Subject: [PATCH 0006/1661] 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 ac4265e7d728c28169c91c71341359c8a1b0f4d3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:21 -0500 Subject: [PATCH 0007/1661] 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 703fd5b8df1db2a5ae7f6d9c582462f5eb677dfd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:21 -0500 Subject: [PATCH 0008/1661] 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 75395f63cbba8d7bc05fcef9326f174c5234c7c5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:21 -0500 Subject: [PATCH 0009/1661] 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 146164ce2b4e2b283dc2db1ac838fcaef691a269 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:22 -0500 Subject: [PATCH 0010/1661] 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 0881e3471d80b7c30ed47ddb8f899445069da806 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:22 -0500 Subject: [PATCH 0011/1661] 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 805a80f17c3f543ca4d162e7c40c843ba5486e19 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:22 -0500 Subject: [PATCH 0012/1661] 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 835960fcfc3f15d17fd5a918cbdb7e4960babe4b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:22 -0500 Subject: [PATCH 0013/1661] 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 afae3c38aad5cfed31a0d6fdbf038374af51034d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:22 -0500 Subject: [PATCH 0014/1661] 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 8fcb56ed128aa78df679c9a2b7dc08146217467d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:22 -0500 Subject: [PATCH 0015/1661] 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 28a1ce6b86f3edfafc022dbb8f764877a5feda6e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:23 -0500 Subject: [PATCH 0016/1661] 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 06e123e36fcd467ec865c4163472e5a8d2e340f3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:23 -0500 Subject: [PATCH 0017/1661] 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 281dea072959a7859136fde542aeec9d56a7c31f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:23 -0500 Subject: [PATCH 0018/1661] 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 3a5b8a82892cd92bee4b2fe20486de526ff01f69 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:23 -0500 Subject: [PATCH 0019/1661] 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 2a02a9c97a812727319e15fd1afc9846ea4cbe2a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:23 -0500 Subject: [PATCH 0020/1661] 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 04bfe4f7ae0238c50c4e2e6c90ed06762d4cb7df Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:23 -0500 Subject: [PATCH 0021/1661] 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 0c3ab0398ab002086c51659d560e3a35d2b2c149 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:23 -0500 Subject: [PATCH 0022/1661] 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 75b48d762f1913505a39da4ef4dd2ca125ae1695 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:24 -0500 Subject: [PATCH 0023/1661] 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 da1bfe6559c3a7666d98f98b5d2bb83fde488e65 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:24 -0500 Subject: [PATCH 0024/1661] 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 8134fa7d702528aab5a5b2a595f5568f1197d9c7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:24 -0500 Subject: [PATCH 0025/1661] 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 a9d22ac960ddc16668547041563de89a64955969 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:24 -0500 Subject: [PATCH 0026/1661] 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 98b5a6d88a4bd1ec470aaa8fd9d98fa8562acb5f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:24 -0500 Subject: [PATCH 0027/1661] 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 f177111b73cf53636b74bbfc44cde38a2b6623c6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:24 -0500 Subject: [PATCH 0028/1661] 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 e7f6a3400475f89cbd4a0189b047204bfe07664d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:25 -0500 Subject: [PATCH 0029/1661] 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 5dad025e3db5332016473e2e65ef295003e1400e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:25 -0500 Subject: [PATCH 0030/1661] 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 241fd46201682042e596c373002805d6833a6935 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:25 -0500 Subject: [PATCH 0031/1661] 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 68c364a4d9c4190bf87859c5d2cf89abccc0da6f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:25 -0500 Subject: [PATCH 0032/1661] 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 c3375b0fb934220a94a815286632c4a23d580035 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:25 -0500 Subject: [PATCH 0033/1661] 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 4a536d69f57bd9e7571d6051682619d62a1d2ee9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:25 -0500 Subject: [PATCH 0034/1661] 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 37de8bf72f4ad65bacc824fc9533bb7b47c3837c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:26 -0500 Subject: [PATCH 0035/1661] 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 ed75c44ae6866c82e9e9119deb7d5e7bfee66737 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:26 -0500 Subject: [PATCH 0036/1661] 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 29b5075d43535ed4d262d9232dc6295b279d7b97 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:26 -0500 Subject: [PATCH 0037/1661] 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 f94fd583e4cd41847e6db0861b7c14cd9aebc12a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:26 -0500 Subject: [PATCH 0038/1661] 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 00453f6d3b283c95e604247c540c07a7e2f39965 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:26 -0500 Subject: [PATCH 0039/1661] 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 31ec89a084e3e37a74aca5b43ab1b203b29d99a6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:26 -0500 Subject: [PATCH 0040/1661] 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 45ec0c6052bd204c3fa9b88e4d865c8aec5045a0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:27 -0500 Subject: [PATCH 0041/1661] 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 1a23fbc2ddaa7325265e6e8d46c91afca92f6f2e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:27 -0500 Subject: [PATCH 0042/1661] 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 75cd765e86446d4789670cac0bfb514728b092b3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:27 -0500 Subject: [PATCH 0043/1661] 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 5fbda54d2ead18d62325c794b2e87cab1c719154 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:27 -0500 Subject: [PATCH 0044/1661] 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 361182964829a0a36081d4e22fb8a95649adabd6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:27 -0500 Subject: [PATCH 0045/1661] 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 2286764b7e15d1abc41ec502545f7a1962795f84 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:27 -0500 Subject: [PATCH 0046/1661] 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 66497504a97e2a3c0612b3a49e81a3c02d58fd9d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:28 -0500 Subject: [PATCH 0047/1661] 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 64f78883a1243d44052fd935a4d92887d5e669f7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:28 -0500 Subject: [PATCH 0048/1661] 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 a376d244467105f2a4a5145782b769b8f7dc4180 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:28 -0500 Subject: [PATCH 0049/1661] 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 049167132fbcecf1bf58fdb7169eac458f04f823 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:28 -0500 Subject: [PATCH 0050/1661] 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 dd42fc08a5903f75e31c0fabb96d429c6dfe60be Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:28 -0500 Subject: [PATCH 0051/1661] 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 27329f771a6771f44516e5976c639b68c49553dc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:28 -0500 Subject: [PATCH 0052/1661] 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 00fbc4f09f390009e01408ab5983ab3809bfd937 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:28 -0500 Subject: [PATCH 0053/1661] 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 83726e44a851cfb7f64478a682b1cbb2e87f336d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:29 -0500 Subject: [PATCH 0054/1661] 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 775c3ccf6a310bde35a07cd3c7373cd4c1c7ca9d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:29 -0500 Subject: [PATCH 0055/1661] 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 75e0d2d9d278b7bf8fec82a58e67bf92dc8423e8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:29 -0500 Subject: [PATCH 0056/1661] 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 6dc2fa63475b338ae03490b759ca4694050874a5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:29 -0500 Subject: [PATCH 0057/1661] 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 88c9c1ca1486de96456f1b32126ab974e5a22165 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:29 -0500 Subject: [PATCH 0058/1661] 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 3dbf4761fad1468d7d30e245527c281d67f82687 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:29 -0500 Subject: [PATCH 0059/1661] 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 32ad8017aa3cc2725649c56b466a7970e1064ff5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:30 -0500 Subject: [PATCH 0060/1661] 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 4eda52b49b737755b6c44ecfe9f4f6d95be9ed09 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:30 -0500 Subject: [PATCH 0061/1661] 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 7a39dbf4ee9a3bc521f1c75082751e947182ad60 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:30 -0500 Subject: [PATCH 0062/1661] 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 4aab1d562700b7d43bf84bf5c42bf9c5481662be Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:30 -0500 Subject: [PATCH 0063/1661] 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 0489a03a7c5f87b5d58d3100677a191bb7382219 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:30 -0500 Subject: [PATCH 0064/1661] 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 57fa85124846a6121c8ef97e2683dbbbfbf8bb0c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:30 -0500 Subject: [PATCH 0065/1661] 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 562053d4faceef87a760462b6bcfc0aceee0c1d9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:31 -0500 Subject: [PATCH 0066/1661] 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 3918f88b4a86dcdcbc6858e8e3b7942f62e5df94 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:31 -0500 Subject: [PATCH 0067/1661] 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 f15740150d4662dc980567f560aba1d5833ab0a8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:31 -0500 Subject: [PATCH 0068/1661] 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 71b3c884d13a43b34161aad2a420be5a7363fa8f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:31 -0500 Subject: [PATCH 0069/1661] 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 d934c09e5f29d52006c0e2debc5c51d268ab6154 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:31 -0500 Subject: [PATCH 0070/1661] 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 1b341dbfcb195c3a8d47faf8a50d1388524cfa50 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:31 -0500 Subject: [PATCH 0071/1661] 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 f88937f22ad6646c58e6e029f350958601dfcd25 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:32 -0500 Subject: [PATCH 0072/1661] 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 9e916ecfb27098e9c5ed87256e28720bfb91f136 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:32 -0500 Subject: [PATCH 0073/1661] 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 b9702bb4e1719f20f0be19528a45dfe03d432d49 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:32 -0500 Subject: [PATCH 0074/1661] 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 6e6b67eeb218d862fe40c82d6f41d90db479aad8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:32 -0500 Subject: [PATCH 0075/1661] 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 68dc60f49acc83ee8235bae1bbbe0ac220fa39bc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:32 -0500 Subject: [PATCH 0076/1661] 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 86ac1050f103bc01035fddedaba640867c1f29a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:32 -0500 Subject: [PATCH 0077/1661] 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 377bb0fbb42377e419f5202ef998e01987f50fb4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:32 -0500 Subject: [PATCH 0078/1661] 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 c8e369c67589d6a30b42a0000165ae3bc3c0c0b0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:33 -0500 Subject: [PATCH 0079/1661] 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 4c4812b8ad1feb077d1ca9ecaa64c5dac69ab4dd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:33 -0500 Subject: [PATCH 0080/1661] 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 f32d43f2d5ffad7e74fb4dfcafd49922635ef411 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:33 -0500 Subject: [PATCH 0081/1661] 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 da5fd7e8b5f76d9ec5ddad67caee9ef1e22bb2bf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:33 -0500 Subject: [PATCH 0082/1661] 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 b977df0042813a69a19ec6ff098689afad235253 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:33 -0500 Subject: [PATCH 0083/1661] 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 866ed42f901e558bb476e88257f864787a885402 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:33 -0500 Subject: [PATCH 0084/1661] 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 87963655836bf092742775615ba62e6868320b3c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:34 -0500 Subject: [PATCH 0085/1661] 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 906546b74bd786d35213ac2d4e404215f212971c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:34 -0500 Subject: [PATCH 0086/1661] 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 d58e9fe1c65c3702e5aeb52f4bc7fea85cc3df01 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:34 -0500 Subject: [PATCH 0087/1661] 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 585ecabe2186b18ff07d2da3c4d4b6a7fc63a9e5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:34 -0500 Subject: [PATCH 0088/1661] 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 cec5d863f593c47d12bd8f5624222ba904f8e25e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:34 -0500 Subject: [PATCH 0089/1661] 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 f4b6c8a8f65828519cc33483e2951ff4a7a94268 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:34 -0500 Subject: [PATCH 0090/1661] 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 91baf55e6e41c997c4a204f79b8740872b6845ea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:34 -0500 Subject: [PATCH 0091/1661] 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 0f9e049bd9d22a09a53154699e145dbab4e69da1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:35 -0500 Subject: [PATCH 0092/1661] 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 4d0acaf2974a7ac77d226a9e4b6b54d5d44aa212 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:35 -0500 Subject: [PATCH 0093/1661] 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 43c51020e7bf7b45da3cb60846741266b03debc3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:35 -0500 Subject: [PATCH 0094/1661] 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 968172cfd7a12e4966b1a3a255f54b7d690bd08f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:35 -0500 Subject: [PATCH 0095/1661] 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 89e0aeb417e274f3d343d1705dbb050e951b0d0f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:35 -0500 Subject: [PATCH 0096/1661] 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 5e7415c0eee7b2193a9482efca90acb6bb24e4ce Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:35 -0500 Subject: [PATCH 0097/1661] 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 7eb7b027974b33bd3489015340a45bfc5844b00f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:36 -0500 Subject: [PATCH 0098/1661] 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 6d473007e94f3ca3d76ded834617248ff95770c4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:36 -0500 Subject: [PATCH 0099/1661] 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 abd0ee75e5a1c9126ffd831c6afc2316bb053d37 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:36 -0500 Subject: [PATCH 0100/1661] 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 f656cbecd3bab2cfd696217d2882a994b67875e1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:36 -0500 Subject: [PATCH 0101/1661] 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 a922c502eee8ef23b3c6496e3910ede2b51a90a7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:36 -0500 Subject: [PATCH 0102/1661] 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 5059f503de9b2f2611adc322ed481b6ad1c76121 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:36 -0500 Subject: [PATCH 0103/1661] 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 f271dc7086083a1fb2de561b7cbca124c583e40f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:37 -0500 Subject: [PATCH 0104/1661] 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 33d6762de9d53a73d78c1a1fc70dcec11059ce14 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:37 -0500 Subject: [PATCH 0105/1661] 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 027ec9cf47ef48c304747c315dbb53258b2b2e61 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:37 -0500 Subject: [PATCH 0106/1661] 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 0f710cdf93c4c7b412d677bcbb34fcc4dec6c607 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:37 -0500 Subject: [PATCH 0107/1661] 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 30773b87271056caea4bce45786abe5bee6ebe20 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:37 -0500 Subject: [PATCH 0108/1661] 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 d30372e1e61a42596581655077b6104a63b0f788 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:37 -0500 Subject: [PATCH 0109/1661] 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 5c61b4f3290a3126a7f1b284a6cf7b89230c8857 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:38 -0500 Subject: [PATCH 0110/1661] 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 210411f3e9d2f1ebfc9516f676ca6194b16544e4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:38 -0500 Subject: [PATCH 0111/1661] 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 4d325ed1c12433a42ae950947789952146db80d0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:38 -0500 Subject: [PATCH 0112/1661] 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 78dc191d4e7a147600d28f6ffe91b6ee69fbc5da Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:38 -0500 Subject: [PATCH 0113/1661] 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 23c8146b401ac378903ad1f7f939c3fc2c983813 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:38 -0500 Subject: [PATCH 0114/1661] 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 b140e0acf08c7bca4bef1e1c3d86005b855993b3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:38 -0500 Subject: [PATCH 0115/1661] 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 eafa82e91d7219af94b5acde12d318745ae0648d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:39 -0500 Subject: [PATCH 0116/1661] 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 c6602e4d429b21080ddeb52905ca016ed57f400d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:39 -0500 Subject: [PATCH 0117/1661] 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 658f3ba7b899369c2e73dfe48e10e8994238b0b0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:39 -0500 Subject: [PATCH 0118/1661] 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 cb9acd965302c027c650bad69204157cbb172476 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:39 -0500 Subject: [PATCH 0119/1661] 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 34576adc4a0745911479369c6f624fe7bace8d7d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:39 -0500 Subject: [PATCH 0120/1661] 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 247a1528773b558e6e4f8b2890e6ecab2fecb56f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:39 -0500 Subject: [PATCH 0121/1661] 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 5593056e589553a3c86f5c3ccef71e51a12cb456 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:39 -0500 Subject: [PATCH 0122/1661] 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 9aee79afdd6d256262c5ffc081504783e4f3dcef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:40 -0500 Subject: [PATCH 0123/1661] 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 c1e30da2264f654dd95683bfc9a0defe8679489b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:40 -0500 Subject: [PATCH 0124/1661] 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 f90f1d3cd332208e64c928aa4478ee7ecd3e9d48 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:40 -0500 Subject: [PATCH 0125/1661] 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 5b9244e358b186b781ca5cea0a3daa6d1ff73dda Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:40 -0500 Subject: [PATCH 0126/1661] 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 d45cfb56227e48adba035378977afc7d05c515c5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:40 -0500 Subject: [PATCH 0127/1661] 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 0aed1282c1a285770d6cfa9886da70d9af0b854f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:40 -0500 Subject: [PATCH 0128/1661] 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 5e1f5acc69a516434be4e7bb88cfef26ca487d9c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:41 -0500 Subject: [PATCH 0129/1661] 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 5ab72647ae52850833f5f9841b8a63ce7cef40b4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:41 -0500 Subject: [PATCH 0130/1661] 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 a98930faf55522bc12548f53158477b6d6278b5c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:41 -0500 Subject: [PATCH 0131/1661] 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 ea3a35fbb5b139825dea8336f817a9774797d89a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:41 -0500 Subject: [PATCH 0132/1661] 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 93c01aaab6dd1eb353d78050e68b932d45a8d7c0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:41 -0500 Subject: [PATCH 0133/1661] 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 1eb586f38da7f43ca9d6f4683969ca52c219dcac Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:41 -0500 Subject: [PATCH 0134/1661] 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 89f195e33cdde4c39cb2dced45c26f304f1bdea2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:41 -0500 Subject: [PATCH 0135/1661] 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 85191d46d4ca78ced2a165431b4d0de42502e7e0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:42 -0500 Subject: [PATCH 0136/1661] 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 6f6f3f975043249cd1c6a6c3efd28508acf6d690 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:42 -0500 Subject: [PATCH 0137/1661] 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 56d7317e7598cb1c62718f334ae5d0b8c01ab8c4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:42 -0500 Subject: [PATCH 0138/1661] 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 58bd74cbad4f34c630a43ab910166a304f44e9d3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:42 -0500 Subject: [PATCH 0139/1661] 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 53900435e9a0788c3a3d1ed92938977a5d96e5f5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:42 -0500 Subject: [PATCH 0140/1661] 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 90fa319e7a52a01c4a76b9d7abb2d97fdfe363df Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:42 -0500 Subject: [PATCH 0141/1661] 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 33099fd95a061cf53ab9134a0a7b558498b41cea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:43 -0500 Subject: [PATCH 0142/1661] 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 4549c05b2798a9220d5eda7ec33ff838a4df1e9c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:43 -0500 Subject: [PATCH 0143/1661] 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 79f089820676e8bba468645be5aed08b9ea268dc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:43 -0500 Subject: [PATCH 0144/1661] 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 5d5c36515905fe939ce55677c582ed8463726b6d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:43 -0500 Subject: [PATCH 0145/1661] 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 ea6725d5a488c1432512b431fbb05ed3678229e3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:43 -0500 Subject: [PATCH 0146/1661] 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 7a69faf553d6143d488298a82beb09b874164e17 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:43 -0500 Subject: [PATCH 0147/1661] 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 f5724ab68f07d4fe693199ed410f07191a5929a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:44 -0500 Subject: [PATCH 0148/1661] 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 ed6aff9516b429045490564c4e4cdbd2c2e71de2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:44 -0500 Subject: [PATCH 0149/1661] 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 cfc0d20cbd7e6c48cdc6479e179504d3406911f6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:44 -0500 Subject: [PATCH 0150/1661] 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 503eb84e6d08edfb852c2cbd7832865b7663e183 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:44 -0500 Subject: [PATCH 0151/1661] 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 5a2e80f38170afdbb209cbc8fecd8a975a4ddb30 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:44 -0500 Subject: [PATCH 0152/1661] 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 688318a93b0676834bb3cda691745e6adf282462 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:44 -0500 Subject: [PATCH 0153/1661] 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 3c5bb944bf2b235f6554d6f197cc3e643005ad95 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:44 -0500 Subject: [PATCH 0154/1661] 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 66d04429dd4da15c90c66c0dec996bf8f7d0eb9e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:45 -0500 Subject: [PATCH 0155/1661] 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 fa0ef94e0c655a0d1ba451102f42a885e1146060 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:45 -0500 Subject: [PATCH 0156/1661] 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 5cc28b67f17c0ddca179eb6d3f282a8cf3348e17 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:45 -0500 Subject: [PATCH 0157/1661] 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 f9e013f9a2a8682f00ae2fede30c0e862ab4f0c0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:45 -0500 Subject: [PATCH 0158/1661] 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 0a308cd17fee9b6a28b6616d6c58ba6ef1fdda07 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:45 -0500 Subject: [PATCH 0159/1661] 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 7ab0a75100fc6ce7f071b6f8e124ad0f34e58b06 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:45 -0500 Subject: [PATCH 0160/1661] 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 dfd3628fcec05c602c44b140467896c8dfe51256 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:46 -0500 Subject: [PATCH 0161/1661] 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 af470741a7e86bbf0e0ae021eba7b9a95d826214 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:46 -0500 Subject: [PATCH 0162/1661] 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 8bf82350534cf0e55b2ffd62dc42457ad71bbcfa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:46 -0500 Subject: [PATCH 0163/1661] 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 e4f0c669f8c93dd15cac6c15c6e7a68ac77f380d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:46 -0500 Subject: [PATCH 0164/1661] 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 70437986b5c862cb47fe4e2e516a3eb39b42555d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:46 -0500 Subject: [PATCH 0165/1661] 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 b093ee7fd971341b92aeb3cee9b077c48734d8f7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:46 -0500 Subject: [PATCH 0166/1661] 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 2985a2722e253bb6b8cc2769e2d69a431b54a871 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 25 Nov 2025 09:09:42 -0500 Subject: [PATCH 0167/1661] 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 4e5285e4894c71fdbb18187dc8bb1ea5d30809d5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:47 -0500 Subject: [PATCH 0168/1661] 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 7f52e4833e72eb7e3cd52198ffc7805f41fc02d3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:47 -0500 Subject: [PATCH 0169/1661] 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 c26335c6b3c2abb88a91e6d0be3c6aa5b336958c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:47 -0500 Subject: [PATCH 0170/1661] 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 b680b8e211611a885b2d445879c0273452a61dad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:47 -0500 Subject: [PATCH 0171/1661] 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 488be486e1aa9db1d0d7001fbc313368472629b4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:47 -0500 Subject: [PATCH 0172/1661] 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 7cec9412ce08f5d902a7ded257151b28eb719d0f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:47 -0500 Subject: [PATCH 0173/1661] 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 615f25dd9f755a0c6678d1b74f3b8500bb67ad4b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:47 -0500 Subject: [PATCH 0174/1661] 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 352e41d5d2d95739a72eeedf8977d603841df1c2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:48 -0500 Subject: [PATCH 0175/1661] 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 eb86e2320433803c86d7559daf975acd8412fc3c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:48 -0500 Subject: [PATCH 0176/1661] 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 fe3905d5f9e029a9ec5f2f06fbea967cfcafec47 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:48 -0500 Subject: [PATCH 0177/1661] 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 24da279f5b2542c27d882d44091a2933101a1ca2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:48 -0500 Subject: [PATCH 0178/1661] 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 d76a150350bfb5af4862d798bcfea247fce630d2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:48 -0500 Subject: [PATCH 0179/1661] 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 53c03396c2a2f8d128ae64cdc213377fd959e06d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:49 -0500 Subject: [PATCH 0180/1661] 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 b0a571bca795b7646a3a0902652b2e5e529e120c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:49 -0500 Subject: [PATCH 0181/1661] 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 405f74c7fbb6782af8cf9d98b3d0bfe6e5c2a49f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:49 -0500 Subject: [PATCH 0182/1661] 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 1086eb05b3a9b88d1caed469312c5f9aa20ed842 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:49 -0500 Subject: [PATCH 0183/1661] 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 4d20ebbcfda4fe8ac9bac6e3b6a846728e2e0a2d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:49 -0500 Subject: [PATCH 0184/1661] 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 124449c19f5cefbcff9e829c6f09932e3e7323ab Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:49 -0500 Subject: [PATCH 0185/1661] 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 69ce894081e614af164be850d7074cfed341fd23 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:49 -0500 Subject: [PATCH 0186/1661] 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 35a6d2a117467a694fa6ec9cd2d02805f7d25baf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:50 -0500 Subject: [PATCH 0187/1661] 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 b35316b93c3daea17b111135d145df3d6c657bbb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:50 -0500 Subject: [PATCH 0188/1661] 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 a9a12d383e221692e495d17e0a819148001ab06d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:50 -0500 Subject: [PATCH 0189/1661] 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 49dd47bd92f0dd7f80498cb8a7153276276422c4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:50 -0500 Subject: [PATCH 0190/1661] 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 c96ae5bde8452c4c5b11c4c531d258db6f1cf5fa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:50 -0500 Subject: [PATCH 0191/1661] 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 4f4dee775111dd9a76ffa909a640879aee52ed5b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:50 -0500 Subject: [PATCH 0192/1661] 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 9ac58e265b8f531b6a036f0bdf4e9fd0dd3aca13 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:51 -0500 Subject: [PATCH 0193/1661] 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 02037ab6584b0c32794c7207a52fef2829cf0de9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:51 -0500 Subject: [PATCH 0194/1661] 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 9511f846f5a1c1c39c67d18b0b970c7288c2349a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:51 -0500 Subject: [PATCH 0195/1661] 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 26ec51d3fdaa391de422cf614bf6024235b08233 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:51 -0500 Subject: [PATCH 0196/1661] 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 17d2e75f82835395a8a1e18b703e178751d792aa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:51 -0500 Subject: [PATCH 0197/1661] 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 5921f35c533b09fce8efcfade45af3ff9653e16b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:51 -0500 Subject: [PATCH 0198/1661] 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 e418768fb9ee255bbd3ed8716e6893396924f183 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:52 -0500 Subject: [PATCH 0199/1661] 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 ab96c86b813ea0d45ed7cbea3c29f7aa3217fc53 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:52 -0500 Subject: [PATCH 0200/1661] 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 8af7279f4fde753e00ff37a6c2f47deec4c44db2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:52 -0500 Subject: [PATCH 0201/1661] 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 e952fd252ee066841aecb7c50eaa6b9f67aff546 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:52 -0500 Subject: [PATCH 0202/1661] 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 aa12fde9f15698269a37825515970ba343e426e4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:52 -0500 Subject: [PATCH 0203/1661] 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 b055af97cf5d89fb27f3b67e14b8ada483b857c1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:52 -0500 Subject: [PATCH 0204/1661] 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 357f2faf377ef5c6a66eb4f7c942034f17c3161e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:53 -0500 Subject: [PATCH 0205/1661] 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 05de53c89679b5ab4017e3721f4835718083ccca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:53 -0500 Subject: [PATCH 0206/1661] 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 869484c64f811b807a684ee578cbbcac53bc1b41 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:53 -0500 Subject: [PATCH 0207/1661] 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 c0fcc4eb1c75200f29077a2a594f114890d6257f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:53 -0500 Subject: [PATCH 0208/1661] 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 77faab64a51285aae3e621fb29dc810875601059 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:53 -0500 Subject: [PATCH 0209/1661] 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 979a74f3dd4c13aaedc1e50deae49110b8b463ca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:53 -0500 Subject: [PATCH 0210/1661] 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 3d5e55268148fd5e9be2f6c2c2c494ee192f2121 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:53 -0500 Subject: [PATCH 0211/1661] 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 dba44690bf2b28a5d69cadb3e0ccdf7e9ab194e9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:54 -0500 Subject: [PATCH 0212/1661] 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 df4fe3c1fc94ad91040974f764f20da9431348ea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:54 -0500 Subject: [PATCH 0213/1661] 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 688b190cd7a8b9a5e74acb92460eada2722fcb08 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:54 -0500 Subject: [PATCH 0214/1661] 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 34c01288bcda92314d427537988825a162a28217 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:54 -0500 Subject: [PATCH 0215/1661] 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 b2b2d44c76673f2062a702df72be086db3e15a89 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:54 -0500 Subject: [PATCH 0216/1661] 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 8361a3b880b54a5da3a06b76aeafd9a8131a8380 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:54 -0500 Subject: [PATCH 0217/1661] 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 ff14d7950f7fea0dadceea9871cc4cc0c3025c33 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:55 -0500 Subject: [PATCH 0218/1661] 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 f36f1fce8d182cac82f07dc2d0e8865e40b82f59 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:55 -0500 Subject: [PATCH 0219/1661] 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 ddfa96b6fa118a8094011dfeb22d598e290f6d3c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:55 -0500 Subject: [PATCH 0220/1661] 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 5c306a5f2069843e969cb589d390a26173e9ed4a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:55 -0500 Subject: [PATCH 0221/1661] 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 9dbde291dccbc128474ad763d4010b22983dced0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:55 -0500 Subject: [PATCH 0222/1661] 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 548a62584bc4a579c49a0ea5b376d02bf23f936a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:55 -0500 Subject: [PATCH 0223/1661] 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 99fa31d0e89fed8914334f01e81bf60574486671 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:56 -0500 Subject: [PATCH 0224/1661] 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 ce6b1a9d5d5d3488db453b3c829db8e27471edd4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:56 -0500 Subject: [PATCH 0225/1661] 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 b6a2120092c1e314e1f9d3cc46be2ca07afebb67 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:56 -0500 Subject: [PATCH 0226/1661] 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 ea5976e92b05fd924248d8bb70e55c69faa34c0c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:56 -0500 Subject: [PATCH 0227/1661] 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 4930bf7a7a453dc612a74012079f98b533c608eb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:56 -0500 Subject: [PATCH 0228/1661] 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 303616f3b57ca56c533612f51f41c0f5a3dfdc0b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:56 -0500 Subject: [PATCH 0229/1661] 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 6581f386de3c5daf36aca6320f6c422ee78b7aa9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:57 -0500 Subject: [PATCH 0230/1661] 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 f2574fcda5e3b451e4b28a0f7c2f46a29acc2dc0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:57 -0500 Subject: [PATCH 0231/1661] 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 0b62943c167797a4a85120948699f1c4e5fc206d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:57 -0500 Subject: [PATCH 0232/1661] 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 02d440996827b2f7c0f331c39253adb75c9f84a2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:57 -0500 Subject: [PATCH 0233/1661] 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 d9d7d6a3d0a26791270812ed983b30bbb2e3a930 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:57 -0500 Subject: [PATCH 0234/1661] 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 1181998136d2ce04b069e2d029b9705c34665e54 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:57 -0500 Subject: [PATCH 0235/1661] 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 d2f458ba57d1ba35c5d5c98bc9afa65c698ef3fb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:57 -0500 Subject: [PATCH 0236/1661] 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 03ef0db4526ec42629460d98a80312430db36ab7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:58 -0500 Subject: [PATCH 0237/1661] 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 dad54fccc9ba4aeb616ab2b983b7a5c8a8c69de6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:58 -0500 Subject: [PATCH 0238/1661] 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 5a90f4ac55b910ac7f710bb1a6a7610270db55f3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:58 -0500 Subject: [PATCH 0239/1661] 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 b002cf91f8f43c7a88ef1c20d02a09d8795ad15e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:58 -0500 Subject: [PATCH 0240/1661] 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 c9ba7409e38dadbb0b64c5ad5d66557061c8eef8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:58 -0500 Subject: [PATCH 0241/1661] 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 0d0f36a8716a62fe8111497d845536732f9fa661 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:58 -0500 Subject: [PATCH 0242/1661] 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 0f7774526740c0ea5a855ebf657ff17bf4112255 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:59 -0500 Subject: [PATCH 0243/1661] 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 8d87cef8b8c2f0319cd97e82f80c6a615e3b3ce6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:59 -0500 Subject: [PATCH 0244/1661] 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 74a42f13b74ab9b4a7787fbe1ceeca2786b038a9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:59 -0500 Subject: [PATCH 0245/1661] 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 408f76c329e4f68452cbbafa2f8aeb0b19b4e055 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:59 -0500 Subject: [PATCH 0246/1661] 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 b1f01f29442223de912122b3c5dd545dd0cfee2e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:59 -0500 Subject: [PATCH 0247/1661] 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 dcaa5d5c55ffd42aa0456caf018c69eb41aa339d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:59 -0500 Subject: [PATCH 0248/1661] 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 1ab4b735d06f702cf7ac22f5b2b21b498b570276 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:14:59 -0500 Subject: [PATCH 0249/1661] 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 91647249783b4425dec92ea19a81c1047971a820 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:00 -0500 Subject: [PATCH 0250/1661] 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 c4d112fa1b6a80cb73491853025a31c247b22c9b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:00 -0500 Subject: [PATCH 0251/1661] 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 7462efc87c0da1871d02b452d2cafdb2e9626fb1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:00 -0500 Subject: [PATCH 0252/1661] 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 fa1f5c89f3dd88624ef659185bce981b09490ed8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:00 -0500 Subject: [PATCH 0253/1661] 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 80891c233428be352f0c93d2d5581aac9c8c40b1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:00 -0500 Subject: [PATCH 0254/1661] 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 4f1488cf296289600e9f7f62100ea29d143450f3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:00 -0500 Subject: [PATCH 0255/1661] 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 88255fa13b14cb002ce4e4079e4e8d079259ed12 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:01 -0500 Subject: [PATCH 0256/1661] 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 2c0cd429c3d03872dca17deb1d10551ef265e9e5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:01 -0500 Subject: [PATCH 0257/1661] 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 fbdb489717c5e04abc4890301a6a3dd001765d3d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:01 -0500 Subject: [PATCH 0258/1661] 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 9b11290f9940218cfecbc23ab3010a15847bad93 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:01 -0500 Subject: [PATCH 0259/1661] 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 72c69629ba735f6f47e2d64513e87171309be753 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:01 -0500 Subject: [PATCH 0260/1661] 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 be2dcc4ab577b91e1d95a006f8e3579e3802dd35 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:01 -0500 Subject: [PATCH 0261/1661] 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 6537ddb714fa4bbb3cbd5f84f9750181d76c09b0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:02 -0500 Subject: [PATCH 0262/1661] 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 a234b921a025de350ad1c0433449c9320902c2d7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:02 -0500 Subject: [PATCH 0263/1661] 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 40315add04841d24424a6ee7fa159f1a67d7d641 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:02 -0500 Subject: [PATCH 0264/1661] 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 9163d2c259d829a3b50a9b48acb29db94e696100 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:02 -0500 Subject: [PATCH 0265/1661] 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 226f0b1073ecc8bf80f8c10737cf87802a9326fa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:02 -0500 Subject: [PATCH 0266/1661] 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 03980c1310836977fcf03339faa710747c1872b2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:02 -0500 Subject: [PATCH 0267/1661] 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 3492e870068f96de2608f10d8b581d3dddebca1a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:03 -0500 Subject: [PATCH 0268/1661] 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 50524dbcd81d02dfdb657b35f1a77b1c36492905 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:03 -0500 Subject: [PATCH 0269/1661] 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 7727c1d374089be974b7cb49a91df0f217a4e359 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:03 -0500 Subject: [PATCH 0270/1661] 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 d9be5a28b46c6c3f08eeb17a833676cd15969b63 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:03 -0500 Subject: [PATCH 0271/1661] 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 2cdbea707dde8a73ec02ee3a9cf58e6fcd1dbd1f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:03 -0500 Subject: [PATCH 0272/1661] 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 e6640fba68c63b694f64f61461afcc71cfccc2a8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:03 -0500 Subject: [PATCH 0273/1661] 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 a91ff750660331e07139d561f7f2a3c77811278e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:03 -0500 Subject: [PATCH 0274/1661] 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 c4806dde185bb391b22adb52f256653093fe4f32 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:04 -0500 Subject: [PATCH 0275/1661] 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 6092b3c6711a0be607935192bfc16f4ca65853fc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:04 -0500 Subject: [PATCH 0276/1661] 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 b3791c5d85febe8b7bff78a7ce93d2500450204d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:04 -0500 Subject: [PATCH 0277/1661] 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 09b3e7407bfa2422106273d40a7fda038d42e000 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:04 -0500 Subject: [PATCH 0278/1661] 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 045d9b125a93a0d0d16beee0723c72d91178580c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:04 -0500 Subject: [PATCH 0279/1661] 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 026c68a741424bff2e00a605ec2cfcf0df4483b0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:04 -0500 Subject: [PATCH 0280/1661] 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 53ba3b091b3d529422dfe010b52315caa247c77a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:05 -0500 Subject: [PATCH 0281/1661] 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 7d7da62b366b302c4a29c2c1121e2718ea7f94da Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:05 -0500 Subject: [PATCH 0282/1661] 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 f6a4f4e97c244cb06dd7f8c946538f39b6aa35c4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:05 -0500 Subject: [PATCH 0283/1661] 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 f32f9f7f7121fe4527d939ccee9d4f24f512d6a5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:05 -0500 Subject: [PATCH 0284/1661] 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 8b693723f7f1353a964877f0ebfcb5fc65dc065e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:05 -0500 Subject: [PATCH 0285/1661] 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 477a2bcb86b5276eb7e7240a6c8830ab5940510f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:05 -0500 Subject: [PATCH 0286/1661] 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 c3339fd34786afc79d758bcecd32bbf0130130f2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:06 -0500 Subject: [PATCH 0287/1661] 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 a9ff80b55712a45294369ee40ec33454d583d597 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:06 -0500 Subject: [PATCH 0288/1661] 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 359c913583d3437119e06be97aa3e642e3421f2d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:06 -0500 Subject: [PATCH 0289/1661] 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 a8ae1cd8005e78550ea4561c1e91478f3a981feb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:06 -0500 Subject: [PATCH 0290/1661] 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 795bb65224cabdcf33c72f1f37e9f4ebef05330e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:06 -0500 Subject: [PATCH 0291/1661] 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 cb266f3b904d5dcaf7bbf02af859553c61555683 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:06 -0500 Subject: [PATCH 0292/1661] 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 98f43503af03edfdc20167a508ff6eb75b7b145e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:07 -0500 Subject: [PATCH 0293/1661] 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 dcb7f12ae86fc18274dd4b05a3ae9ab19fcde138 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:07 -0500 Subject: [PATCH 0294/1661] 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 41315325ed0818bd2c09d073db7c1b81bd6e145a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:07 -0500 Subject: [PATCH 0295/1661] 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 ecb6c78a95fccb133aa37e8218c3f0e4702c03db Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:07 -0500 Subject: [PATCH 0296/1661] 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 c14eb082efa0bdf73d7495f8d024f686218d0cfd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:07 -0500 Subject: [PATCH 0297/1661] 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 d3a1f0c2f98e12f67b7543203c0cdc7473767801 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:07 -0500 Subject: [PATCH 0298/1661] 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 5a8dfe8f66e684445ef394ebdbb0e43b36c08445 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:07 -0500 Subject: [PATCH 0299/1661] 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 cf739d8e2d828c6fb5ba5314a68d38ac4f27ec27 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:08 -0500 Subject: [PATCH 0300/1661] 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 93e012cf7afa3ff9830d3468d80efc3fa1c70b4a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:08 -0500 Subject: [PATCH 0301/1661] 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 89c38d5c35a2fc754ead4e8fefee8a73c1b53a8b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:08 -0500 Subject: [PATCH 0302/1661] 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 5da14e99b4c19543dbe62e45dc84f0fe254c0f67 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:08 -0500 Subject: [PATCH 0303/1661] 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 c64de1893d8c8294b63de7b1a653c4cc6b564647 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:08 -0500 Subject: [PATCH 0304/1661] 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 6a7de988266c58fdf3df778286b0b4116aabab82 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:08 -0500 Subject: [PATCH 0305/1661] 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 a53f55d04b770065a157b7c1e38ad3805a1c2408 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:09 -0500 Subject: [PATCH 0306/1661] 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 81fca1252d4ee276f7529cdadddebe8936ae2088 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:09 -0500 Subject: [PATCH 0307/1661] 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 da543732d4fa26a064570922280fac771ac693cd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:09 -0500 Subject: [PATCH 0308/1661] 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 5b2b424e4bfce6a85b8ca4cf020014fb560f23c4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:09 -0500 Subject: [PATCH 0309/1661] 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 d1c9111e11320b8aa9aa97ba4f5e89e77ce2d56f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:09 -0500 Subject: [PATCH 0310/1661] 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 3fe8a5790d681ab4390656526b5619bb587cb6b2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:09 -0500 Subject: [PATCH 0311/1661] 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 cd2fb1f00c987098fc1465425ee270c4fa8e25f0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:10 -0500 Subject: [PATCH 0312/1661] 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 0e6e07080b47f5b1680230db291fe92853272452 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:10 -0500 Subject: [PATCH 0313/1661] 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 0acf07842be22f34a563643cffd3a5391d9e8133 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:10 -0500 Subject: [PATCH 0314/1661] 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 a6936a74284a57fc25b5ba854b01934795a7140f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:10 -0500 Subject: [PATCH 0315/1661] 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 240fe3a79801bd7d848174d5bc95b816fe2acb63 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:10 -0500 Subject: [PATCH 0316/1661] 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 277945b213c8ba8c4e1d41ad78f2d2846d760c9e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:10 -0500 Subject: [PATCH 0317/1661] 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 8e6f1b8dc3ba15a3ca98fdefc452cf5689f20d14 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:11 -0500 Subject: [PATCH 0318/1661] 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 9a12a3f26fbc113ac1b6a44033a6cd7e9a0c72d7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:11 -0500 Subject: [PATCH 0319/1661] 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 6043d854bd5f4d0dca5110e6b0cc442483eea902 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:11 -0500 Subject: [PATCH 0320/1661] 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 7f439cc4c2e82b5993f6dc6e2d820efcf46c7825 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:11 -0500 Subject: [PATCH 0321/1661] 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 0a39e94819ba70a70035773d8dbba608cc95f188 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:11 -0500 Subject: [PATCH 0322/1661] 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 b3d233ab2d7dbf6f114651f5bec0b7412c32cb9a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:11 -0500 Subject: [PATCH 0323/1661] 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 86913959ea85aced512c19ff948512c7397f3451 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:11 -0500 Subject: [PATCH 0324/1661] 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 d670e4d63fd4d9b2c00efe3bb9936693e62e40cb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:12 -0500 Subject: [PATCH 0325/1661] 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 0e8abab41de8dc98f1e2fd60b9f8c8274205c988 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:12 -0500 Subject: [PATCH 0326/1661] 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 3254974ff1bbea6364c856a7217c384ac0bef619 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:12 -0500 Subject: [PATCH 0327/1661] 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 9d02ccb11173cf9a3107ed761950cafb0e42d431 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:12 -0500 Subject: [PATCH 0328/1661] 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 7b3f5a4cbd0ad7d03b691df1735d86a59427bc06 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:12 -0500 Subject: [PATCH 0329/1661] 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 f29e6bfdd27eebe0487b0c5b0cc9455740c489ab Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:12 -0500 Subject: [PATCH 0330/1661] 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 7c2581a95113f95cc92aa590b570b346dc6e76c1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:13 -0500 Subject: [PATCH 0331/1661] 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 a1bf3cbe60e297c20ab87bc9c74e704608525c84 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:13 -0500 Subject: [PATCH 0332/1661] 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 c60986ae20a4d5c1c1cd985c02bb128a33810a0e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:13 -0500 Subject: [PATCH 0333/1661] 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 6ba936347fcf4f516446f7a1a827b2a10e748b05 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:13 -0500 Subject: [PATCH 0334/1661] 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 9b65d1771a66d6140d362c391366dc7c2f9a0178 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:13 -0500 Subject: [PATCH 0335/1661] 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 1db73bf2b5a7b1fb3ee80def1ae1e2a4b7039e3e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:13 -0500 Subject: [PATCH 0336/1661] 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 87d8887678ec2da8a460c8bb8a41cf63c7b8012a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:14 -0500 Subject: [PATCH 0337/1661] 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 07a9b52fba5f0d92e70cb322dd4ce9f545b7a371 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:14 -0500 Subject: [PATCH 0338/1661] 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 b88ec61c287ec45ff9fcdac7ea3098245dd96ee8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:14 -0500 Subject: [PATCH 0339/1661] 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 0c74525d61471b2989b7d1dc3c0b83bdff11345a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:14 -0500 Subject: [PATCH 0340/1661] 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 946a4b24641a87cecf40efe7cc5c0912be2ee191 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:14 -0500 Subject: [PATCH 0341/1661] 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 49c0af8e7e50601a8533f27c59e2f2d2952eb0a0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:14 -0500 Subject: [PATCH 0342/1661] 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 fbfa00eaa98546cd07225595f49ee16c90465f3b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:15 -0500 Subject: [PATCH 0343/1661] 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 3ed5a4e847e1ad169b9758c82d520afa3e58e8dd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:15 -0500 Subject: [PATCH 0344/1661] 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 f6f7bc2371c259e66b56dc55e1a68ca60c00b103 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:15 -0500 Subject: [PATCH 0345/1661] 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 0a468318e2725c760273ad0f1658978a28aac07c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:15 -0500 Subject: [PATCH 0346/1661] 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 055d80305b310a6c29d47e8d8be7dceab8655d4b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:15 -0500 Subject: [PATCH 0347/1661] 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 b3bfb8ea8378b65e2972e94e128eb0c1ec8ce5f5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:15 -0500 Subject: [PATCH 0348/1661] 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 56a2c415eb0cc5e14a2ea01dbf0c3cbcea9b1d54 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:15 -0500 Subject: [PATCH 0349/1661] 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 c056deccc18445cb8f812154d39c610ae37e9b35 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:16 -0500 Subject: [PATCH 0350/1661] 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 46708ba017487fb11bc2f65f5fdb5bafbb1b8d4e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:16 -0500 Subject: [PATCH 0351/1661] 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 a61397463937d49a6161eb4139e833d6a14ff0b8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:16 -0500 Subject: [PATCH 0352/1661] 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 f010f4d44f00ab20104a49f8577aa1e4c7b36f58 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:16 -0500 Subject: [PATCH 0353/1661] 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 939533bc54591caaf815082bbd3feb86403a31fe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:16 -0500 Subject: [PATCH 0354/1661] 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 c22c40a945823ca65027d9b738a7dd056849ecf8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:16 -0500 Subject: [PATCH 0355/1661] 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 3055bf9d7c6f0f94287a338e814274c4c0dda2ca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:17 -0500 Subject: [PATCH 0356/1661] 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 adadb89b588511388cb36affe184853ad1cbbc77 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:17 -0500 Subject: [PATCH 0357/1661] 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 42987e8e0c2600546fd9b63241a968b868383e23 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:17 -0500 Subject: [PATCH 0358/1661] 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 e5f4f914a51d7ae6ce90830c186f92d452e2c52b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:17 -0500 Subject: [PATCH 0359/1661] 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 5e96b21d7a6ffaf7a746dc25cf19cfa5091bd915 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:17 -0500 Subject: [PATCH 0360/1661] 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 3dec5ea3bf15430a07c9e6c1033f2499babfeaf2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:17 -0500 Subject: [PATCH 0361/1661] 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 5f2fff09c00c9f38a41edde2d683b43b7749c95c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:18 -0500 Subject: [PATCH 0362/1661] 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 045e190cd5143eccde9278cf28357a98031d2265 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:18 -0500 Subject: [PATCH 0363/1661] 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 0a0e24796d7c7b616d7617651eff0f53e5ab83f8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:18 -0500 Subject: [PATCH 0364/1661] 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 eaebdae8e252ce55a8e8f3578e945ad55a7a7d2a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:18 -0500 Subject: [PATCH 0365/1661] 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 96af5366921961b4a95a4cc63e49d366b8a0b1b3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:18 -0500 Subject: [PATCH 0366/1661] 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 6c2c25ab27c0a847b445ece59d1d58a12005e93e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:18 -0500 Subject: [PATCH 0367/1661] 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 27165cd2f196d66ad45a8b051ffc7458fd5eca1c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:19 -0500 Subject: [PATCH 0368/1661] 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 47f9e4fd9e28dca35c8544bd40cced158ff9f765 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:19 -0500 Subject: [PATCH 0369/1661] 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 eb530dcbb03300d10dbf98eecc94a2903f9e1403 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:19 -0500 Subject: [PATCH 0370/1661] 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 c16b3a750f158078fa6882fbb676e9dd384d997b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:19 -0500 Subject: [PATCH 0371/1661] 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 11288d1b0d01c1c6e09372269aef7fd910406b2c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:19 -0500 Subject: [PATCH 0372/1661] 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 5e6ad0a1c8c48254a42290f2f3734f6743a3bc71 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:19 -0500 Subject: [PATCH 0373/1661] 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 3988445dfd39850969fa04dfe76360e519631ab3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:19 -0500 Subject: [PATCH 0374/1661] 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 401691fa8ce1e10e32ade2c9889dbe7b967c795a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:20 -0500 Subject: [PATCH 0375/1661] 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 f9179eaeb0c9f87c793cb0470c369f1d4c59a33f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:20 -0500 Subject: [PATCH 0376/1661] 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 74d9a56a655977f86a20a1c259330c4936c3b0e9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:20 -0500 Subject: [PATCH 0377/1661] 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 884db96008492e4268bca8492547fdccee4feea1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:20 -0500 Subject: [PATCH 0378/1661] 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 bb240d2ca9e24373f810a254bae53882baf2493d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:20 -0500 Subject: [PATCH 0379/1661] 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 164914df031eca9e07f8c41428d55d33c9125cc3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:20 -0500 Subject: [PATCH 0380/1661] 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 c3fc6f70f490a42656b8936520d81b7af559ff8b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:21 -0500 Subject: [PATCH 0381/1661] 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 237f75c298363d1aab6e57aa027c7ff7601321bf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:21 -0500 Subject: [PATCH 0382/1661] 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 a0c05946535f44a263adebcd1efd35f39f8d1fb4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:21 -0500 Subject: [PATCH 0383/1661] 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 4794499e79d6a60b312fe086ccca656de2f4f45b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:21 -0500 Subject: [PATCH 0384/1661] 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 1979b8f7c0b96b246a6f6c497c1c59c2a6d0c958 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:21 -0500 Subject: [PATCH 0385/1661] 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 9f2145d6fde4fae641ddaff9bf2e9a8c77e47543 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:21 -0500 Subject: [PATCH 0386/1661] 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 5e6d377913acfd6b0c645c4bc793f8cf2c7dce1d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:22 -0500 Subject: [PATCH 0387/1661] 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 d7018f184581a4427409c25284561b2eea03c5b8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:22 -0500 Subject: [PATCH 0388/1661] 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 654bc33e5624e8d12b1c6a336ff6c8e7a701ed0f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:22 -0500 Subject: [PATCH 0389/1661] 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 14940c7620efbf8385be631a9adfadd68921d50e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:22 -0500 Subject: [PATCH 0390/1661] 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 6c19fbc2ff509c388b91c43d9766ecd6fbd6c06f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:22 -0500 Subject: [PATCH 0391/1661] 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 f5536b588c3e110035942b7c72367567cb968a5a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:22 -0500 Subject: [PATCH 0392/1661] 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 c42bde2e887d6e5383d6d33ad19ed5e6501f0bcb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:23 -0500 Subject: [PATCH 0393/1661] 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 3448134ebddd375622e64e744a75ca69b1c05aa7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:23 -0500 Subject: [PATCH 0394/1661] 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 d3e3436cea4674f24d202e675d770fe4e429ba26 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:23 -0500 Subject: [PATCH 0395/1661] 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 a02564b95e9c5d8760a3b6960b7d4a10def76b07 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:23 -0500 Subject: [PATCH 0396/1661] 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 33ccb644cee2c5973dc98f68d883f62cefec69a3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:23 -0500 Subject: [PATCH 0397/1661] 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 95d148c97cc41561429643a13a1e3ac587ea1466 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 17 Nov 2025 10:31:08 -0500 Subject: [PATCH 0398/1661] 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 2f3f5521301fd5753b27a186e57a773a1bb86f93 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:24 -0500 Subject: [PATCH 0399/1661] 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 4a871f54c72bd22dae50346d565bf61bb9851742 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:24 -0500 Subject: [PATCH 0400/1661] 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 2ed1e9da75a2c0aeaf9db1554ba44dbe81dfc12a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:24 -0500 Subject: [PATCH 0401/1661] 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 63dcd5b08098dc303e36fad486adcb7ab69f24a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:24 -0500 Subject: [PATCH 0402/1661] 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 00f7999c3d408f321dc04c6286bd83c8e62dbf87 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:24 -0500 Subject: [PATCH 0403/1661] 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 4b97dfbcd28e15c4f8cee5bc9977d3c07e94a9e0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:24 -0500 Subject: [PATCH 0404/1661] 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 969b6ff07d4ee666b95c612f701079c10fca4cff Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:24 -0500 Subject: [PATCH 0405/1661] 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 5fb93399778532a854b02934acec4e6fb8452245 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:25 -0500 Subject: [PATCH 0406/1661] 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 f7d14955251ee8b748ebe278a93a590a6dcf2165 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:25 -0500 Subject: [PATCH 0407/1661] 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 524153758dfdeefbc8be3b5dcd19aaef77def9f0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:25 -0500 Subject: [PATCH 0408/1661] 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 5684e6645ba2c1afcd0411c139c536c8f5fa22fc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:25 -0500 Subject: [PATCH 0409/1661] 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 1d2deed8e90f06fb30124bea1789f2aff45a5755 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:25 -0500 Subject: [PATCH 0410/1661] 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 a9ff41a3c20a0f1895d5dddedc3414823f1e5dd2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:25 -0500 Subject: [PATCH 0411/1661] 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 74b65b3b703db24e9c169464766405eb7ff265bf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:26 -0500 Subject: [PATCH 0412/1661] 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 55c99fbd0f95d6daec216336aeca636d8adbf7c8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:26 -0500 Subject: [PATCH 0413/1661] 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 6da9a18a111b36dd31986390263d8959db1208b3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:26 -0500 Subject: [PATCH 0414/1661] 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 5802ebfbd5922f26f06e8536881df506325682cf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:26 -0500 Subject: [PATCH 0415/1661] 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 5276baf90604ec8b5adff7e25a5ed9c5587cf033 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:26 -0500 Subject: [PATCH 0416/1661] 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 b71cacd962a27ae1e57ea2d4f81c634255bf6fa7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:26 -0500 Subject: [PATCH 0417/1661] 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 e95f55d6d67bf3ad28e44e9ab236b1d7e7b4de8b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:27 -0500 Subject: [PATCH 0418/1661] 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 d051c759f87e4e35250d17a75ec31a91d5f0b455 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:27 -0500 Subject: [PATCH 0419/1661] 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 07134eecbb7631ee20e8f1e5a24a4881ea17b4eb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:27 -0500 Subject: [PATCH 0420/1661] 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 7fe62e8da3b39284749d11bfd8c8dbdc1cd23cc8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:27 -0500 Subject: [PATCH 0421/1661] 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 e6c7a7b28a2245933d4040de8e419f759b3bfbad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:27 -0500 Subject: [PATCH 0422/1661] 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 a43696f8c8ff0ba065b234a8a2444d1ae55a5100 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:27 -0500 Subject: [PATCH 0423/1661] 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 5cfda417248371226b78ebbc95cd02ce201ee52c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:28 -0500 Subject: [PATCH 0424/1661] 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 b0b913f5395f04ab1d0a0ec9833c5db4174bf56d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:28 -0500 Subject: [PATCH 0425/1661] 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 2e456806763af5a5a8d39b1f6a681c5219bd93e3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:28 -0500 Subject: [PATCH 0426/1661] 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 c4b9869e47411094ca2af9343b7c0f8873fe2287 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:28 -0500 Subject: [PATCH 0427/1661] 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 21a5c218e7843c769ac3bba050e94f87ec9ce378 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:28 -0500 Subject: [PATCH 0428/1661] 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 c14f8679a2572c891ab03e631dada5f33932d3cf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:28 -0500 Subject: [PATCH 0429/1661] 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 4f24009d6a2025ce24cbfcf0290250fbc66eb48b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:28 -0500 Subject: [PATCH 0430/1661] 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 949edcade1f004b43bd5b86bb312f9268b4cc25a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:29 -0500 Subject: [PATCH 0431/1661] 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 e76befa28825885063f3d464d0d13a67bf5958fb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:29 -0500 Subject: [PATCH 0432/1661] 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 2cbdca24966f17327123b369ae65bbf9ad0c83bf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:29 -0500 Subject: [PATCH 0433/1661] 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 ebad01008186e3bc94437870c481b89b9c325e2e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:29 -0500 Subject: [PATCH 0434/1661] 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 95e7d5c6ab40c70e12e6c5fdf1ab09bdba5de107 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:29 -0500 Subject: [PATCH 0435/1661] 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 ecd8e2a93cd322a80d5519f66a218754119568c2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:29 -0500 Subject: [PATCH 0436/1661] 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 99a09396176fa1709a7f3cecfbb50a8e1e4c9c2f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:30 -0500 Subject: [PATCH 0437/1661] 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 67a9af08336ed900b6ba6d83422ec8b21b46a7d3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:30 -0500 Subject: [PATCH 0438/1661] 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 1d20f325f08f75176ddb9016193a95ccad2cf367 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:30 -0500 Subject: [PATCH 0439/1661] 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 85208fdecc8950f84ff6d531123b485de87b390e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:30 -0500 Subject: [PATCH 0440/1661] 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 dd84dbea5cadd5aaff3450626587df9bbbd9ed72 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:30 -0500 Subject: [PATCH 0441/1661] 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 fc625c5ccbe3f501e7a4d8736e2c9e8b41964a4c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:30 -0500 Subject: [PATCH 0442/1661] 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 7abcc20884871c9bd68e63f212334a2a14851052 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:31 -0500 Subject: [PATCH 0443/1661] 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 1f2f3da83b3df7028bfae80c11f1dd2b900740fe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:31 -0500 Subject: [PATCH 0444/1661] 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 a587fad1330732bc281db76e4621d4bab743e62b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 25 Nov 2025 09:09:42 -0500 Subject: [PATCH 0445/1661] 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 0326b68dd5a4923b3d411c92c2208a8786963bc9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:31 -0500 Subject: [PATCH 0446/1661] 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 752d002339ec22045ec3820ea9881548ecc72ab3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:31 -0500 Subject: [PATCH 0447/1661] 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 e4c987b98fee565ead9be4863a66f9aa347fedd8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:31 -0500 Subject: [PATCH 0448/1661] 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 b7b608d0a39e5f2e19bbeaf8cf6d7c961e2424c9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:31 -0500 Subject: [PATCH 0449/1661] 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 c4a5fe3a22ce27b6f2dec3c58710225f2888f3fa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:32 -0500 Subject: [PATCH 0450/1661] 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 02ed8146b9ea054342aa8154e6157ba55b4c8410 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:32 -0500 Subject: [PATCH 0451/1661] 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 f6f32e8b983495108354d76db5a43776c09cc05c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:32 -0500 Subject: [PATCH 0452/1661] 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 56b7d3e9de2dfceb5e132a9e552c5202a42ecd63 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:32 -0500 Subject: [PATCH 0453/1661] 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 fa852787251df1dea054b1ac9aad519484c1d39e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:32 -0500 Subject: [PATCH 0454/1661] 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 ccf7fadaea752ebb538a0c235cee63b3abdaa5e8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:32 -0500 Subject: [PATCH 0455/1661] 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 12c4a273b13e5c3522a37cf7028fb0748747c1f2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:33 -0500 Subject: [PATCH 0456/1661] 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 dd2cce86327f7c71cbe56a7e71b3ba9f7656bda2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:33 -0500 Subject: [PATCH 0457/1661] 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 d3549fee583fb86bbe390ef8fd624c38052a34d6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:33 -0500 Subject: [PATCH 0458/1661] 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 beeeb03771066e46ca5e961f2a49312513e01f9e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:33 -0500 Subject: [PATCH 0459/1661] 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 5db788a91a7951d57f939adc30b40ad983086181 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:33 -0500 Subject: [PATCH 0460/1661] 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 bd649334f4f3187cf2391b583c6887a34c249c71 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:33 -0500 Subject: [PATCH 0461/1661] 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 dce61cda61ba951fafdc1168544cd4e1542f4a75 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:34 -0500 Subject: [PATCH 0462/1661] 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 04d838d5fe2c8b92542e4030b75b9d8e56eb9388 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:34 -0500 Subject: [PATCH 0463/1661] 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 54abdc2240be29343ad0d12a39832827e812cbda Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:34 -0500 Subject: [PATCH 0464/1661] 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 9cb19cf5a2b21786e51642d7db14f42a247e41c4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:34 -0500 Subject: [PATCH 0465/1661] 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 c824001a29aa8463e12b81604cf3462f031ab8f8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:34 -0500 Subject: [PATCH 0466/1661] 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 8a3f62ec0a90e36b3f6cfef977ad5ec99f944c53 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:34 -0500 Subject: [PATCH 0467/1661] 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 ec8f87e5e1ecd6e82596a6bad359a8bef30d64c8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:35 -0500 Subject: [PATCH 0468/1661] 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 fb432b74765701fdc8bbed77853c46cfe800f0b9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:35 -0500 Subject: [PATCH 0469/1661] 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 91c348189346d34c426920bfd2b94d170744a955 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:35 -0500 Subject: [PATCH 0470/1661] 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 d3a18f6b58363c3670531a0cb3e783a260c89be3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:35 -0500 Subject: [PATCH 0471/1661] 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 b39d22557353376e004f3f1128ceeea3a4866f59 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:35 -0500 Subject: [PATCH 0472/1661] 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 59ecf8dfca5f661088741cd19ddb1e23f64337c2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:35 -0500 Subject: [PATCH 0473/1661] 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 cd61f9eb216dfbb200ca78a4ee97697d4a5a1c6b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:36 -0500 Subject: [PATCH 0474/1661] 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 fcbaf76ae55b353a312f2c2320491b79bec7a18d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:36 -0500 Subject: [PATCH 0475/1661] 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 567875c9afe927a1b614f7b40450452d4316200e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:36 -0500 Subject: [PATCH 0476/1661] 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 4599687594fe2d3811bac6ad066263f44f53ce26 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:36 -0500 Subject: [PATCH 0477/1661] 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 c252864715f6558a5d0f8ec5609e11c1ee99475e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:36 -0500 Subject: [PATCH 0478/1661] 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 10466634206a83f438a4218618c14463ea35ac9e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:36 -0500 Subject: [PATCH 0479/1661] 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 f14c8bd04b415bd793b440a158459cfef3645405 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:37 -0500 Subject: [PATCH 0480/1661] 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 517d3840a3ccb88ab4d839535275a25b9ce796a1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:37 -0500 Subject: [PATCH 0481/1661] 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 27ac0542a6f460fffc1e1f5276a57fac1f437c43 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:37 -0500 Subject: [PATCH 0482/1661] 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 4e05f9d06eede3605b9f44fffe5631ecd7816ccf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:37 -0500 Subject: [PATCH 0483/1661] 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 2b86fb9c1b47c39de2b01fabbb400001c0278c73 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:37 -0500 Subject: [PATCH 0484/1661] 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 87595b1460db89e202c8a3064d8f578350735408 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:37 -0500 Subject: [PATCH 0485/1661] 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 4cdfb8bc1e1ae528a2854d7031d9eda9804e8799 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:38 -0500 Subject: [PATCH 0486/1661] 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 a39241c8f5d4e6efd97fe868b74e9234b672ce68 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:38 -0500 Subject: [PATCH 0487/1661] 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 9af5d3c23209ffa71ec1bffda814dc4dcf395eeb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:38 -0500 Subject: [PATCH 0488/1661] 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 782050715f530711b967c08f79c24d4e18c9173d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:38 -0500 Subject: [PATCH 0489/1661] 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 4cae2c1b9ef929da08acec088b97809bfc385cbe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:38 -0500 Subject: [PATCH 0490/1661] 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 c71ed5c196c695f90ad3690a4b772acf138314f2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:38 -0500 Subject: [PATCH 0491/1661] 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 bdc7ab3cfc1c78efd34bf4a54ce0e5b797a818d1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:39 -0500 Subject: [PATCH 0492/1661] 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 18b1e63f5b9f84ed32c51df39e025df448eef7d5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:39 -0500 Subject: [PATCH 0493/1661] 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 01464a891b43f909da4afe1925e444bcf20a5f17 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:39 -0500 Subject: [PATCH 0494/1661] 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 fa99f149f5d142918e00b8e28fa60564852e1595 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:39 -0500 Subject: [PATCH 0495/1661] 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 76eff3f01392a772f61c95fb11d90f8fb1a52432 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:39 -0500 Subject: [PATCH 0496/1661] 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 ecf6818f8dae2e7d85a8b41e028fc558c6db61ea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:39 -0500 Subject: [PATCH 0497/1661] 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 e0ee54d1ef81bfcd670ac5f89026a38505469db1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:39 -0500 Subject: [PATCH 0498/1661] 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 eed9973042cda07603c66d60131bd5eaa09ec3bf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:40 -0500 Subject: [PATCH 0499/1661] 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 93e035e5a2a3aac47c7b064a326b1fbdbf0bb910 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:40 -0500 Subject: [PATCH 0500/1661] 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 da01f2b3872bc36e45b7f68bbaee4f55b552fa2a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:40 -0500 Subject: [PATCH 0501/1661] 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 558ea9f776bb3f99188ae155c57777cd4904aaa2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:40 -0500 Subject: [PATCH 0502/1661] 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 eabedbf63621a436c8abea0bf48e481cbe6d74f8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:40 -0500 Subject: [PATCH 0503/1661] 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 ef342c952fb577a3c0eb9894ed513334642eb56c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:40 -0500 Subject: [PATCH 0504/1661] 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 67b3b73819048d271d3ad6962da520235c8db2a5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:41 -0500 Subject: [PATCH 0505/1661] 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 6fb872304f11ed5bd9020276d1621e364d7a61b0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:41 -0500 Subject: [PATCH 0506/1661] 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 2092cd85b9970c0fcd55e2247222f8b98c501cef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:41 -0500 Subject: [PATCH 0507/1661] 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 a5accd8b78832ef0993a91575bfce5dafaaa4e0d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:41 -0500 Subject: [PATCH 0508/1661] 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 01f667f65fbc35519f945cf24e66d4cd32c66398 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:41 -0500 Subject: [PATCH 0509/1661] 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 8603f1f6c7baef523442ef635999dd735df54962 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:41 -0500 Subject: [PATCH 0510/1661] 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 686929a75b7c200bb10cf5c9e16db3154e35e57e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:42 -0500 Subject: [PATCH 0511/1661] 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 cd67c6b12781cd127a20d1af6dd9fb018e38c126 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:42 -0500 Subject: [PATCH 0512/1661] 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 2ff6309d922b0ed100e85f7b5edde8fb3dbf9a47 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:42 -0500 Subject: [PATCH 0513/1661] 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 09e6bcafee6c0782ed1aff1730918de4113de3f1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:42 -0500 Subject: [PATCH 0514/1661] 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 96879dd17c8fe8a2ddd3620347284538781805be Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:42 -0500 Subject: [PATCH 0515/1661] 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 7aabad8c34ebf6fd275c57eb9be3e098a0c2c1cc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:42 -0500 Subject: [PATCH 0516/1661] 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 9e01a11cf84bdea8a41b4b709ff492691d396fb5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:43 -0500 Subject: [PATCH 0517/1661] 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 c3a1d37abad8e4020915b98f5c762fe371a5f372 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:43 -0500 Subject: [PATCH 0518/1661] 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 bc4498954d5a1cbeb650114114e3c58020fd1ea2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:43 -0500 Subject: [PATCH 0519/1661] 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 50a8ecde6fa24ba9e9a480cb0981a59e91803c38 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:43 -0500 Subject: [PATCH 0520/1661] 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 689b8dc6528be78c5634fc3d1174097ef4a45dbb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:43 -0500 Subject: [PATCH 0521/1661] 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 3ca70dcf70e2780cc9a9b54863086e122ca59ffb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:43 -0500 Subject: [PATCH 0522/1661] 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 71042f03b3b4f5498f084ed2142faabc23a09093 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:44 -0500 Subject: [PATCH 0523/1661] 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 29c246e4e1c7733a9b273085777754e66219d752 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:44 -0500 Subject: [PATCH 0524/1661] 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 f3fc6641ae48f391364a63d47a3b59f55d053071 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:44 -0500 Subject: [PATCH 0525/1661] 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 23cd84dc63f87dc71fba6a420d4aabed229a2ff4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:44 -0500 Subject: [PATCH 0526/1661] 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 656f6b988ce3a203747b31620c2f4c8384d38236 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:44 -0500 Subject: [PATCH 0527/1661] 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 6a7b6428bebfdf4180afd31fbc17377eb7ae458f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:44 -0500 Subject: [PATCH 0528/1661] 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 04054c0b7b468abe81f75555f96306d3d8e3e664 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:45 -0500 Subject: [PATCH 0529/1661] 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 319a2e4ce688f22013e79d93da3d83ad79f32fb6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:45 -0500 Subject: [PATCH 0530/1661] 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 ca391c34964b20883e4ddb889eaca4a8a7ba6756 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:45 -0500 Subject: [PATCH 0531/1661] 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 32de35ca03c12064f8027daf907f725b64ac568f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:45 -0500 Subject: [PATCH 0532/1661] 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 ba44f9a726d347597876ad2416dbc710af8c951b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:45 -0500 Subject: [PATCH 0533/1661] 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 4758c1c041cf4db3176f9f4af9a2eb4c8961b7cd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:45 -0500 Subject: [PATCH 0534/1661] 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 b09b67c70bad9e3719468c398825dd0e45bd1889 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:46 -0500 Subject: [PATCH 0535/1661] 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 4aac2f44f70704810cb3f00d2f787ca703e74535 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:46 -0500 Subject: [PATCH 0536/1661] 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 0da4b632f20dcdfa709a2ff5e6e9f516ba11b6f2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:46 -0500 Subject: [PATCH 0537/1661] 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 cc6ea5c6d04bf29b340a679660781675bd5b0c10 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:46 -0500 Subject: [PATCH 0538/1661] 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 9965e06175e5c36629ed72665601c1f89c88ba45 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:46 -0500 Subject: [PATCH 0539/1661] 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 dffa316a69305a514e97535b72d4ce223d97fe41 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:46 -0500 Subject: [PATCH 0540/1661] 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 face0b6ba1699f7e3b91306d66d6f4247c090f27 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:47 -0500 Subject: [PATCH 0541/1661] 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 ffc9d4f699da7555e6e8fe8a5e37b83b1aec8cc3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:47 -0500 Subject: [PATCH 0542/1661] 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 6a88e2d7199eb21fa24485c7310b71503d04251c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:47 -0500 Subject: [PATCH 0543/1661] 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 86b0c91c02867fb4b93b564cde4b9acda09bae82 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:47 -0500 Subject: [PATCH 0544/1661] 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 2e2e45b099529cf36ac075317c14a34356b625bf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:47 -0500 Subject: [PATCH 0545/1661] 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 009436fe1ad43de009f165a434708e2b56206ec9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:47 -0500 Subject: [PATCH 0546/1661] 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 a4a91789e00670f760e581cfdfb1e9280e410af2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:48 -0500 Subject: [PATCH 0547/1661] 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 2b5c74dc147d87b9772f5d8eb16ec886d82ab9ba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:48 -0500 Subject: [PATCH 0548/1661] 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 8641940cc9441688cd55c46b2e247161431d0044 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:48 -0500 Subject: [PATCH 0549/1661] 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 02f6a4b7dda1fee7f453cb3ff5213157d079f1db Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:48 -0500 Subject: [PATCH 0550/1661] 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 e2d2e7cf986056a470248cf1b70890965cee9ae7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:48 -0500 Subject: [PATCH 0551/1661] 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 d652cb359feedce4cca20cc1be45fdb653ee54a0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:49 -0500 Subject: [PATCH 0552/1661] 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 e0aa14585bb1507a5fbef783422bed474c3a3b55 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:49 -0500 Subject: [PATCH 0553/1661] 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 6531322f992541f2805c4493d24f18b838f3e16c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:49 -0500 Subject: [PATCH 0554/1661] 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 80b187d20f2b43092956ef03cf56a2daa3b5a4e7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:49 -0500 Subject: [PATCH 0555/1661] 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 fdceca21ec44a1401b94207bbc44dde9db51bde3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:49 -0500 Subject: [PATCH 0556/1661] 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 27c80fd28a70f9a15f0b0b273b154b23c92933ef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:49 -0500 Subject: [PATCH 0557/1661] 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 d30283356e0d4dad6520b382d6430e1c7582a00c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:50 -0500 Subject: [PATCH 0558/1661] 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 d94514a0cbf745860ecc6795900c8e43f6468f39 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:50 -0500 Subject: [PATCH 0559/1661] 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 cc65c892acb768d5251f4826b1ff00e7ddf7d1d4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:50 -0500 Subject: [PATCH 0560/1661] 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 6f821059cd3cc713aad4a29dc43cb8cba81bd1e6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:50 -0500 Subject: [PATCH 0561/1661] 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 bf1b454b0bfa82a7258760ba362669602610e5d6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:50 -0500 Subject: [PATCH 0562/1661] 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 0cb2e815c8eb7b7549fd466b492117dbd16f0c75 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:50 -0500 Subject: [PATCH 0563/1661] 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 6c0b16e9ae5e12af5067d3ed290b0907a71ca03c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:51 -0500 Subject: [PATCH 0564/1661] 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 9c6cd09fa13760c364d78c4a065da288b90d88f0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:51 -0500 Subject: [PATCH 0565/1661] 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 dacd2693dfc9b8dab2fe2506c08499c33a212a0f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:51 -0500 Subject: [PATCH 0566/1661] 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 e2c88a605548a3d40bb324138c0c1019f9ccbb82 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:51 -0500 Subject: [PATCH 0567/1661] 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 21ac10d613cdf5ea57115cc8ceadda79a24642a0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:51 -0500 Subject: [PATCH 0568/1661] 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 cfec07b3fba68427fd1c1894d2647ced977b230d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:51 -0500 Subject: [PATCH 0569/1661] 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 7ebfd7656d1bdbc7b7781b494ca5e603a73dd065 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:52 -0500 Subject: [PATCH 0570/1661] 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 a4f9b0344c03fbb094d3b4249344f3d2934230b6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:52 -0500 Subject: [PATCH 0571/1661] 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 c241e56858ad51182345d20cfd78db8588820e15 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:52 -0500 Subject: [PATCH 0572/1661] 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 90b1286b660f6229632db3aa70c35c9c1f1e75c0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:52 -0500 Subject: [PATCH 0573/1661] 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 62eef5cdbcb66f026f26e942d17bfc79aa6cda09 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:52 -0500 Subject: [PATCH 0574/1661] 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 e55ff99c63223bdd18b7748081689fd1a1f42b97 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:52 -0500 Subject: [PATCH 0575/1661] 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 3c1c5218d5a8f30314731604ab11f8a82b9eabfa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:53 -0500 Subject: [PATCH 0576/1661] 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 ce6184c652bc90099e351fd09931b111f4d3c15c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:53 -0500 Subject: [PATCH 0577/1661] 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 dfe4ba92d095abbe9af1332dd107a3b708bcff43 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:53 -0500 Subject: [PATCH 0578/1661] 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 4515b6862a3d705add4c5cfb96e3420a2cab40f3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 17 Nov 2025 12:29:59 -0500 Subject: [PATCH 0579/1661] 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 251e27abfdbeb6573e83a0c8bb3ad4eb78fe53e3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:53 -0500 Subject: [PATCH 0580/1661] 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 e9af1363ae9b1a0be6c228281b834542b464c514 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:53 -0500 Subject: [PATCH 0581/1661] 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 fe1b3727810693c6b608c80a2ee29550202f6641 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:53 -0500 Subject: [PATCH 0582/1661] 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 fa3b01e1bb10e9eda14b65f105aaceb8c621cfc7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:54 -0500 Subject: [PATCH 0583/1661] 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 5bfc09eef531f38007594975339bdfd3ac9335a9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:54 -0500 Subject: [PATCH 0584/1661] 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 321c10f7e2838914f45b989d56babaa01b93a60d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:54 -0500 Subject: [PATCH 0585/1661] 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 948763b9c25e190a32cf7b749ac8a2aded85d2ff Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:54 -0500 Subject: [PATCH 0586/1661] 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 e6799e045a656a01925d45f1bf453ba4a46fc25d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:54 -0500 Subject: [PATCH 0587/1661] 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 df4a3e6e75c63eac79c9030c81a19edfe7a067a1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:54 -0500 Subject: [PATCH 0588/1661] 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 374d4ea0715a42fce8229fa3f1a1b91acf910c16 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:55 -0500 Subject: [PATCH 0589/1661] 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 94afdc6a1975eb42b6a47a40ce72f00af1affb13 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:55 -0500 Subject: [PATCH 0590/1661] 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 4f102d5afb2d61106e410f5f06c14e0c8a9b5347 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:55 -0500 Subject: [PATCH 0591/1661] 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 d3b4e73976ee74f9d594112e94d1359d63ce1890 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:55 -0500 Subject: [PATCH 0592/1661] 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 ec7cdc5d6d6a06f93533f25048fbcef088817f73 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:55 -0500 Subject: [PATCH 0593/1661] 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 70b5d58c5c0ed16a5a910cd67eafe8505c83cf5d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:55 -0500 Subject: [PATCH 0594/1661] 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 148733eede4c327a7ff769e78100bc066a6fcf02 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:56 -0500 Subject: [PATCH 0595/1661] 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 3caca047e7438a949ac7a5d532966266293aa044 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:56 -0500 Subject: [PATCH 0596/1661] 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 6661956a057ab49e78570e632e9cd606358d7c1c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:56 -0500 Subject: [PATCH 0597/1661] 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 863a602ab4bbe9abdc362993b3db2ababe88428d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:56 -0500 Subject: [PATCH 0598/1661] 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 dd72aeb495e75294564f233e72d25397e69bda11 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:56 -0500 Subject: [PATCH 0599/1661] 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 d11b3eb7c661797313e16a7570c463243682a0a6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:56 -0500 Subject: [PATCH 0600/1661] 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 09675cbb185a61759a3875e4aa07adf6b82c0565 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:57 -0500 Subject: [PATCH 0601/1661] 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 54684dd9dc757b82e1b82817364c0ef4b87cd69e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:57 -0500 Subject: [PATCH 0602/1661] 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 647ef7fc42e234da2eda79fe8a771768e16d39ff Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:57 -0500 Subject: [PATCH 0603/1661] 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 c64151ec70803371cfa96662f8ddb35d9c9eb795 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:57 -0500 Subject: [PATCH 0604/1661] 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 6da0b161f1ab9c8110224ec06170727dd8f79637 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:57 -0500 Subject: [PATCH 0605/1661] 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 cd7a4be2eebf6c792ffb4d9621cf8416ddebb712 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:57 -0500 Subject: [PATCH 0606/1661] 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 6cb3dd6b3b7195e2e4070cfbeb11faf9d10b5c37 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:58 -0500 Subject: [PATCH 0607/1661] 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 2de78b34cc3a6b2e2bcacb7f7c70736798a87774 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:58 -0500 Subject: [PATCH 0608/1661] 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 4382077934c4dc9180da99465ba6305b43a5a548 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:58 -0500 Subject: [PATCH 0609/1661] 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 f2e28646cb04c215fe695b9da94a2e8bd6ad03ff Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:58 -0500 Subject: [PATCH 0610/1661] 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 39a988861f79332796afd38284cde6f1304486df Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:58 -0500 Subject: [PATCH 0611/1661] 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 9de58203cadd7839fe7903eccc7f7bfcb94198b0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:58 -0500 Subject: [PATCH 0612/1661] 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 13e97441ee4b286b545ef383d6831cc03f21c386 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:59 -0500 Subject: [PATCH 0613/1661] 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 410706cdde6b0c0d548829bfa4be0590414466a5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:59 -0500 Subject: [PATCH 0614/1661] 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 999438c7ebc23e27a02499562c3c9a2e4bcf4f3c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:59 -0500 Subject: [PATCH 0615/1661] 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 369313bd1f30ae130f18853e0d9b89e24506fa78 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:59 -0500 Subject: [PATCH 0616/1661] 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 a84fdc6460b471b0b838af471d80fe8fb7631ea7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:59 -0500 Subject: [PATCH 0617/1661] 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 ae40f22f6edbd7f6c7faea8a8480989cb9bee079 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:15:59 -0500 Subject: [PATCH 0618/1661] 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 ae2dab8c4464bb001f771fa89ed84e0f60f8f86e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:00 -0500 Subject: [PATCH 0619/1661] 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 499e275298df4f6796b13ad211613d2aa88a5245 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:00 -0500 Subject: [PATCH 0620/1661] 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 23a3b481e5c8ab252164876b18492bcf03d74da6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:00 -0500 Subject: [PATCH 0621/1661] 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 4490c944e20395debac3cea7d682c7435960fd63 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:00 -0500 Subject: [PATCH 0622/1661] 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 b678d2184fa4113f4db0d679ec009972c0e3f7a2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:00 -0500 Subject: [PATCH 0623/1661] 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 9a70153b109e06292ac3eca132fbcf0cb4c8a968 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:00 -0500 Subject: [PATCH 0624/1661] 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 f9527f5d7d3ef3bff4086805e2b96379a8c6c949 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:01 -0500 Subject: [PATCH 0625/1661] 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 8b5a6b58233c8ac60f01d3c1fd0c80a38eea7ce7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:01 -0500 Subject: [PATCH 0626/1661] 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 db68319d60b813ee43f1b01ade56dc216e21b70c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:01 -0500 Subject: [PATCH 0627/1661] 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 41341d130c5bcb3a394751a8e116bb002b1fbde0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:01 -0500 Subject: [PATCH 0628/1661] 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 2a343173666c3e6bdcb4c0296a9ce899c04dcd25 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:01 -0500 Subject: [PATCH 0629/1661] 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 0368cdc490665a3394c26df2ea7ca50bdd7035c8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:01 -0500 Subject: [PATCH 0630/1661] 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 a3191631be1bc5996acf7e3ed30a618a1a5f9f0d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:02 -0500 Subject: [PATCH 0631/1661] 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 4eb8fb3b008ba47a85b84398135fbd06702687f6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:02 -0500 Subject: [PATCH 0632/1661] 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 9236c3b607325ab6a1294a41f31ba0a379f31ede Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:02 -0500 Subject: [PATCH 0633/1661] 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 ca0695faa6401779dac9fcf309bf1e31eef67c87 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:02 -0500 Subject: [PATCH 0634/1661] 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 82ed1c5b03c82ddc6ab6cdb18beb0e7859f9e7ca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:02 -0500 Subject: [PATCH 0635/1661] 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 52386e1ecd2d844659063a67eb65010a1276bc51 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:02 -0500 Subject: [PATCH 0636/1661] 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 7e1eb1d74e91d990286d58c9241469975dfcef2a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:03 -0500 Subject: [PATCH 0637/1661] 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 ff5cd26afef03d58dee1e42282424fdbef6ce7a8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:03 -0500 Subject: [PATCH 0638/1661] 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 78805d002e36e2d829a72f04d6dfb46770e8acf7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:03 -0500 Subject: [PATCH 0639/1661] 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 d9d00e90fe30e7cb52c84dd64d8653c755570fdb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:03 -0500 Subject: [PATCH 0640/1661] 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 a5cb1e72d5aa407fd531153a84c219b9023a9e24 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:03 -0500 Subject: [PATCH 0641/1661] 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 8b24cc33130ec7b78c5c3fe152784a320c561c45 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:03 -0500 Subject: [PATCH 0642/1661] 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 32a411de558b7b287eef57536a2320651f27f88d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:04 -0500 Subject: [PATCH 0643/1661] 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 1a19c2309d4209b96b080999f4ce5a3156d17747 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:04 -0500 Subject: [PATCH 0644/1661] 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 1cc78a7afdc9c2c23c0a0872d9bd7d55bf9ae1c5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:04 -0500 Subject: [PATCH 0645/1661] 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 e545cba01799821e03e01696a3e40c51385e6eac Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:04 -0500 Subject: [PATCH 0646/1661] 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 e620c292b179b5414249c7ada1eb0e8d71f1fa08 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:04 -0500 Subject: [PATCH 0647/1661] 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 4f45ddb9b2642405b2f6821f61239145b9f4fe43 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:04 -0500 Subject: [PATCH 0648/1661] 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 80539d04a2dd79e4a4b1e8fce748ed46f6eb05f3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:05 -0500 Subject: [PATCH 0649/1661] 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 a16c5e44a1a67f709585c443bd187587e9655b95 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:05 -0500 Subject: [PATCH 0650/1661] 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 7040c45369e6f5e6030270d6bed2ef536f6c0c0a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:05 -0500 Subject: [PATCH 0651/1661] 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 0dadf913630530cbe1f4cc51ba7b1ff9b7f71e05 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:05 -0500 Subject: [PATCH 0652/1661] 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 1f6c1d0256bcf3c2a5e451e5782e2a60ad4bcfb1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:05 -0500 Subject: [PATCH 0653/1661] 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 e29ff59190c8fb801a7e023e44e1c363e44e4e32 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:05 -0500 Subject: [PATCH 0654/1661] 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 4577f12421a7f271778241c6b07b28c0f743e165 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:06 -0500 Subject: [PATCH 0655/1661] 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 afb61b5e527408da353ec6eced084ee9666917a0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:06 -0500 Subject: [PATCH 0656/1661] 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 7bdc84bb7102707a705b4912499342dd9bc9626c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:06 -0500 Subject: [PATCH 0657/1661] 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 2cc07202629824b0a2bb25315e6000060c92fbfa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:06 -0500 Subject: [PATCH 0658/1661] 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 32e96ac52971beb9b9e5187a359016352f7b89aa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:06 -0500 Subject: [PATCH 0659/1661] 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 5d1a65ee986da39747c691817320cb896034a8b2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:06 -0500 Subject: [PATCH 0660/1661] 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 cec9b3bb1cde377da43edc78922e929dd07ad76a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:07 -0500 Subject: [PATCH 0661/1661] 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 e31b13a513e7ace3d3202a8fb409be9f06e7259b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:07 -0500 Subject: [PATCH 0662/1661] 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 e0bef6ec90361e08a1d714b5ffa504f148857240 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:07 -0500 Subject: [PATCH 0663/1661] 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 97bafb65d45fb556537cf3c14eac3470167d16f4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:07 -0500 Subject: [PATCH 0664/1661] 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 ea90195f2686d9c4f91a43f8ee7a899d60d8077b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:07 -0500 Subject: [PATCH 0665/1661] 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 67abe91d22c983aa12d33002c1821894f38ad53a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:07 -0500 Subject: [PATCH 0666/1661] 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 19133fa7317441fe028d8c4cd4bbcdef2dcd5d50 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:08 -0500 Subject: [PATCH 0667/1661] 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 846cf6b792e0df35d22c45b766e89fc046cfffb4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:08 -0500 Subject: [PATCH 0668/1661] 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 93c97e1b0197be909643d0c2c433bc5f7c7436e8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:08 -0500 Subject: [PATCH 0669/1661] 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 b711ea175465daff8e32447f66294db72c2fa016 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:08 -0500 Subject: [PATCH 0670/1661] 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 4cbc47f97cbe32756f5f92e115a20f2138aaaed4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:08 -0500 Subject: [PATCH 0671/1661] 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 2160a4f216a173912e6099f9e284bc45c57abda0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:08 -0500 Subject: [PATCH 0672/1661] 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 ca2371dbd672bba1e2d5af4f51d28942a052423b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:09 -0500 Subject: [PATCH 0673/1661] 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 c7371c5bceda9270b0dcd5926bfa871ee834e50a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:09 -0500 Subject: [PATCH 0674/1661] 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 9580f38a0d53c2a4c54ae66df31d350d8c818f8d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:09 -0500 Subject: [PATCH 0675/1661] 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 e54530eaf6aa287bd2c4a87e5bebd1a1a6aabb07 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:09 -0500 Subject: [PATCH 0676/1661] 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 08318d212134fd10e9df2b9d33147d62e9e4958b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:09 -0500 Subject: [PATCH 0677/1661] 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 0cb592f511de263cc3a45863b7575f934c067ef0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:09 -0500 Subject: [PATCH 0678/1661] 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 b828e16c600a2350cf18d142606edf29b162dff2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:10 -0500 Subject: [PATCH 0679/1661] 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 024535ffc1a8ff5901d2aef6213f22e1b336293b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:10 -0500 Subject: [PATCH 0680/1661] 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 0cc05c8044cfd8b59a20db3b91f5e1ffaa7665bd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:10 -0500 Subject: [PATCH 0681/1661] 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 9d09f65b2aa546c450dff5c006999c6a9a7f381f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:10 -0500 Subject: [PATCH 0682/1661] 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 8abc795bb25e2597524993f3c3fe679b0487eb8a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:10 -0500 Subject: [PATCH 0683/1661] 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 e8159cdc0535ab27741cebf50881270c7909ff03 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:10 -0500 Subject: [PATCH 0684/1661] 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 8c59a0b77381dfecf2ba66f300ca48bf7843f2a0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:11 -0500 Subject: [PATCH 0685/1661] 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 f20c544949713a243c0cf254e3c241c38e5049b5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:11 -0500 Subject: [PATCH 0686/1661] 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 bbf6f7f8e11c06ad40195049fce460d1dfebb5a5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:11 -0500 Subject: [PATCH 0687/1661] 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 d9f6633e05e3bc939a42049315cd9712608d7847 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:11 -0500 Subject: [PATCH 0688/1661] 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 96a0e1d3629f79661a214fd13e482b8cc509c27a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:11 -0500 Subject: [PATCH 0689/1661] 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 58cbbd32f21af9ddf0f3576f7ad498f3577cfa85 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:11 -0500 Subject: [PATCH 0690/1661] 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 9d9fcddb345231ee12d46692d691eb474027c716 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:12 -0500 Subject: [PATCH 0691/1661] 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 9b7e8bc7dc6d359b70f184607c93496663692ea7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:12 -0500 Subject: [PATCH 0692/1661] 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 4b78ca247d318259745cbd55ab4d66de12b231cd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:12 -0500 Subject: [PATCH 0693/1661] 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 11a5f0917099169f07bc72823a27214e5d36c1d6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:12 -0500 Subject: [PATCH 0694/1661] 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 e188a6ba0c72b1ead0d21cdcd2baae1c8a81e83d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:12 -0500 Subject: [PATCH 0695/1661] 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 d951e394f1ad04358df7ca0ab26eb1d5dd915216 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:12 -0500 Subject: [PATCH 0696/1661] 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 233d8800d35985e0136306abd3e87a3e0e955235 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:13 -0500 Subject: [PATCH 0697/1661] 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 b1b1c294a6b92dbe70cde6d9f3512859870d97d4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:13 -0500 Subject: [PATCH 0698/1661] 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 aa8a78008c8c043f2236512c938ea4d1cd33aec0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:13 -0500 Subject: [PATCH 0699/1661] 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 0a03cd15413affb28859d6091b1153985eb33065 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:13 -0500 Subject: [PATCH 0700/1661] 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 b4dbaa09ad6d4ac52f4a909c3261be977cd05b2c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:13 -0500 Subject: [PATCH 0701/1661] 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 4136b977073f1885a033eed4c517c6b43d7a7d72 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:13 -0500 Subject: [PATCH 0702/1661] 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 72492bd12ce4fa1ce576d77356bf7d35b1faca14 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:14 -0500 Subject: [PATCH 0703/1661] 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 f8b12b3174f2e80865a9b48c7413177c2a0747b7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:14 -0500 Subject: [PATCH 0704/1661] 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 9180c4eba23e29eeec7d5c88c772f1bc99664315 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:14 -0500 Subject: [PATCH 0705/1661] 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 53b3850585654dc67723082a286cc0032d5b6aa6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:14 -0500 Subject: [PATCH 0706/1661] 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 8e80e49b156d7aac56062d32cde2485d62ac9e0c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:14 -0500 Subject: [PATCH 0707/1661] 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 cbcfe9e3c11926e236a7611b824401b6ea0ef4eb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:14 -0500 Subject: [PATCH 0708/1661] 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 81c76db0183e574b65a99d298321489ea1af2b72 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:15 -0500 Subject: [PATCH 0709/1661] 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 9d2691e5c8042e36042917557f6a5c7311468834 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:15 -0500 Subject: [PATCH 0710/1661] 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 20b92612a2224d8cd5e0fce5f1fcbc38491d2085 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:15 -0500 Subject: [PATCH 0711/1661] 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 241cba26389b9457779f55dead669aec197d9789 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:15 -0500 Subject: [PATCH 0712/1661] 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 32c1cbd1a077784fcebb3fbc32667ff6b9d26042 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:15 -0500 Subject: [PATCH 0713/1661] 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 f861a3367671277e55639c53f9b08b9d31e1ab2d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:16 -0500 Subject: [PATCH 0714/1661] 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 1581dba09ac0b50a173fc7def3ba95bbbaa555f5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:16 -0500 Subject: [PATCH 0715/1661] 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 cacfdbc2b59cc9c0b91fd6a11a86bb20256aceb7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:16 -0500 Subject: [PATCH 0716/1661] 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 eacaece25a9a12da13ff682c9919d55ffa0faf31 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:16 -0500 Subject: [PATCH 0717/1661] 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 2dc9acad48224d6eca3a77c8c54e172a7fd4e581 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:16 -0500 Subject: [PATCH 0718/1661] 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 5bf000343ab1595a6eebf2f1b125dd9f72d507f0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:16 -0500 Subject: [PATCH 0719/1661] 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 0cca96b0ca7fcc90522197901023d85e557795a2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:17 -0500 Subject: [PATCH 0720/1661] 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 a7151d6c8816e8ffc93763cde1156613ac50272f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:17 -0500 Subject: [PATCH 0721/1661] 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 4b4fbac126b3e97ca07fd6a8d16370b555c1fff9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:17 -0500 Subject: [PATCH 0722/1661] 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 8d5da461e5d515bcd345efe2e7ae57db82413f12 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:17 -0500 Subject: [PATCH 0723/1661] 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 d331b1c1bbcca892d09583d20eb8e977a4234bb5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:17 -0500 Subject: [PATCH 0724/1661] 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 7d8755b0e2200b42cd6690642d960dec1936a469 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:17 -0500 Subject: [PATCH 0725/1661] 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 8b09ad93dee5aeba505fa57bd141a972cd1a354d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:18 -0500 Subject: [PATCH 0726/1661] 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 c76192fbbd77eb4489655bab03f560fe37611502 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:18 -0500 Subject: [PATCH 0727/1661] 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 d5297db485a6714c702aadb7747cb4d0be095d40 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:18 -0500 Subject: [PATCH 0728/1661] 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 0e04d4693ce7de5dca3ace4f9e695569e55a9655 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:18 -0500 Subject: [PATCH 0729/1661] 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 1dcfbd7aa09b0586fbd8dcf17b9b80b588da2d90 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:18 -0500 Subject: [PATCH 0730/1661] 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 8b4ad5c2470f1fd410860cc29ebb88425562ff70 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:18 -0500 Subject: [PATCH 0731/1661] 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 220068f645b0ebb84bb7b75e509431295bdce3ce Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:19 -0500 Subject: [PATCH 0732/1661] 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 77c7959bd6b0ea52f5c64eca0681bb7a3bd90ee3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:19 -0500 Subject: [PATCH 0733/1661] 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 c6031c42f1ebaef7b1c622e351a7ee956ffdfee8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:19 -0500 Subject: [PATCH 0734/1661] 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 d247ece155f889e8fdda3823e7224f10e8bcb89b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:19 -0500 Subject: [PATCH 0735/1661] 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 111c47f18d0947c662b830d1d69f16e1801a39e0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:19 -0500 Subject: [PATCH 0736/1661] 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 6793206058632f15aad464229b2ee002e88f06d6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:19 -0500 Subject: [PATCH 0737/1661] 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 a8bfbcaa3ce43d993a06f9800f50f4ba247f742c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:20 -0500 Subject: [PATCH 0738/1661] 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 495d40326bb5c67e316d19dad90364ab303b6b84 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:20 -0500 Subject: [PATCH 0739/1661] 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 1b461bedec82617dd3c914e969b68a3351a48c2f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:20 -0500 Subject: [PATCH 0740/1661] 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 975274b542a9231c04c290601168f2bacd6d12a3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:20 -0500 Subject: [PATCH 0741/1661] 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 4e4e361bb697b8ec8373d9449fd7029e2e1e7802 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:20 -0500 Subject: [PATCH 0742/1661] 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 ed23b3e0e0ed96652225f6002ba29deba3aaf5c2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:20 -0500 Subject: [PATCH 0743/1661] 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 03435b259ca5e298c8153867af5024c5b06a6458 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:21 -0500 Subject: [PATCH 0744/1661] 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 f2adda8b9a9c54760978f1415ae65bc7613b6224 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:21 -0500 Subject: [PATCH 0745/1661] 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 c3be3fabf5c46dac9f98f7a73637996d36efb96d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:21 -0500 Subject: [PATCH 0746/1661] 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 b858567f412fd3157830d40ed89035245454d896 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:21 -0500 Subject: [PATCH 0747/1661] 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 41f7ffd7e1720068e70d7e8b74dc901a585e4273 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:21 -0500 Subject: [PATCH 0748/1661] 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 787a3b8fbd1f92823c61367ccae5fe35326c05ab Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:21 -0500 Subject: [PATCH 0749/1661] 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 be3a69c43e5ef36008609faf45ec464ba54c64ba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:22 -0500 Subject: [PATCH 0750/1661] 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 4fd39017f780502132ef8d12ee41b8b439d6a99e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:22 -0500 Subject: [PATCH 0751/1661] 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 7388f188122346a2321605217b6f49ddf06710c1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:22 -0500 Subject: [PATCH 0752/1661] 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 bf03050940003c2638cbac8f4e6e59b34e446499 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:22 -0500 Subject: [PATCH 0753/1661] 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 3a52d6c83eeb7ea554821510285f114fe29c9cd5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:22 -0500 Subject: [PATCH 0754/1661] 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 dbb91788bc7dc2bd44fef5db625afa952d25f488 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:22 -0500 Subject: [PATCH 0755/1661] 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 14e5cd4c86e951d21706488126519a7e33678f89 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:23 -0500 Subject: [PATCH 0756/1661] 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 38b72109c115fa175ca3bcd244ecddcb4968d059 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:23 -0500 Subject: [PATCH 0757/1661] 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 518c9393e1044d76b8081c5f4d0fbb1627215dc2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:23 -0500 Subject: [PATCH 0758/1661] 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 6e1c6cde69bb68da1ee9ab41ae2e6b4a4d050aef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:23 -0500 Subject: [PATCH 0759/1661] 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 f5f992df4acdacc04cfc3bceed4a0ef88bdd5b18 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:23 -0500 Subject: [PATCH 0760/1661] 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 2fc101b0e4c4e1288db491ca56914a110510e6b4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:23 -0500 Subject: [PATCH 0761/1661] 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 210ad43882fadc1f98435c54f83f325d08901d16 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:24 -0500 Subject: [PATCH 0762/1661] 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 56f2c2393e6eb4f2ebfd9e36549711a0d0d2548f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:24 -0500 Subject: [PATCH 0763/1661] 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 97162b23432f9589b81a41aad684c9b4a15ad43d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:24 -0500 Subject: [PATCH 0764/1661] 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 dc7a112f3126cb0fe152b53a3738fba686255062 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:24 -0500 Subject: [PATCH 0765/1661] 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 71f943e7e1ddb91766b5b18bb2f19acbbb57c440 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:24 -0500 Subject: [PATCH 0766/1661] 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 cccafbc26700198678024f6bf049e16a9e58db6a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:24 -0500 Subject: [PATCH 0767/1661] 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 7ed6783fda1325ac32a1b3929523bad503d6197f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:25 -0500 Subject: [PATCH 0768/1661] 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 37deca0ce075aff62532c6c28c28957157389614 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:25 -0500 Subject: [PATCH 0769/1661] 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 0562623ce15c5f4c30f8d6e74cf753775390f2e7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:25 -0500 Subject: [PATCH 0770/1661] 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 b37a90694f05d72c0cdd250118d610f3d40b269a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:25 -0500 Subject: [PATCH 0771/1661] 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 ec81e0a7c3821ad873c36eca1a65c744eaeb5827 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:25 -0500 Subject: [PATCH 0772/1661] 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 3022ef3417adc730a2e8d6a8396662eaf0ec2ae1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:25 -0500 Subject: [PATCH 0773/1661] 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 5395a71d4c2ff70f41a3f8143568a4d4b4c9af6c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:26 -0500 Subject: [PATCH 0774/1661] 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 2c86cdb1081c84039b539c34e82fe881108b98f4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:26 -0500 Subject: [PATCH 0775/1661] 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 1c380bad22632718f36c85b262b9211fd86ed6b0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:26 -0500 Subject: [PATCH 0776/1661] 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 2fc148917c6b5afb3fdfdb906701123248526225 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:26 -0500 Subject: [PATCH 0777/1661] 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 84f0a671f0c2177f5821fbaeb3a8130dbd81bafb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:26 -0500 Subject: [PATCH 0778/1661] 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 8e43bcd9334f80b4fd2594264845e39102f29c2a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:26 -0500 Subject: [PATCH 0779/1661] 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 cee34cc63f48a0fc67b4d2bf4a1cf58c90e663a5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:27 -0500 Subject: [PATCH 0780/1661] 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 c594e4987ec8c235fb108fdf2281cedb5858f58c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:27 -0500 Subject: [PATCH 0781/1661] 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 d2363a7ba61a01395f444fa674fd6f4e174a0c77 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:27 -0500 Subject: [PATCH 0782/1661] 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 7e5434746266dd6d73d370066a0a73660db1deea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:27 -0500 Subject: [PATCH 0783/1661] 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 103e1083b199852419d81947f8f5d5548334b016 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:27 -0500 Subject: [PATCH 0784/1661] 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 7e7e1abc2bdadd79ca11b768b796f4ff8aeedd52 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:27 -0500 Subject: [PATCH 0785/1661] 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 ddb4aa3301b15d218b14843a0be3ff45eecfe436 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:28 -0500 Subject: [PATCH 0786/1661] 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 4509b2cc1578b20aacc78ad35ef2ba0eb981cdfb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:28 -0500 Subject: [PATCH 0787/1661] 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 a0cb4ab51756eeb0f86d3adfbf8e22017593a790 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:28 -0500 Subject: [PATCH 0788/1661] 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 5706ccd84ad5364dcf28d6b294e2640a9c30fba0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:28 -0500 Subject: [PATCH 0789/1661] 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 0e5a278149f2d5a145a9f9e5e187d3a2ae0043ca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:28 -0500 Subject: [PATCH 0790/1661] 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 942ba691f9171dbac121c43c67367bba4b3c5ef8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:28 -0500 Subject: [PATCH 0791/1661] 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 299829474e10b3b71801117029007cd189aef358 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:29 -0500 Subject: [PATCH 0792/1661] 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 3f81650b51e962c40ec16771265cd10e4920a4a1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:29 -0500 Subject: [PATCH 0793/1661] 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 caf5a80a4d23447430f7dfad3b7321d87e9d6d95 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:29 -0500 Subject: [PATCH 0794/1661] 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 59293f581cd89ae752210b86e41ab24952f9986d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:29 -0500 Subject: [PATCH 0795/1661] 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 33b777d3f3b7ab1671fc395eddfa3047f773edbd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:29 -0500 Subject: [PATCH 0796/1661] 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 0176fa4dfb8d9304d102cf92292fe0a361758a8b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:29 -0500 Subject: [PATCH 0797/1661] 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 a5782a5ac00a1d064fcfa71b65102a1a8c9d6f0d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:30 -0500 Subject: [PATCH 0798/1661] 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 7ef82674f603a1d485d96cafc04295c6cd18d667 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:30 -0500 Subject: [PATCH 0799/1661] 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 9e5f39ab9edb6cd1d38946a3884d7daf2e9f19ac Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:30 -0500 Subject: [PATCH 0800/1661] 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 d81b32216305334e559d513e51ff1aaa8dc3ca89 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:30 -0500 Subject: [PATCH 0801/1661] 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 c69620b07cd262c66914e34f2a27449bb5c105d1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:30 -0500 Subject: [PATCH 0802/1661] 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 2e66c7d8876140e9e1cab7dbe89982800300c37c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:30 -0500 Subject: [PATCH 0803/1661] 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 576227684166c60dd227ef3e97eda2bdc34e6198 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:31 -0500 Subject: [PATCH 0804/1661] 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 53b85d9dca82f064b440f0e4f1ec14bae631c36f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:31 -0500 Subject: [PATCH 0805/1661] 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 f93aface959cebb62cb1626b6efcb9e4f204b9aa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:31 -0500 Subject: [PATCH 0806/1661] 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 50c8457f83ac0b8215193d30491e33c8e5c2ace4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:31 -0500 Subject: [PATCH 0807/1661] 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 3d4aa9e4fccc34d22f60f7615e0dfcaac5f420c5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:31 -0500 Subject: [PATCH 0808/1661] 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 752dc224c55fca589e13b941ecdb0c7781bbc9e1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:32 -0500 Subject: [PATCH 0809/1661] 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 9835e2a78b0561a10f93af32d8207fe7945bc5a5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:32 -0500 Subject: [PATCH 0810/1661] 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 1a587c319c47966a604edc6920be4d6734a999d3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:32 -0500 Subject: [PATCH 0811/1661] 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 54956b9ec7f8419eeef717dc2a541c608019c059 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:32 -0500 Subject: [PATCH 0812/1661] 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 696149cd0ff638ccbd37046e9a6904309deca59c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:32 -0500 Subject: [PATCH 0813/1661] 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 528e0f8742479403e2bab883ae2daa43b9d3d0ec Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:32 -0500 Subject: [PATCH 0814/1661] 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 f0b15493b2508120d8c76e06affac59ab567113a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:33 -0500 Subject: [PATCH 0815/1661] 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 16de668d0fb92455a3d1109f267097dffa3c20a9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 25 Nov 2025 09:09:43 -0500 Subject: [PATCH 0816/1661] 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 3f689d8857ea092c8fe0e76b33e6a2ff9f6e5b17 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:33 -0500 Subject: [PATCH 0817/1661] 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 67ef41031d5ee99b565229d1e705aadef09a3813 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:33 -0500 Subject: [PATCH 0818/1661] 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 f99918bf4e78e2f701003cd92ce3a3e8c86b47f4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:33 -0500 Subject: [PATCH 0819/1661] 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 605de44f2656505e346e6b953f50e9b18e8257f8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:33 -0500 Subject: [PATCH 0820/1661] 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 244a66f515c13facf22bc203159c347635efa452 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:33 -0500 Subject: [PATCH 0821/1661] 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 18aa124b50680d9b3e632ead1c4295f00fad504e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:34 -0500 Subject: [PATCH 0822/1661] 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 d67f21d487edfe582fca1ffecbfcb2e18b6e932a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:34 -0500 Subject: [PATCH 0823/1661] 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 258701ff940803c5ba39882a04221838c4b1e8ee Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:34 -0500 Subject: [PATCH 0824/1661] 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 96c464f9eaf75ecdfc0c9366885f00dc6baffe85 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:34 -0500 Subject: [PATCH 0825/1661] 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 83d4c0a72e6f308dee7090c56ada5eed8f053f7a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:34 -0500 Subject: [PATCH 0826/1661] 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 24b8d4fd329de8de37415b76e95b619aa9d8299d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:34 -0500 Subject: [PATCH 0827/1661] 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 043736c8f74d9271e35f21b6228427453d9ed3c1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:35 -0500 Subject: [PATCH 0828/1661] 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 be93d4efa163280d733c979bf5d947f62a9fdd5c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:35 -0500 Subject: [PATCH 0829/1661] 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 4771544069cb9ca18454cb9ff54e06e07d5597be Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:35 -0500 Subject: [PATCH 0830/1661] 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 67407e2a7701fb9b9f5e234fc0a38361bf076a3b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:35 -0500 Subject: [PATCH 0831/1661] 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 f5db19b93defc336cab9ffad131193ece684ea34 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:35 -0500 Subject: [PATCH 0832/1661] 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 e5d2f5a71f4ba36e4186759b4a6d65350879b841 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:35 -0500 Subject: [PATCH 0833/1661] 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 04bcf839bb33d0f6d3d7c0153f232c6facf8139e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:36 -0500 Subject: [PATCH 0834/1661] 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 9b74c7d56087731796cc1b827be18e7ba7623e5e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:36 -0500 Subject: [PATCH 0835/1661] 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 6d31f2782a917f67a41ef9347aeaf879a9ed69ee Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:36 -0500 Subject: [PATCH 0836/1661] 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 c7920ee94b43c98405a55561edca3b4b5da83505 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:36 -0500 Subject: [PATCH 0837/1661] 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 ecd8f8bcf1b3e4e43e624ea90221daa0f45b5d83 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:36 -0500 Subject: [PATCH 0838/1661] 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 1e422eb42c5226e54e5b819f3488f810815d0dff Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:36 -0500 Subject: [PATCH 0839/1661] 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 c7609fe45b5ac4322a1ee66d6a0f8f67d8b08409 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:37 -0500 Subject: [PATCH 0840/1661] 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 bc643b0b0e844637565a21bfc9abe049dc16486c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:37 -0500 Subject: [PATCH 0841/1661] 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 b62d0e14ea040833a5800cea66aa5a8bbaf9b55d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:37 -0500 Subject: [PATCH 0842/1661] 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 23cc2e777ce364693ecb8a9616ecb1ed0b8ab691 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:37 -0500 Subject: [PATCH 0843/1661] 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 ab6ea24b518d665065c37c7ee7ad9cd002c29c2f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:37 -0500 Subject: [PATCH 0844/1661] 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 7405ac1169a2dd519848d2269ea505dd5a020b6b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:37 -0500 Subject: [PATCH 0845/1661] 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 2585f0d221ca8482cd9a95cea2b67d76e1e2264c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:38 -0500 Subject: [PATCH 0846/1661] 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 34c39d31e14abdf1b518899d46aa8e3952ce64b6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:38 -0500 Subject: [PATCH 0847/1661] 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 650f9e35ce60f6c0ea7db0d131349bd132e3860f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:38 -0500 Subject: [PATCH 0848/1661] 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 21e21fff151b3c0d0819070da8cff80b4435349e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:38 -0500 Subject: [PATCH 0849/1661] 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 98c3114d02ad27fa7103a1e3d8c996c355fad0f4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:38 -0500 Subject: [PATCH 0850/1661] 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 8b065b5991e76ce22d66ecb802a6337148204bd9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:38 -0500 Subject: [PATCH 0851/1661] 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 3f0c0f8a87075bd9ccbee1a278f2842e21d78edd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:39 -0500 Subject: [PATCH 0852/1661] 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 282f3022445e8905b5f1d4540ae12420c259dedd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:39 -0500 Subject: [PATCH 0853/1661] 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 f3d4563fa67c32872db4c092eccae9edf5428152 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:39 -0500 Subject: [PATCH 0854/1661] 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 39aace0c1ddd563cf5677ccb532ea2bb7e23b566 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:39 -0500 Subject: [PATCH 0855/1661] 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 fc041ba47dd56a32ac1cf6b2c8a267d78fb94596 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:39 -0500 Subject: [PATCH 0856/1661] 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 a47c3a960bcf0f8015ec0203c3889b7b6f6594be Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:39 -0500 Subject: [PATCH 0857/1661] 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 82ad066545cfbd963692e2c9f6234c1e755d0095 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:40 -0500 Subject: [PATCH 0858/1661] 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 93b84752fcc65215fd6adca5bf5d4a910254cfb8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:40 -0500 Subject: [PATCH 0859/1661] 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 a1d8143bcb9ade39ad205d996701591ae04cd4db Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:40 -0500 Subject: [PATCH 0860/1661] 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 d4ac4eb54390b648785327de3c4f347ec0f191c0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:40 -0500 Subject: [PATCH 0861/1661] 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 29c0b25c798ed06b379e641a86ff9a7126c78332 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:40 -0500 Subject: [PATCH 0862/1661] 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 2ad19b103ab756d6431a1d92eb3054f0f70be4e0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:40 -0500 Subject: [PATCH 0863/1661] 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 a60275351de6acc6b922a741f0d35533c71e3efa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:41 -0500 Subject: [PATCH 0864/1661] 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 1276271a7ad3faac052469b770ffb2f7b6d3f74f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:41 -0500 Subject: [PATCH 0865/1661] 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 47db21e0fc3bcbc84b5595265315e239b5aeb30e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:41 -0500 Subject: [PATCH 0866/1661] 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 008efd8b343f2056c705d012deff9be2bf3e7bcc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:41 -0500 Subject: [PATCH 0867/1661] 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 8907796b88d5a5a3aa5c9ba1940f23812b421fcb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:41 -0500 Subject: [PATCH 0868/1661] 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 a2130691fc5884fc638974dbef4b90ddf7031e50 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:42 -0500 Subject: [PATCH 0869/1661] 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 5ee8db27febbe51afc3a14d7c9d0e14b1bfd8b60 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:42 -0500 Subject: [PATCH 0870/1661] 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 2d3c706ac3ab936f7bea87eb3202afe487d6e228 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:42 -0500 Subject: [PATCH 0871/1661] 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 bd30c6dce53d8d5fe1df69879b3eabb621f19b43 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:42 -0500 Subject: [PATCH 0872/1661] 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 6c7b31bb78a0d46b53eaff72115270298cac403f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:42 -0500 Subject: [PATCH 0873/1661] 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 31bce424c99df8dba61f669cbe3cc4e41d5a8321 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:42 -0500 Subject: [PATCH 0874/1661] 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 aae283e8a3a5323a1dbb7e75d1c1ccbabc350363 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:43 -0500 Subject: [PATCH 0875/1661] 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 29184cf30c386c0b1b64cd46295f2a9d921d9eec Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:43 -0500 Subject: [PATCH 0876/1661] 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 116f1ee05292cf5407b7173a95b3e965d737d227 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:43 -0500 Subject: [PATCH 0877/1661] 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 fc409035570270919e3165cbd2002d5bb017e6bf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:43 -0500 Subject: [PATCH 0878/1661] 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 22d945c1af2c5eb22fb218d8ef2dcd69d18a632b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:43 -0500 Subject: [PATCH 0879/1661] 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 3ebcf35be3b71603a765ecc8e384fdd9eac704fb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:43 -0500 Subject: [PATCH 0880/1661] 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 f384d0d110500044fd11fe5213d0504ab02633c4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:44 -0500 Subject: [PATCH 0881/1661] 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 fa2e5b151d8a1670dbb04e15a9a16eb54684081b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:44 -0500 Subject: [PATCH 0882/1661] 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 4804d59cd1efa6d066521a66431dc6f140afb251 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:44 -0500 Subject: [PATCH 0883/1661] 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 3ca39cba0d05d3fe22719120a7fa3657e378dae3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:44 -0500 Subject: [PATCH 0884/1661] 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 51a38ff86431e8783b794584ea4e2d613f814d45 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:44 -0500 Subject: [PATCH 0885/1661] 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 5e515ab463c1839936bff9fce368252b42278201 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:44 -0500 Subject: [PATCH 0886/1661] 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 e90ea2c9c330fa7c22be70c963f824ab707a1891 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:45 -0500 Subject: [PATCH 0887/1661] 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 421ce3629a0d1858cd89a7fce55c2a8ebc4c625f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:45 -0500 Subject: [PATCH 0888/1661] 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 45bbd3f6df4dea62418aec046c35659729059728 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:45 -0500 Subject: [PATCH 0889/1661] 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 a35bcd6816d494db08a47f44e0e45a92f9189593 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:45 -0500 Subject: [PATCH 0890/1661] 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 c0f5652407d4ca31b9c748f82a6f9fb92ab024ca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:45 -0500 Subject: [PATCH 0891/1661] 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 1126a004de95a951a9123b08de716e4da838ee19 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:45 -0500 Subject: [PATCH 0892/1661] 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 15b2def1c0154ee78fb7fc2ba9d4f9facc858cf5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:46 -0500 Subject: [PATCH 0893/1661] 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 32237f800bef5c43a5f7a630346eff2559248c94 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:46 -0500 Subject: [PATCH 0894/1661] 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 bd710222aea4a4f02745caa794e2697daafc2b79 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:46 -0500 Subject: [PATCH 0895/1661] 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 acaa35cea52d8bd9921f51fb659ccf4fd4b33b28 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:46 -0500 Subject: [PATCH 0896/1661] 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 2fbfb9e979df6a242244a0902ad1c87cd0ff0f8a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:46 -0500 Subject: [PATCH 0897/1661] 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 46788039d3255a78aacc2238305a74471fff50dd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:46 -0500 Subject: [PATCH 0898/1661] 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 b54a4631020d46d54dd80dde6e3c1718308b0fe4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:47 -0500 Subject: [PATCH 0899/1661] 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 6533693653e5a563df246120f68251988a841b8b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:47 -0500 Subject: [PATCH 0900/1661] 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 bd3d1c384b843bb32e075d6e5b7d73d8160edbdf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:47 -0500 Subject: [PATCH 0901/1661] 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 91667c1a61c3b59b1feda3cbb98ff0f082ce4f1d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:47 -0500 Subject: [PATCH 0902/1661] 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 0f9377288876bfbcb56309afe24690c0b86ba0bc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:47 -0500 Subject: [PATCH 0903/1661] 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 a0c363b18221a716e0cac78227085c7854cc70c5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:47 -0500 Subject: [PATCH 0904/1661] 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 f7fbac1bd414667fa84bc1f1da91bef760abba0c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:48 -0500 Subject: [PATCH 0905/1661] 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 2a17402ac39b1b543d6b0f3a4480590406a068dc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:48 -0500 Subject: [PATCH 0906/1661] 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 8d1b53b12a56124403ece267716dbd65ea3292c5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:48 -0500 Subject: [PATCH 0907/1661] 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 574e342c3874e7af6c68623016785660acd75e1d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:48 -0500 Subject: [PATCH 0908/1661] 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 19851c08550574668aae268839b9e4440d1d5538 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:48 -0500 Subject: [PATCH 0909/1661] 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 4079e28135d101b4f6eb0ef364ac6191c6458d73 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:48 -0500 Subject: [PATCH 0910/1661] 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 77743d09358ba69fb63941f290f0e8e9de9cc2a3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:49 -0500 Subject: [PATCH 0911/1661] 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 e929810c817664180e3390a5ec5bae31cea91b04 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:49 -0500 Subject: [PATCH 0912/1661] 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 d1f4c0e4b62ea0140f05c0fa253c32542a0c4160 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:49 -0500 Subject: [PATCH 0913/1661] 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 c14b0cb043c5bf47183ae46af628081bba6f9cb3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:49 -0500 Subject: [PATCH 0914/1661] 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 e635d1ebc72bf542dc5aed48068e1d87dc21711a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:49 -0500 Subject: [PATCH 0915/1661] 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 f833185562aae253dc1509775a0a6ad214c8f705 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:50 -0500 Subject: [PATCH 0916/1661] 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 c400c59b53e7228d7ffb6e1ae08cdadd231ba9c7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:50 -0500 Subject: [PATCH 0917/1661] 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 46c630efab56438a3a0548d55d368a7dbcafbd78 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:50 -0500 Subject: [PATCH 0918/1661] 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 ee2f38397bc096d5f46651786df70b1fc7c49631 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:50 -0500 Subject: [PATCH 0919/1661] 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 83ebc1a60457a00a50073141a6335897dab5e42e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:50 -0500 Subject: [PATCH 0920/1661] 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 8678ef3ed38bcd972b699c9f7e3229d09ea37abc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:50 -0500 Subject: [PATCH 0921/1661] 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 47bd58c5a7081c35ef7bf03c0e160cd120f643be Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:51 -0500 Subject: [PATCH 0922/1661] 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 ad59753f93759bd74a887ae903a0e8d28108fa41 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:51 -0500 Subject: [PATCH 0923/1661] 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 c322ee1612c56da7645935822ea7b12e525aadb8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:51 -0500 Subject: [PATCH 0924/1661] 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 0e0bbf7d34c66b28be97858b2d0f1c0515dea209 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:51 -0500 Subject: [PATCH 0925/1661] 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 f89248f0d5feea32614eb3337ffb2833a2dc3532 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:51 -0500 Subject: [PATCH 0926/1661] 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 370fca9529bd3c26a4632915094b6b60414c5f85 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:51 -0500 Subject: [PATCH 0927/1661] 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 d220b6ef193139768e54051ea0e5bc9c9d76a007 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:52 -0500 Subject: [PATCH 0928/1661] 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 10cd0b98f52ecea5e698484714a0cbe86f7b9f45 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:52 -0500 Subject: [PATCH 0929/1661] 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 2b29cf930b0ea8a0441e26512a8334145cba3515 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:52 -0500 Subject: [PATCH 0930/1661] 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 4dbf6fb6c960b32ba83a9c7c5ad12c2a7ecc5a2b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:52 -0500 Subject: [PATCH 0931/1661] 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 d8a8377c551f5380e3070faf3cb1fefaecfe9f9d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:52 -0500 Subject: [PATCH 0932/1661] 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 2fda6126d88878dfeca6b1ef9b39f91d77bf1e92 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:52 -0500 Subject: [PATCH 0933/1661] 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 4e965aa60796055913fbd85204bfb98f6090fa69 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:53 -0500 Subject: [PATCH 0934/1661] 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 0d7b964d5a2d67df321a3e7693bed227f03100ce Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:53 -0500 Subject: [PATCH 0935/1661] 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 df1f61d935c4f0520f0987116764436b47a8192f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:53 -0500 Subject: [PATCH 0936/1661] 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 7da09a7d6788c630ca280c9e054567bc13b236f4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:53 -0500 Subject: [PATCH 0937/1661] 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 61ac83956358f6de94011d0c4357234f307f672c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:53 -0500 Subject: [PATCH 0938/1661] 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 cda8715c4c17d6af95fa8e155fc30820e5360d57 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:53 -0500 Subject: [PATCH 0939/1661] 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 36046d967ca3bc8fd41871ba30f3a0ddba935e3f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:54 -0500 Subject: [PATCH 0940/1661] 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 2ca4d44201205e1bd8bce7ce1b011054c953540e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:54 -0500 Subject: [PATCH 0941/1661] 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 a92bd9fafc889b09a081f17e57c355f92aec51d0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:54 -0500 Subject: [PATCH 0942/1661] 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 5f99d3e656e62c4495da5fcda6936f9023f52a66 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:54 -0500 Subject: [PATCH 0943/1661] 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 eb6f67c77f4532a8fbd6984e854c414f65ff5811 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:54 -0500 Subject: [PATCH 0944/1661] 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 72a3fbc17d5bc01e3cbcefbe8f0c242c75615ff4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:54 -0500 Subject: [PATCH 0945/1661] 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 590b2073dc3a1da508332e4ecea9050faa8a1369 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:55 -0500 Subject: [PATCH 0946/1661] 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 2315f3a6f27d7e17771df297ee9d462fed4970dc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:55 -0500 Subject: [PATCH 0947/1661] 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 da6f9d28d4af770b74d18c97fce5f53e2cc4a7db Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:55 -0500 Subject: [PATCH 0948/1661] 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 81e38197929ea5370d97f22f5ba26dd44218e249 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:55 -0500 Subject: [PATCH 0949/1661] 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 e621f7afdee6633fc0fd58016de25f8d88f8bbb0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:55 -0500 Subject: [PATCH 0950/1661] 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 e0c056cbe065302fa8ec61e4e8099825cb2de32b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:55 -0500 Subject: [PATCH 0951/1661] 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 7165d8505fc6b4f2dba7c98065677a40d177f0b1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:56 -0500 Subject: [PATCH 0952/1661] 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 bdf4fe7800559b0c651b0b8ccc4a3b64a206e295 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:56 -0500 Subject: [PATCH 0953/1661] 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 0db3e93ca218e6b122632dd73b24c5f2f8b90ae4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:56 -0500 Subject: [PATCH 0954/1661] 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 42e81267b9b02ff15215705a6a5b82d3d1e807e9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:56 -0500 Subject: [PATCH 0955/1661] 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 5201505bf8198d9c4c5547d0727c81c0ced63fa1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:56 -0500 Subject: [PATCH 0956/1661] 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 420f7322bc0d6f82de2e5fafe3f23f6d2ae67c66 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:56 -0500 Subject: [PATCH 0957/1661] 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 111352e9cba594fec5a34fe912b68b4f92f55d32 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:57 -0500 Subject: [PATCH 0958/1661] 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 127330da76ecdf52582a1439cd5cb7e0cec27bd7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:57 -0500 Subject: [PATCH 0959/1661] 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 49d651ed3923deda4e4c2ff01d3a6033a30d6e9a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:57 -0500 Subject: [PATCH 0960/1661] 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 e749172a09f53b86e9e3f7b051cd89da4da6174e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:57 -0500 Subject: [PATCH 0961/1661] 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 d81f89790f78bcb92a0817c41c74a021d123ffc9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:57 -0500 Subject: [PATCH 0962/1661] 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 a640428f858d74050e6526875a64809a166f746c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:57 -0500 Subject: [PATCH 0963/1661] 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 49c751688d60c2d147e28cddd4f762cf2a5e0aa5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:58 -0500 Subject: [PATCH 0964/1661] 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 ffa74fd954f7de25b39fdd005ff94db1dea3d39c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:58 -0500 Subject: [PATCH 0965/1661] 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 5f0c3c3b345a7cfa667c34130ae22e5166726828 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:58 -0500 Subject: [PATCH 0966/1661] 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 2c2aea0175868a64ad6c95fda838b0a5d56cfe24 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:58 -0500 Subject: [PATCH 0967/1661] 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 c02782dacd209ecfa2ff75a6fb8035af10825d89 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:58 -0500 Subject: [PATCH 0968/1661] 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 3097225180622bab8439f93428ec1c0989a61178 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:59 -0500 Subject: [PATCH 0969/1661] 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 804cd84284132a32d406d4bcad94470d01d73ce9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:59 -0500 Subject: [PATCH 0970/1661] 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 5ae16c465cb353e38c9bbc059622a1a5857c7a6e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:59 -0500 Subject: [PATCH 0971/1661] 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 c407b74f490b61a8a052638cd4bddd41d8988856 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:59 -0500 Subject: [PATCH 0972/1661] 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 4be71177f11ea4c32461b97fcada3aa5f7911a74 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:59 -0500 Subject: [PATCH 0973/1661] 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 40cddeb236328620de1cc33c13ebb4dada2d2943 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:59 -0500 Subject: [PATCH 0974/1661] 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 62fedaa1ed359746e570b139bbbebbd1b6f96413 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:00 -0500 Subject: [PATCH 0975/1661] 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 13fd8ac8ea66aa21b6f8ad07be5094278ec99555 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:00 -0500 Subject: [PATCH 0976/1661] 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 028844f0aceaaeb3403207d361626565356c8ac4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:00 -0500 Subject: [PATCH 0977/1661] 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 92073471a53b9eaae853848482f4910755e9d8ab Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:00 -0500 Subject: [PATCH 0978/1661] 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 d3f18c36b0629cba6fda6493c48d63363680ac51 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:00 -0500 Subject: [PATCH 0979/1661] 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 e4625e40a61d285f393b3294c9cb6cb154e2c376 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:01 -0500 Subject: [PATCH 0980/1661] 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 da016581b0944d546dfbf60b1db9b5826386f1ae Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:01 -0500 Subject: [PATCH 0981/1661] 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 6ed4a3b01efd9f1d24b3ac025fb89614f7f8709f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:01 -0500 Subject: [PATCH 0982/1661] 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 c5e74a59c8025b188ba6f1efbe9aa6d0ac732f67 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:01 -0500 Subject: [PATCH 0983/1661] 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 1cad2ad179d75edef45d6564d416fa7539adc090 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:01 -0500 Subject: [PATCH 0984/1661] 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 7a4df9cc25f310717a322403c7a898a66a3ce33b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:01 -0500 Subject: [PATCH 0985/1661] 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 6541e644a55774c965125c33748fa90f15346fc8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:02 -0500 Subject: [PATCH 0986/1661] 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 3f76a49b75e148c7ef651c30c6f4150a03e61fe8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:02 -0500 Subject: [PATCH 0987/1661] 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 edefa20b52df82d13d6d82eb1e6b79d49cf9c8c8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:02 -0500 Subject: [PATCH 0988/1661] 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 9cd46d525b79c6a0698dd0280a3ea6e3bb3bd017 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:02 -0500 Subject: [PATCH 0989/1661] 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 66a683dc5f48ffd1b76aad1c16295127b0de6361 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:02 -0500 Subject: [PATCH 0990/1661] 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 09fcf95350e683d9118148104ffaea63be0a72d4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:03 -0500 Subject: [PATCH 0991/1661] 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 74f6f115c1752f22927d291e160c2ca21c065c7e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:03 -0500 Subject: [PATCH 0992/1661] 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 37b3a1406614269495260816f76c616630ad26d1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:03 -0500 Subject: [PATCH 0993/1661] 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 af2d55ae9978e5663ed4a88883f31df4d2251eab Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:03 -0500 Subject: [PATCH 0994/1661] 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 9fccb3635c4ea138b8de05aaae3d6de1307a4527 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:03 -0500 Subject: [PATCH 0995/1661] 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 919536ba76974c38f8b778bbdbbdbdd3b34121f6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:03 -0500 Subject: [PATCH 0996/1661] 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 b27ec6ad31e00c6fb32781510cb5c96a238d153e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:04 -0500 Subject: [PATCH 0997/1661] 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 ec8aae1c478bad359ad721b7457b2084ba89d1dd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:04 -0500 Subject: [PATCH 0998/1661] 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 e849ada9d1d72eb0bde682e4a1d3e388857a298b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:04 -0500 Subject: [PATCH 0999/1661] 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 5be3218c4ce275e06f70b57b52cec949a0e8f405 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:04 -0500 Subject: [PATCH 1000/1661] 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 899ddf9890411605a92c42dd0d6633cb99a3fe1b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:04 -0500 Subject: [PATCH 1001/1661] 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 2fa28f377b655f8e0bb78ef3c76bd8f339c68098 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:04 -0500 Subject: [PATCH 1002/1661] 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 afef075233d525391a0a03a6d7a65cb47eeefb4a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:05 -0500 Subject: [PATCH 1003/1661] 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 04ac72eb64450a13cc2752abea808d5ce004c2d4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:05 -0500 Subject: [PATCH 1004/1661] 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 868ab2497575bcc2edbd0c6a3d129ef37ec50610 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:05 -0500 Subject: [PATCH 1005/1661] 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 264da1cff4ccb3fa92e3784481288c1cd0f983d9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:05 -0500 Subject: [PATCH 1006/1661] 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 dbf46bcea0f518de35368630710aa7da697be81a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:05 -0500 Subject: [PATCH 1007/1661] 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 b8b45b2db25ee67f7d15c517fbbe377a26ce7926 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:05 -0500 Subject: [PATCH 1008/1661] 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 ed86546cb8358f7e876ce2b26d244ea17f4f43a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:05 -0500 Subject: [PATCH 1009/1661] 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 bb440843456e8583af449a0b90341037941ea7f5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:06 -0500 Subject: [PATCH 1010/1661] 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 726d2b27dc016f928150840e3b82bde6fa7c8419 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:06 -0500 Subject: [PATCH 1011/1661] 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 e0cfe498796c5d8a679431280e329b60d183036b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:06 -0500 Subject: [PATCH 1012/1661] 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 92b00fef75dde92bf4b93b2a41c0fae658454b53 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:06 -0500 Subject: [PATCH 1013/1661] 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 201262b275011b1626e55e572c4b2a90a335b1b5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:06 -0500 Subject: [PATCH 1014/1661] 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 5df8ffc724a66d60d8ef9fd9fa345cadfea2f28e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:06 -0500 Subject: [PATCH 1015/1661] 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 0d795c4fdb8187f3e4f279fafd3e8aa7258e4752 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:06 -0500 Subject: [PATCH 1016/1661] 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 c4a539f0eacf4d3693aaabdbe3519afdb406863d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:07 -0500 Subject: [PATCH 1017/1661] 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 6b4ca9e41cdaf5513281a09f7774459c965925a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:07 -0500 Subject: [PATCH 1018/1661] 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 42a24808910d3990513a57c87e2a5464b64195ea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:07 -0500 Subject: [PATCH 1019/1661] 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 6876f03c2b6c1f5769d9d52ba57524db40507b75 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:07 -0500 Subject: [PATCH 1020/1661] 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 395a9d61987c9730fb084bce86d69d7bee1573d1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:07 -0500 Subject: [PATCH 1021/1661] 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 86e67a3c16fd965afaa8396b848006e1c5c3894d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:07 -0500 Subject: [PATCH 1022/1661] 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 3e465e68913714ed872d8e632c0554297ee1c8a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:08 -0500 Subject: [PATCH 1023/1661] 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 9612f02e9e1de6fafd0c8a81f11cfa052a6323a6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:08 -0500 Subject: [PATCH 1024/1661] 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 2f000593496e25ebd5bf55c63501be7444a521fc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:08 -0500 Subject: [PATCH 1025/1661] 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 e9fa542eb76c131942af6f060ba06080546102d3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:08 -0500 Subject: [PATCH 1026/1661] 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 4cc8ba6b8f6c83323c95d8165c27d4317fbbcc11 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:08 -0500 Subject: [PATCH 1027/1661] 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 2e1788fd876f43dca2691511e5be6f283b168452 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:08 -0500 Subject: [PATCH 1028/1661] 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 5fa78c35f6f93d45341b268b1358bf7e8e34cbbc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:09 -0500 Subject: [PATCH 1029/1661] 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 12239322e9446565c2a9923fcefbe7c5180c8df0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:09 -0500 Subject: [PATCH 1030/1661] 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 78d51bb4dc31cf5421eaad33d486b1893ed05108 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:09 -0500 Subject: [PATCH 1031/1661] 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 07660fca0a54a93a3b0003a0b714cf2c18d12e09 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:09 -0500 Subject: [PATCH 1032/1661] 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 d22a8224bd241ce572a087bba657f0ef8d69811e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:09 -0500 Subject: [PATCH 1033/1661] 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 f18f541addc22a35237a38635ed9c584c284f189 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:09 -0500 Subject: [PATCH 1034/1661] 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 ae7e40c1ffc9db8c0dfefb925f0f4d82f4cd9b1c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:09 -0500 Subject: [PATCH 1035/1661] 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 f1f68e0780d0218498f3b7b2ad53d355f1923bd8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:10 -0500 Subject: [PATCH 1036/1661] 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 ff987b8e80c1a413ec22820bd6ef8e205684f352 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:10 -0500 Subject: [PATCH 1037/1661] 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 63e2a596f9b6a9658b259caa85b7600d8bd1cc9d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:10 -0500 Subject: [PATCH 1038/1661] 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 4924670e5096bb4cc469319f460c7ab1363484f9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:10 -0500 Subject: [PATCH 1039/1661] 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 ae5c7ebc3f8e89be86df367eecd3cf2e1285bac3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:10 -0500 Subject: [PATCH 1040/1661] 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 e72500cd26a55eea9e77858b95f6b35ab1d32f49 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:10 -0500 Subject: [PATCH 1041/1661] 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 6b4bf956bd2b4143ace323a0f98dba463633d6c4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:11 -0500 Subject: [PATCH 1042/1661] 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 ab51714b2476dae06be62afe9038115f0c2779d0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:11 -0500 Subject: [PATCH 1043/1661] 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 e9ea83d729ad77ba6f601d53a3146626c379298a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:11 -0500 Subject: [PATCH 1044/1661] 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 c3cf355ef493a43b897e10d49e83a197f402ff43 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:11 -0500 Subject: [PATCH 1045/1661] 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 dd25ec0b304c1e6f71625db262c4d2c30326f91e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:11 -0500 Subject: [PATCH 1046/1661] 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 f41bf5b15d256e457979d650c34aaf4d8ce5be3e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:11 -0500 Subject: [PATCH 1047/1661] 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 196c9b6049c4fb5d29b27ab4b5454650844f25d6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:11 -0500 Subject: [PATCH 1048/1661] 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 7e41e08907da48c704419b7cdcc41afca84992c1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:12 -0500 Subject: [PATCH 1049/1661] 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 89d24246b3e0ede9bc6fb957523c5786d1a77cd6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:12 -0500 Subject: [PATCH 1050/1661] 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 b56114beb52b69198addadca9c27f93d27ec84b4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:12 -0500 Subject: [PATCH 1051/1661] 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 1d78ba7de4f5aa25a8568cc8986bd31eea5d18c6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:12 -0500 Subject: [PATCH 1052/1661] 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 1f801b32c0436c0950eb90b06c0a8ea44cc28625 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:12 -0500 Subject: [PATCH 1053/1661] 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 4a0ab0fdba7805b50d6bd642338c466266066bd6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:12 -0500 Subject: [PATCH 1054/1661] 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 7a81cda7fb71ed036f280cd749c0689deca30eaf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:13 -0500 Subject: [PATCH 1055/1661] 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 be8d25059804cdc34f7b9696b2c9610d3c83369d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:13 -0500 Subject: [PATCH 1056/1661] 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 bcde6a20e76cdc821b9d47122586872f080cfa59 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:13 -0500 Subject: [PATCH 1057/1661] 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 43c2a657dad65d98d5df8428d313dfc5500c203e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:13 -0500 Subject: [PATCH 1058/1661] 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 7e82cb98b441728f980c1cabb7c24638671df537 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:13 -0500 Subject: [PATCH 1059/1661] 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 3d86c8fa32249a83d45290922058ba9ee1fae6b5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:13 -0500 Subject: [PATCH 1060/1661] 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 2b5454d1d0c54b2ffc11ca1272a675359cc12ef9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:13 -0500 Subject: [PATCH 1061/1661] 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 4892675b0de6a2e64efa503fc20670dead9a0b28 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:14 -0500 Subject: [PATCH 1062/1661] 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 5b61b04f191a107667be8c2d6903a519679b5171 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:14 -0500 Subject: [PATCH 1063/1661] 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 ad5222d0d47f83032e286bbefb7e4b0abaf4e21f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:14 -0500 Subject: [PATCH 1064/1661] 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 9ac08e5d7c9223f39097b144f7e01a2c9ffc0928 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:14 -0500 Subject: [PATCH 1065/1661] 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 b9e238894a8d9ea3b8d453468d653d952cb0c166 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:14 -0500 Subject: [PATCH 1066/1661] 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 f7e744b8df870debd3efa5733a6a2908e525ddf2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:14 -0500 Subject: [PATCH 1067/1661] 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 1bfab88fb0b1c1f80bb9e04c613bee4462ed2b1e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:15 -0500 Subject: [PATCH 1068/1661] 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 8d83c006cab2fa2ba4364b3d5541badfef83d61e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:15 -0500 Subject: [PATCH 1069/1661] 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 68e75ec505bb05e61ae5c74fc03e7f354ce465cb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:15 -0500 Subject: [PATCH 1070/1661] 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 aae1ac6a20e9077b3612ae1e30fd11c34e924d20 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:15 -0500 Subject: [PATCH 1071/1661] 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 5b3ab4891b28cd0ffc3dc9ab7a4083317f814224 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:15 -0500 Subject: [PATCH 1072/1661] 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 7ab12d85f194bbd34966b941f6169c1fc13c28dd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:15 -0500 Subject: [PATCH 1073/1661] 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 ff0b5b7b25d7125abb4e9722b695e564c490ad17 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:16 -0500 Subject: [PATCH 1074/1661] 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 80ed4f5b5abd3b28392eb2a6b75fae80f2895846 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:16 -0500 Subject: [PATCH 1075/1661] 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 95fcd5522209fad50b0d9cd3a6e538a8711c455e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:16 -0500 Subject: [PATCH 1076/1661] 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 2e7d54c42316ffbd05328399b3e115467b9675ca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:16 -0500 Subject: [PATCH 1077/1661] 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 36237498643eb5c97f99d57fe440d2aca07e5328 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:16 -0500 Subject: [PATCH 1078/1661] 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 e0296762275a95320e35e56bbe8fe85ed432aac1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:16 -0500 Subject: [PATCH 1079/1661] 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 e1e3edd0ef970fccb5016149e65b7e3bb5d69717 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:16 -0500 Subject: [PATCH 1080/1661] 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 635b991668204786e922833079e61c5ea2ab96fa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:17 -0500 Subject: [PATCH 1081/1661] 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 4bc512ab9fcb23c60c4873e1f49f548ef57216e6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:17 -0500 Subject: [PATCH 1082/1661] 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 f1ad9215854e29acf9095ecf9ac233b5bfa5b542 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:17 -0500 Subject: [PATCH 1083/1661] 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 bf9fd3b27de9debac55a02d2ee4a088b3c622fcc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:17 -0500 Subject: [PATCH 1084/1661] 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 dc406a89af01dcb37d1842810b7ca5d4f116890e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:17 -0500 Subject: [PATCH 1085/1661] 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 836824c225ea0b9a843a349e9d7fdf587d720bb0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:17 -0500 Subject: [PATCH 1086/1661] 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 6dc9177bba9b2540b812a2594f7ad3a28f640465 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:18 -0500 Subject: [PATCH 1087/1661] 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 8722d7f5097cfc11ae634f8b8da6955adb8d7d92 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:18 -0500 Subject: [PATCH 1088/1661] 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 75169f077999eb1388c901c1d46182e908ccdd63 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:18 -0500 Subject: [PATCH 1089/1661] 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 47619d5a574f495b6ba906426296cd60fe234082 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:18 -0500 Subject: [PATCH 1090/1661] 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 3dbd6c7ca616b5962988750a5fc38b4acda8a26f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:18 -0500 Subject: [PATCH 1091/1661] 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 3e578f7471ae59b7311976f5aa8ca29f79015e2e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:18 -0500 Subject: [PATCH 1092/1661] 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 0be357f017229ef3209fc712fceeee919b73ddee Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:18 -0500 Subject: [PATCH 1093/1661] 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 fb2ecd4a78bcb39380352351dbd853a3f6f9af69 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:19 -0500 Subject: [PATCH 1094/1661] 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 aaa00c07151ca6cc5760b0365959eb2f7e072a3f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:19 -0500 Subject: [PATCH 1095/1661] 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 bafa4495e0600222f105b1f19f4df2f74f09bd6e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:19 -0500 Subject: [PATCH 1096/1661] 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 08b087756754e1abd44a0a93793660b585b7fbb5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:19 -0500 Subject: [PATCH 1097/1661] 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 64f8388421d4b7be192bb4d4b23e08798ad868e5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:19 -0500 Subject: [PATCH 1098/1661] 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 a69cb9da8b623cb59c5fe2fc62b82fe30af5611d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:19 -0500 Subject: [PATCH 1099/1661] 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 093ff7fb444b0d7bf4aecd177e25ac1dc614cd08 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:19 -0500 Subject: [PATCH 1100/1661] 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 0d6dbc14a1f41297d7ea2a8d5d8678934ee8eb7b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:20 -0500 Subject: [PATCH 1101/1661] 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 2d0803c68279c0443dfe3f82b6509483cbf46edd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:20 -0500 Subject: [PATCH 1102/1661] 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 8b963bdbb75fba79bad9159ade0ddae6b40279b3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:20 -0500 Subject: [PATCH 1103/1661] 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 4b8a7c821ea885eb9887e8fe1dec94daf4e9665b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:20 -0500 Subject: [PATCH 1104/1661] 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 aafa5ba89f5dead4973524bb6c4721e8d9a93fde Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:20 -0500 Subject: [PATCH 1105/1661] 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 6fb1f53a15f84d2b7c1cbb3d3c16edeb43d528c7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:20 -0500 Subject: [PATCH 1106/1661] 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 04b7f7b70e8a142c5441c2c96eccf862dd326a77 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:21 -0500 Subject: [PATCH 1107/1661] 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 f0ad4837ad523bf305cf8454759fcbb6729a5db6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:21 -0500 Subject: [PATCH 1108/1661] 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 4b917a0ee0df93284545fc1f6e436044e20b76f6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:21 -0500 Subject: [PATCH 1109/1661] 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 371488608a1a4b909fa1f733fe3c56c59c14daf9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:21 -0500 Subject: [PATCH 1110/1661] 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 5a04ed14e77405d66a49e22e6672cecb68d2a0e1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:21 -0500 Subject: [PATCH 1111/1661] 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 69a77aa64a07e6d94ebc058ffd6e3627d3eea792 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:21 -0500 Subject: [PATCH 1112/1661] 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 15cbddb462930bbbc88ea4be97103c48c44bd7c7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:21 -0500 Subject: [PATCH 1113/1661] 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 b2f236e8f75c700a9bf915f7e7e3770d068fe942 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:22 -0500 Subject: [PATCH 1114/1661] 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 1f87a5d0c701ac0b65a21842ae0f4b1c8f2bcf27 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:22 -0500 Subject: [PATCH 1115/1661] 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 4156ef431910b509bbae6d63e6efee2e6e5d14d4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:22 -0500 Subject: [PATCH 1116/1661] 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 a0ed50644e2d12b8be98a29f4a53d0c38784ebb2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:22 -0500 Subject: [PATCH 1117/1661] 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 232e3456c8e91967b750378d91214f2ff4152bbb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:22 -0500 Subject: [PATCH 1118/1661] 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 c213deea5f7f6b88476dbf5ff4ee219e3e7d4322 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:22 -0500 Subject: [PATCH 1119/1661] 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 d42e986905f926dc82de391122189b20c8cdabd9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:23 -0500 Subject: [PATCH 1120/1661] 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 c69160622333748f058012862affc97a7c6062df Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:23 -0500 Subject: [PATCH 1121/1661] 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 22f5c219934ba155c11ceeb30e28d7a85c2c2625 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:23 -0500 Subject: [PATCH 1122/1661] 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 cb67d8054454fb899ae9168445491eb8832d6f7d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:23 -0500 Subject: [PATCH 1123/1661] 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 c443d6969a02fe671f101ff5596c6c618ff0c521 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:23 -0500 Subject: [PATCH 1124/1661] 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 c965f7ec7600be963c2e36ea3c9135c5c3573b32 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:23 -0500 Subject: [PATCH 1125/1661] 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 891394a3866cf859d2adf14916306bbaa85e59f3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:23 -0500 Subject: [PATCH 1126/1661] 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 eff91d65e64d177653d763eea31e65c4b533e59e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:24 -0500 Subject: [PATCH 1127/1661] 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 b72537a43b71047628c120a4022418eacb639e5d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:24 -0500 Subject: [PATCH 1128/1661] 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 8e4c6b76630efcbafe1faace19075fefda32bf8a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:24 -0500 Subject: [PATCH 1129/1661] 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 217797796e328d0582ad4148590fe309ce206cb0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:24 -0500 Subject: [PATCH 1130/1661] 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 f8269af970156045a58d60f9ee9deb4809a56656 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:24 -0500 Subject: [PATCH 1131/1661] 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 8854cb2240d5df87eee1ce5667d52d080a8ba00e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:24 -0500 Subject: [PATCH 1132/1661] 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 10c46baa118f360c2c81bc9afa35c612de8a5cb2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:24 -0500 Subject: [PATCH 1133/1661] 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 1943a66817fc8ed1e4e323509ff4fe5abcc1640f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:25 -0500 Subject: [PATCH 1134/1661] 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 c7bd8f9fd78a937fd6fa80ed6d7aa16a6fcbe9f0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:25 -0500 Subject: [PATCH 1135/1661] 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 b65c44e680a4a98cbfd202a36b7a0e93ef1c8fde Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:25 -0500 Subject: [PATCH 1136/1661] 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 d5e91c19e9673d30796247fdb1ac6a7c08ce2bce Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:25 -0500 Subject: [PATCH 1137/1661] 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 357572a3056c389949d092ac70e421946ef7923c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:25 -0500 Subject: [PATCH 1138/1661] 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 e743bff4cc4327a2bd38e3df6a8f90306daaf155 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:25 -0500 Subject: [PATCH 1139/1661] 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 2b47fa74fe8f1e5cb1b712e8bf17644182235ab8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:26 -0500 Subject: [PATCH 1140/1661] 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 08fdfcebebed7319460bead6ef72cb866cdf044c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:26 -0500 Subject: [PATCH 1141/1661] 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 7c50345adf342bb9c21fad05d383ed0c8a060726 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:26 -0500 Subject: [PATCH 1142/1661] 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 f667c2cfb9b53db79dab4753466c70a1c46b7611 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:26 -0500 Subject: [PATCH 1143/1661] 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 21634b1b5e4fda950393459485eead4e166df243 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:26 -0500 Subject: [PATCH 1144/1661] 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 7499b3aaa590fb4db7c8c0acedf1a3a6626c1d88 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:26 -0500 Subject: [PATCH 1145/1661] 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 171c10cfaa5a642a01dcd5a23cca8af0358311fb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:26 -0500 Subject: [PATCH 1146/1661] 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 8d3fe6216b18e981d73ecae200cc6a3f4ba55979 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:27 -0500 Subject: [PATCH 1147/1661] 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 46af00718cb833021b900bb8d4841b0a3a56469c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:27 -0500 Subject: [PATCH 1148/1661] 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 f823b609c45cdc7851caf881d1077e97d9430e17 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:27 -0500 Subject: [PATCH 1149/1661] 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 647a62c4ff0e9b54dad3507731cf905261ceb5cb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:27 -0500 Subject: [PATCH 1150/1661] 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 70a828e88dec23cb5b720fa02b04f82c280b2bd7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:27 -0500 Subject: [PATCH 1151/1661] 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 3528b0dd90e0adb163cef1517dfadbebb9f1b66b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:27 -0500 Subject: [PATCH 1152/1661] 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 91b3f19befcd4eaf6905f85df46751e92cf65d15 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:27 -0500 Subject: [PATCH 1153/1661] 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 bc4d3a10098f2efbe312cebe70d4f27837e9ac0d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:28 -0500 Subject: [PATCH 1154/1661] 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 c708d017103c844d1cdda06a9edcb6bb1e4c7564 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:28 -0500 Subject: [PATCH 1155/1661] 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 8fa4957800e23a4df91f1b2d7fcc61e52ee16827 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:28 -0500 Subject: [PATCH 1156/1661] 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 014deee49d42600756419c0f24645f15debabe7a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:28 -0500 Subject: [PATCH 1157/1661] 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 c20aefbb43f1cc8ded7a5efcdd665a5ba8581436 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:28 -0500 Subject: [PATCH 1158/1661] 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 b40a1c236989aec6ab49d2a333264e1b885f5bf3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:28 -0500 Subject: [PATCH 1159/1661] 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 05b7534fb950a0c08c7a0f7f36e156a01aef0337 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:29 -0500 Subject: [PATCH 1160/1661] 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 4674ad2faa0791a293ca44269eaac2b448be6c1f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:29 -0500 Subject: [PATCH 1161/1661] 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 217c867ceb933d6a112762cff2e797f5e3da980b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:29 -0500 Subject: [PATCH 1162/1661] 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 0502153bf775a13d0e6538ad137838dc51b1c867 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:29 -0500 Subject: [PATCH 1163/1661] 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 8e898bf29df2d70387b63f08cf1ffc2d7425b14f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:29 -0500 Subject: [PATCH 1164/1661] 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 179fb888526fea6675935db48b40a039010ddb7a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:29 -0500 Subject: [PATCH 1165/1661] 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 2960993553519deeda844a2397fa1348938aefb3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:29 -0500 Subject: [PATCH 1166/1661] 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 35fa51d748ea678c42082e8242f657457d68cb43 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:30 -0500 Subject: [PATCH 1167/1661] 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 a2cad1fe0e2bd144703115c25dd0285a24958733 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:30 -0500 Subject: [PATCH 1168/1661] 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 403cdd0e65efbd412ccc374415e0ddf6b440bd0c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:30 -0500 Subject: [PATCH 1169/1661] 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 9f56e48ebef2873513e0f6fb30844cb230310ec8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:30 -0500 Subject: [PATCH 1170/1661] 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 ef348feba171a833f5e80c170fcb804bb8f416de Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:30 -0500 Subject: [PATCH 1171/1661] 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 744da63ec97154e36f2b6600288f2c16c13d700d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:30 -0500 Subject: [PATCH 1172/1661] 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 3a2a10bac71b1843e9747dbdcb282dface2e5a32 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:31 -0500 Subject: [PATCH 1173/1661] 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 ae124daa54a6a28b743fe34c29ef2b43e78f5786 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:31 -0500 Subject: [PATCH 1174/1661] 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 ae9a72715e43f37a2b93b7af185a74919ca744c5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:31 -0500 Subject: [PATCH 1175/1661] 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 f132670a7747c48cd5cbe32a849eb2f6bbe9cf88 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:31 -0500 Subject: [PATCH 1176/1661] 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 8d47d65bbcfb29df0fbcecd83ee063092c3ced92 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:31 -0500 Subject: [PATCH 1177/1661] 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 2838ca12ad7b72ba41a6694b85dc3a9f4e9243f9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:31 -0500 Subject: [PATCH 1178/1661] 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 708f2dc716b6205e7166cfb97b1f14a7f9cad6f6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:31 -0500 Subject: [PATCH 1179/1661] 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 4018eb2248bdef71952270f6a922a2e2a39a8b73 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:32 -0500 Subject: [PATCH 1180/1661] 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 a0ab2a1ccf88d155bd9cd06ea596722f27f0322f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:32 -0500 Subject: [PATCH 1181/1661] 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 cf67747d403be9afe92e51ac8eb635941701281d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:32 -0500 Subject: [PATCH 1182/1661] 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 a65483f64b644755d3a73ceb178b00550ad3eb7f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:32 -0500 Subject: [PATCH 1183/1661] 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 4a21c92ba20e79e32ecddb826ac52c49a093261e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:32 -0500 Subject: [PATCH 1184/1661] 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 5cae2e0db9a925d97ca0fa649d7683c591fd7c89 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:32 -0500 Subject: [PATCH 1185/1661] 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 5b841ddb2d780c30b31436201544a06e23c899be Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:32 -0500 Subject: [PATCH 1186/1661] 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 221b8082d90876d68d5e950084c45ee6be8c3a06 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:33 -0500 Subject: [PATCH 1187/1661] 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 bc1629d529436a79855ce41acd3bc73b8122d6ec Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:33 -0500 Subject: [PATCH 1188/1661] 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 5e2de69ffcabe3868e7c2632fb1949ed61e89467 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:33 -0500 Subject: [PATCH 1189/1661] 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 0184f83f0d16989ef61d7774a73d3d42fadc8cf3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:33 -0500 Subject: [PATCH 1190/1661] 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 9de0dae95cf43d90d164b8db30be360a198de36d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:33 -0500 Subject: [PATCH 1191/1661] 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 3b72aba6f9e92123500c32d7d38d7362a399e630 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:33 -0500 Subject: [PATCH 1192/1661] 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 de3d10a5234b2219fe28e011e388db0eaa508871 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:34 -0500 Subject: [PATCH 1193/1661] 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 0dd85153b931167db6fc3c6fee1fb8e716d1f756 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:34 -0500 Subject: [PATCH 1194/1661] 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 d3a0bc29725fb93e0eee6a4f96b5b4be3233e439 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:34 -0500 Subject: [PATCH 1195/1661] 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 10d15a5dfd30bf977491708e1fb650eeec367a38 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:34 -0500 Subject: [PATCH 1196/1661] 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 4983dd4db720051637e2a4b7bc9adcf73b38dbbe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:34 -0500 Subject: [PATCH 1197/1661] 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 2c4c19612544231cd8c87a89bbcc10fcac6a86a6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:34 -0500 Subject: [PATCH 1198/1661] 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 8d5310ae40500345cb8ec474854ede9aa0ff315e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:34 -0500 Subject: [PATCH 1199/1661] 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 96ce6d704c3c3ea1d619cc7da3ac3d08fb97fe3b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:35 -0500 Subject: [PATCH 1200/1661] 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 e8aecd28337b7d22652f4e6273ff57d5a160de8d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:35 -0500 Subject: [PATCH 1201/1661] 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 8fc79662bf48ae52acc2f586e6cee3187055b93e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:35 -0500 Subject: [PATCH 1202/1661] 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 3f326b61f03cc4bb6998b523465aef8182f3b5da Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:35 -0500 Subject: [PATCH 1203/1661] 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 ad4aadedf1fc22b007184c9561df752c25b4900c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:35 -0500 Subject: [PATCH 1204/1661] 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 a43e5299c20e35325e0b8b987fd7bc85e4cf9142 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:35 -0500 Subject: [PATCH 1205/1661] 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 9abb38ae007155148e2c92ab1061824f31482923 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:36 -0500 Subject: [PATCH 1206/1661] 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 66da392b489216214643433632a5b604a09aa14e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:36 -0500 Subject: [PATCH 1207/1661] 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 823c86cfd7641cdeb7239f3796ad7b4063457ae1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:36 -0500 Subject: [PATCH 1208/1661] 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 d41c07b8bf3fa398e158379b261181b76a8ec99d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:36 -0500 Subject: [PATCH 1209/1661] 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 6b17213baf3df72b5a02f87001d63cc245395bc6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:36 -0500 Subject: [PATCH 1210/1661] 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 df784efded0473183ef16c103c5815e384c9e9d0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:36 -0500 Subject: [PATCH 1211/1661] 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 178924ddc840ce93460e897562079d604eff55bd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:36 -0500 Subject: [PATCH 1212/1661] 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 12269ec1105e3b39f14762d51d53e32f169156de Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:37 -0500 Subject: [PATCH 1213/1661] 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 d46e2ce803e5fab1f48dfbed9ce75f3beb108296 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:37 -0500 Subject: [PATCH 1214/1661] 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 748c7eb1716f495c736c6852ef3b5efb21d5b204 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:37 -0500 Subject: [PATCH 1215/1661] 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 929e7c63d3c18bfdc4d967461d91d0c5af09f198 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:37 -0500 Subject: [PATCH 1216/1661] 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 5503d0fd2ead384e25f89ba7d1a5795c87373032 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:37 -0500 Subject: [PATCH 1217/1661] 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 0ab6aef5f6761f6fd7292555c73906293e2c2eae Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:37 -0500 Subject: [PATCH 1218/1661] 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 09509dc79f72847ccc5fe5eb7372e2df63184108 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:38 -0500 Subject: [PATCH 1219/1661] 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 25770aa5e362366e0ace36f573d31bcce5f12f9b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:38 -0500 Subject: [PATCH 1220/1661] 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 7568fad25106ab3d4591c5d24a4b63cf3125ae20 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:38 -0500 Subject: [PATCH 1221/1661] 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 e3d9277be6bd59acd1593138ad3773f3e5fe88a5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:38 -0500 Subject: [PATCH 1222/1661] 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 9e8e743c4129fbb41d0bcf18cda84d73f31c7eb9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:38 -0500 Subject: [PATCH 1223/1661] 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 aa522ed96ab9c00590a30bac2ae46e59336b358e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:38 -0500 Subject: [PATCH 1224/1661] 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 6deb4901cbaedb738908387c1e15c6389b0bc0e6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:38 -0500 Subject: [PATCH 1225/1661] 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 5059c5561b375d0dcbba2e00776cf71775ca2609 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:39 -0500 Subject: [PATCH 1226/1661] 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 d5e54a0f4d76ba31039c844c2f9cd132ae709d8d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:39 -0500 Subject: [PATCH 1227/1661] 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 077a4a57a925cb7533d1c852a4c06fab1518950c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:39 -0500 Subject: [PATCH 1228/1661] 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 867d7ec742e3bd15084aad9acd14c6467b9cb2dc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:39 -0500 Subject: [PATCH 1229/1661] 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 a6096da7bfe144a45f2a73d750ca184ac542b298 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:39 -0500 Subject: [PATCH 1230/1661] 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 4f9865ecddc1bace1f0206688f39ff0696d8615f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:39 -0500 Subject: [PATCH 1231/1661] 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 96517b045200a34b0ecf223d9d56c015273484b0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:39 -0500 Subject: [PATCH 1232/1661] 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 a23fce8c30beaed91057a204bc36f41de74ba537 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:40 -0500 Subject: [PATCH 1233/1661] 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 cfb8ae9567be1f7354788f53c0eb2655060381b4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:40 -0500 Subject: [PATCH 1234/1661] 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 15b0eafec37b60d24e701372d31a002206f620be Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:40 -0500 Subject: [PATCH 1235/1661] 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 362f6d71eb86a6fb142e58765a4a4dfabfb46626 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:40 -0500 Subject: [PATCH 1236/1661] 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 82526346b225e724f223f180e70f4764e71862da Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:40 -0500 Subject: [PATCH 1237/1661] 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 5d12f8a8f62b3a314c4da2a9d5ef53198e968f0e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:40 -0500 Subject: [PATCH 1238/1661] 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 2cef9c0fe26dfc4df1a94565421433039383518f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:41 -0500 Subject: [PATCH 1239/1661] 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 4d34635029e05dd88410ea055c6544b070eaf0eb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:41 -0500 Subject: [PATCH 1240/1661] 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 1cd63837402ecdcdd39cb1b10c014c8e89f34ef6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:41 -0500 Subject: [PATCH 1241/1661] 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 17a5781b54e2cbecab72bbef38d6a9beb2e66472 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:41 -0500 Subject: [PATCH 1242/1661] 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 f9af38537af275f81df27507f263b19a32c4765a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:41 -0500 Subject: [PATCH 1243/1661] 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 29a7b91bddadbf2d8c812a5a3574015787cd5fb1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:41 -0500 Subject: [PATCH 1244/1661] 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 cc56de5f61d854031e57175e34e4eb868d17ce36 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:41 -0500 Subject: [PATCH 1245/1661] 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 7b9e44d9c0a0cfac7117e997478a8dc716779391 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:42 -0500 Subject: [PATCH 1246/1661] 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 bd067154c8bcd9f6b5bb5aa60ef26b951530714e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:42 -0500 Subject: [PATCH 1247/1661] 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 76f73e6a7fb1bbc2763935838a39f70312558354 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:42 -0500 Subject: [PATCH 1248/1661] 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 bca62005c97dbff1a71fc34b84a0198e0e041542 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:42 -0500 Subject: [PATCH 1249/1661] 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 575875b81acd784171bdf1ac63b42b54c442a9ad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:42 -0500 Subject: [PATCH 1250/1661] 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 941d01aac4564a38a592bbb8a099c3499670f476 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:42 -0500 Subject: [PATCH 1251/1661] 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 d22ef747da99a5aba17d41bbb662f9113ddf9ce3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:43 -0500 Subject: [PATCH 1252/1661] 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 6251ee5e5f428b0cdba1ca3a7d5417039958cfdc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:43 -0500 Subject: [PATCH 1253/1661] 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 428a19f303c6fcdeb3b5495bc25cdf62e25cd734 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:43 -0500 Subject: [PATCH 1254/1661] 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 69cbc3643c344dbc32336c94d6f90644c1cae8ac Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:43 -0500 Subject: [PATCH 1255/1661] 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 cbfbbbc59ead29cd7803c98206fc4fffafdd547d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:43 -0500 Subject: [PATCH 1256/1661] 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 bf950aa963c4ac97477c18faecbc10020844216c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:43 -0500 Subject: [PATCH 1257/1661] 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 ed2e237eac3b9ff7c6b21caa96f26417325f340a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:43 -0500 Subject: [PATCH 1258/1661] 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 4e95afc0e5b83def32ac06f8464f811d49e061e7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:44 -0500 Subject: [PATCH 1259/1661] 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 5dbece291444284d7bb1a33dc645f747b4cf1c30 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:44 -0500 Subject: [PATCH 1260/1661] 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 9f74d9826a2164657d7926fb5f7ddefd82e69c0a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:44 -0500 Subject: [PATCH 1261/1661] 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 462ffdee06bd91a8400d6724e3b4aa34528c261a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:44 -0500 Subject: [PATCH 1262/1661] 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 4f39b064018d7b08d78a94ce20773abeed7f1509 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:44 -0500 Subject: [PATCH 1263/1661] 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 a413655fe13740541cbe1a7d93bd5e8d535a24e3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:44 -0500 Subject: [PATCH 1264/1661] 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 14753a6b4cf53ef22584992bdb55b69f06689f79 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:45 -0500 Subject: [PATCH 1265/1661] 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 4d45a2f37b242f98895c16ed4639ac9ae0e8e490 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:45 -0500 Subject: [PATCH 1266/1661] 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 5ac3a41063cd2a5384e337426a15a83b3c2dd7d8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:45 -0500 Subject: [PATCH 1267/1661] 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 e3b216491b5e7c0c8aae4d5629eab4aba2cefe03 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:45 -0500 Subject: [PATCH 1268/1661] 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 ee1d7b35b4afdbd211276686bb221d8d03a22882 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:45 -0500 Subject: [PATCH 1269/1661] 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 6ae24e7fa5042f6a1630c7498208c524fd61f8f7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:45 -0500 Subject: [PATCH 1270/1661] 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 925a8b604cb56fbd474814fe64cbfa12a490c754 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:45 -0500 Subject: [PATCH 1271/1661] 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 896ad3c0910c7eebca741b4b69f29fc3789e1637 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:46 -0500 Subject: [PATCH 1272/1661] 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 bbf028c3478a8a1afed5aa3e5caa96e616e5d697 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:46 -0500 Subject: [PATCH 1273/1661] 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 75ba6776a02e62522920c8ca3873074c73c5cc65 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:46 -0500 Subject: [PATCH 1274/1661] 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 fcafe45c1a47769901edc7db91b80c34a43046c8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:46 -0500 Subject: [PATCH 1275/1661] 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 f53e39c1a0251b936486157d188f67706a73ae05 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:46 -0500 Subject: [PATCH 1276/1661] 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 a38bd9e755db9a1d328e9d94e168985952becbb3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:46 -0500 Subject: [PATCH 1277/1661] 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 3c937e56a9039750da6e10103c669de82cc5fd9d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:46 -0500 Subject: [PATCH 1278/1661] 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 ab8e847b3e40e0e147902f8dc7606a2b153294ce Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:47 -0500 Subject: [PATCH 1279/1661] 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 48764fc864e29748b3f09e4bf2870ea30754d277 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:47 -0500 Subject: [PATCH 1280/1661] 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 77519fb5b4687c4d36643f574ccc1e4ae26e20d2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:47 -0500 Subject: [PATCH 1281/1661] 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 21d850e393cde7b9f72c12b099d8dfbc8329609c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:47 -0500 Subject: [PATCH 1282/1661] 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 7a8d76a46d75f7bafed3bb65980c4aed7eaea469 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:47 -0500 Subject: [PATCH 1283/1661] 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 cc5cf17aac68e1e950ccc218d31802a39f57d692 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:47 -0500 Subject: [PATCH 1284/1661] 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 7a89f31e993c5d36931547d7af8d25e539494e8c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:48 -0500 Subject: [PATCH 1285/1661] 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 f06f3f77f9f33a53956f2d927c376be7a322603f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:48 -0500 Subject: [PATCH 1286/1661] 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 2662901e2172ce72d530450ae6275b8bdb439cac Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:48 -0500 Subject: [PATCH 1287/1661] 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 1eae2ee94d17e5c3ca646783bc899137b6c65543 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:48 -0500 Subject: [PATCH 1288/1661] 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 11e938d76ccaec50ec63d022174ad51566588805 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:48 -0500 Subject: [PATCH 1289/1661] 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 b5803ae1eaf9846c8dddd2d7e8dfd9c7bc90425b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:48 -0500 Subject: [PATCH 1290/1661] 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 f4fb9eda6e04619be3625fa397342c0d56b8d38b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:48 -0500 Subject: [PATCH 1291/1661] 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 81771ffeafb2186f363dd6fb39bf04f9a3d732aa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:49 -0500 Subject: [PATCH 1292/1661] 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 056e76ad813e380c05e9e457ffbdf90c47f3246e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:49 -0500 Subject: [PATCH 1293/1661] 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 d77d921f0d2b061240c9faced385dc53ca00d13b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:49 -0500 Subject: [PATCH 1294/1661] 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 ff544a3d64ff942bfe88f563dafe11b268f75d22 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:49 -0500 Subject: [PATCH 1295/1661] 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 5d54eaaa22fec6cdc50ab866f447c76a6acfc87d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:49 -0500 Subject: [PATCH 1296/1661] 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 c9bca7020b9e7833c46baae6f0593636b967c60f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:49 -0500 Subject: [PATCH 1297/1661] 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 57afe7b476d9af8dd499dcab0361601031da698a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:50 -0500 Subject: [PATCH 1298/1661] 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 db891e0ec8be908d5a35af02bece6b042f70a86e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:50 -0500 Subject: [PATCH 1299/1661] 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 a92d50ccdedc4e9d2283bcf88bc6b4aa01091ab4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:50 -0500 Subject: [PATCH 1300/1661] 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 48318edca115ea7bd3c57032733d9d1de43a9560 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:50 -0500 Subject: [PATCH 1301/1661] 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 274c3207ee3d1094a263223c437fa5fa1580fdba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:50 -0500 Subject: [PATCH 1302/1661] 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 ba7894f44ff596aa92824770e415885c05904257 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:50 -0500 Subject: [PATCH 1303/1661] 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 d343d09aacef3db8d924ed164a4d99934dc0afdb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:51 -0500 Subject: [PATCH 1304/1661] 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 0131182bd2d93f7dedca1c2a500afae58530681c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:51 -0500 Subject: [PATCH 1305/1661] 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 c3b7a873b21d7f654c911f039998d00357fdc5f8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:51 -0500 Subject: [PATCH 1306/1661] 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 1a97c9e538dfbf41bac87866dead939467fd7d85 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:51 -0500 Subject: [PATCH 1307/1661] 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 4e235c9ee607a2263dfcd4dc3db9652aa86fbb6d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:51 -0500 Subject: [PATCH 1308/1661] 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 1714448dc7d500b9ef273241bc60bac465ec58a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:51 -0500 Subject: [PATCH 1309/1661] 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 bb93aec68d3a52e277dc0b3369302a82a5776f55 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:52 -0500 Subject: [PATCH 1310/1661] 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 dc82f14f0b1aae18409014f7adb3d5ff4f364656 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:52 -0500 Subject: [PATCH 1311/1661] 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 f6c0bb8b92e8c53f8aa9ddc3b107322aabbee9ad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:16:15 -0500 Subject: [PATCH 1312/1661] 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 7a33014527aac9450b0cc550b454d92295ace563 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:52 -0500 Subject: [PATCH 1313/1661] 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 4c20f54bf48fcb14e872873c54d459b902d5f0a6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:52 -0500 Subject: [PATCH 1314/1661] 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 6291dc82c0ba7e2f1a8a45fd450e020ad85bdfa5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:52 -0500 Subject: [PATCH 1315/1661] 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 9ff5583df81ca64f1ed4e54d7c0aff35bbae8e8b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:52 -0500 Subject: [PATCH 1316/1661] 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 e305272656c97a4c814f3c6632b31e0ecca114a3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:53 -0500 Subject: [PATCH 1317/1661] 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 c6ef089072fdc4e2097fd16731e42efb7fe3d248 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:53 -0500 Subject: [PATCH 1318/1661] 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 39feed3716897b9f52f619054448b5442829b411 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:53 -0500 Subject: [PATCH 1319/1661] 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 8d6622784c2bd8404913412de817a7bb4af55e41 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:53 -0500 Subject: [PATCH 1320/1661] 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 757da581fbbcd21c54010e73a3f50723b07a8581 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:53 -0500 Subject: [PATCH 1321/1661] 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 bfe7d8eefefd0c176d30be8e042448f57dc04bef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:53 -0500 Subject: [PATCH 1322/1661] 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 2ea694952622a1be2074c0058e4277b235a2d730 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:54 -0500 Subject: [PATCH 1323/1661] 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 e5762da604f8c9bb3b052ca99d291943796f05aa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:54 -0500 Subject: [PATCH 1324/1661] 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 d8bf92afe11d8fd934bc136b6951efd88d0ce9a7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:54 -0500 Subject: [PATCH 1325/1661] 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 d349cfc76b89fbda39436292adc279c99d531f33 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:54 -0500 Subject: [PATCH 1326/1661] 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 0f9aed2c7d096d4a0e95db70d5c49fb8dfdfe67a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:54 -0500 Subject: [PATCH 1327/1661] 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 95ba82cc5fba51673c9c0bbc9a877bdc4a48a1bb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:54 -0500 Subject: [PATCH 1328/1661] 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 48f0137ef8de8da46e7b9fecc0208a0b99dd3a38 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:55 -0500 Subject: [PATCH 1329/1661] 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 7639d949bdebe0f6dfe3b7c351d0fa2f26d094de Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:55 -0500 Subject: [PATCH 1330/1661] 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 27deea2c08b96cfbd3863058a0723a0cc9bd8a7b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:55 -0500 Subject: [PATCH 1331/1661] 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 e6b1765aa4b6a9523f998d8e86f11f04aad14534 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:55 -0500 Subject: [PATCH 1332/1661] 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 d3dfc985e8be5d820e2c994b2941dc98685d77f9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:55 -0500 Subject: [PATCH 1333/1661] 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 fe15324f3ef76af48b4d6fe40009ed268e6d19a3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:55 -0500 Subject: [PATCH 1334/1661] 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 d87aedfef1cf726d3e43a64ad4c6e6938b5c717d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:55 -0500 Subject: [PATCH 1335/1661] 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 ca1459916a5c10c9e048f855f379773190e5b052 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:56 -0500 Subject: [PATCH 1336/1661] 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 f922ca5185cbbcd1f473c0b361761c6e41f58afe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:56 -0500 Subject: [PATCH 1337/1661] 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 cf2374c251482e48f50de489a4ac71c047ec9611 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:56 -0500 Subject: [PATCH 1338/1661] 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 fea5af2b6834d998cc6b641455f5fc2d78569677 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:56 -0500 Subject: [PATCH 1339/1661] 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 cfd3897ff7a9601cede41f959907c114e1c6a772 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:56 -0500 Subject: [PATCH 1340/1661] 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 ff824d7c5e4a3320b76a19f8610d720ea33d4187 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:56 -0500 Subject: [PATCH 1341/1661] 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 981b38e8f4cd35f32107396089f059c5203707a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:56 -0500 Subject: [PATCH 1342/1661] 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 3928832d63e96847fe158fcaeec62fcb3da49dec Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:57 -0500 Subject: [PATCH 1343/1661] 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 9c5bd33b1fab25ea6f9b9729eaea1999a7cb8b29 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:57 -0500 Subject: [PATCH 1344/1661] 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 ed3ac7f30471bba28c2bce8bb9d8f5fe130aef32 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:57 -0500 Subject: [PATCH 1345/1661] 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 75a33d19be0eb42c8601ef1d25da995f5193814f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:57 -0500 Subject: [PATCH 1346/1661] 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 09a5baf29f6d1c0f5b8ab5e957f1c947748f2fce Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:57 -0500 Subject: [PATCH 1347/1661] 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 36c052d0af5163142cbb36a16f38dbe26836ac82 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:57 -0500 Subject: [PATCH 1348/1661] 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 50e409954a6090de4e2b3dfe5312bf16593f4a3e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:57 -0500 Subject: [PATCH 1349/1661] 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 9e82870ba2ef2a2f2c53400f04f77740f05c0ee8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:58 -0500 Subject: [PATCH 1350/1661] 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 e31aaeabb7f8c92a8e504c0c25616cb47bf1739f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:58 -0500 Subject: [PATCH 1351/1661] 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 307df760c8d198ecba65438c00b5578e23d59f1d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:58 -0500 Subject: [PATCH 1352/1661] 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 72be0df7baec92fcb7e989ff210c3b68e9e377f4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:58 -0500 Subject: [PATCH 1353/1661] 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 9ef8abf73475c05f9d5b88ab68ea896ba72b6e23 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:58 -0500 Subject: [PATCH 1354/1661] 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 3b9ce3e0dd0f464b2e4c52fb6e807af874539d05 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:58 -0500 Subject: [PATCH 1355/1661] 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 98c22256e8dea4c9ffa661bde2837186a9f6abac Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:58 -0500 Subject: [PATCH 1356/1661] 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 77ed8e90f64baba81646b84cc45adcb408a33a89 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:59 -0500 Subject: [PATCH 1357/1661] 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 2be7e7d3cf23ae868973383ef0f136b9cef37cad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:59 -0500 Subject: [PATCH 1358/1661] 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 eeb1e4930344c9b514e5fffeb126e424356b63b6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:59 -0500 Subject: [PATCH 1359/1661] 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 4aa737bc379718802f6875c8b327e093e88c1f0c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:59 -0500 Subject: [PATCH 1360/1661] 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 b78ec9813e1cc3a6861790e3151dbbb18313022e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:59 -0500 Subject: [PATCH 1361/1661] 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 731ecc01504da8dae09d9dc1491cc97807ea2d11 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:59 -0500 Subject: [PATCH 1362/1661] 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 592b996d31dcf90613808bf064b83e9bf571953f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:17:59 -0500 Subject: [PATCH 1363/1661] 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 48ef0071419444b067b13a0a24e57c10ff909ffd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:00 -0500 Subject: [PATCH 1364/1661] 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 da48855175911b7f7dbdf02fba0acaad7e0d334a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:00 -0500 Subject: [PATCH 1365/1661] 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 4fd96154653f221d2f5e137d011024dd74de08a3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:00 -0500 Subject: [PATCH 1366/1661] 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 fd0f7634abf8b07acf0b6c90b43b52303a9dce2e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:00 -0500 Subject: [PATCH 1367/1661] 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 90f277d0dee9f391b8e4ccd7a662115165972060 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:00 -0500 Subject: [PATCH 1368/1661] 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 e7aaa9bb743fb9cc7b423c085c7ec4f3019c80cf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:00 -0500 Subject: [PATCH 1369/1661] 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 223c061399cb88529e9dfe29c1aada2fa7ef5710 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:00 -0500 Subject: [PATCH 1370/1661] 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 a5c3687ab434e81c1a09802d53293e6a6849dbc1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:01 -0500 Subject: [PATCH 1371/1661] 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 2e6020e1855cdf61c794b0b347e500ed645f6618 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:01 -0500 Subject: [PATCH 1372/1661] 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 88409746a3423e3e8907081aa70da7cacc63508b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:01 -0500 Subject: [PATCH 1373/1661] 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 4cd019965474eada5e3e445fbda1852226db9a25 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:01 -0500 Subject: [PATCH 1374/1661] 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 118760828f37047c56b7f3496e612acc274a3a22 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:01 -0500 Subject: [PATCH 1375/1661] 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 9e345365c022c7da1d487399afec8c2f8880be86 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:01 -0500 Subject: [PATCH 1376/1661] 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 3c8561e6275e16ab50cce8d99da748cad07dea15 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:01 -0500 Subject: [PATCH 1377/1661] 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 ae42ae2915900266993a1f8906a8a6e002ab4a0b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:02 -0500 Subject: [PATCH 1378/1661] 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 0b619fb489c76b7079bc3b410c684bf6b68fa4fe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:02 -0500 Subject: [PATCH 1379/1661] 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 adb3f1583a3fc5225d45da0b1c9626a3844185f7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:02 -0500 Subject: [PATCH 1380/1661] 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 e3aaa85527192afe1749dbae7eeb0c2ad1988ce9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:02 -0500 Subject: [PATCH 1381/1661] 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 86e780366465c997c7b1f44cf956ca9c940237f0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:02 -0500 Subject: [PATCH 1382/1661] 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 92a566bb96592820b73a74d131826813eb500a5c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:02 -0500 Subject: [PATCH 1383/1661] 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 750ec60daa3832c9ce3303faecf1e165bd375a24 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:02 -0500 Subject: [PATCH 1384/1661] 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 585e65c7acf75f95794531b9255b2d8b62dd9d02 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:03 -0500 Subject: [PATCH 1385/1661] 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 e81bc85facd8ad66f8c185568cf69767deca0d5c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:03 -0500 Subject: [PATCH 1386/1661] 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 009cf53d338d39aa0e35f23c663150fb158fa089 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:03 -0500 Subject: [PATCH 1387/1661] 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 d04a9b7d31c969cc8b2f763b0d9fcf0c4c887d42 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:03 -0500 Subject: [PATCH 1388/1661] 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 4623879644a054018f475089c52bb0fbffa0470f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:03 -0500 Subject: [PATCH 1389/1661] 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 76cf6b0329b7dd50b0908399ee47b46805961f9d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:03 -0500 Subject: [PATCH 1390/1661] 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 a5024f76d0cc079e8de8b59ce9fb7a2c35db4f0c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:03 -0500 Subject: [PATCH 1391/1661] 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 ad25d10b56b320e7c6440163ad02e0c3ce95fbd9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:04 -0500 Subject: [PATCH 1392/1661] 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 ff5ff4ef3f7de4ee8c411e6827c6ae4ffbb47a01 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:04 -0500 Subject: [PATCH 1393/1661] 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 d1e09e4adcf83116025534e4099efe2c323bc7c0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:04 -0500 Subject: [PATCH 1394/1661] 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 a2afe2c10b9c031be600fa168be3b6389f09891d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:04 -0500 Subject: [PATCH 1395/1661] 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 1c7b7740aa7d81245054c16b498f3ef2afe5e215 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:04 -0500 Subject: [PATCH 1396/1661] 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 18e521f299c269362770bfd68331c544adf525db Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:04 -0500 Subject: [PATCH 1397/1661] 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 306cf94da85d567ac82d696b7e3a3a059b1932ce Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:04 -0500 Subject: [PATCH 1398/1661] 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 20efe79767dd17c6a472ae58e90933934034180a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:05 -0500 Subject: [PATCH 1399/1661] 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 114eb05ea82ff2bec725fd4e283f2d69e3d31caf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:05 -0500 Subject: [PATCH 1400/1661] 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 1f52872af70f373922427ff5ea420ddd7a252922 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:05 -0500 Subject: [PATCH 1401/1661] 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 c822132d58555d1f74a844ae6613f09534978890 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:05 -0500 Subject: [PATCH 1402/1661] 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 644a20d1b7defe241fa5f778abb12e42f11997cd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:05 -0500 Subject: [PATCH 1403/1661] 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 dc4a8c78441bff861604df4e5ada5ceb83e80131 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:05 -0500 Subject: [PATCH 1404/1661] 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 bf5e5b02d9393035e939fd3cf920625c61f1be59 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:05 -0500 Subject: [PATCH 1405/1661] 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 be33db793954a6386d8a7df9ecc363b8ea2c79bc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:06 -0500 Subject: [PATCH 1406/1661] 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 5373af53788d0ad0c8c5eb89720bb901b3556b3e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:06 -0500 Subject: [PATCH 1407/1661] 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 1003f28514762dfe7c8a8b217869f8a19488edfb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:06 -0500 Subject: [PATCH 1408/1661] 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 e294e716a11e7ddacd144759067c8319f8f7d7e6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:06 -0500 Subject: [PATCH 1409/1661] 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 472743102e5c423ef1538ff51061bc7cd8fc7fa7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:06 -0500 Subject: [PATCH 1410/1661] 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 ba29fca49d302e6d3faa867a451fa9512248a7bc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:06 -0500 Subject: [PATCH 1411/1661] 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 09c72ae8576f9a530d92f38786f2439c46fb4a07 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:07 -0500 Subject: [PATCH 1412/1661] 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 7492921b2674d90d9f9302dd157964dd55228241 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:07 -0500 Subject: [PATCH 1413/1661] 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 fd1b2920a1729b974761272b8481ba449e653962 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:07 -0500 Subject: [PATCH 1414/1661] 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 43e22e57ec379ef9d3bdf4174ca12287ea99dc92 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:07 -0500 Subject: [PATCH 1415/1661] 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 d899eaf243133eb11ff40d3189fb93ac23f8d9be Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:07 -0500 Subject: [PATCH 1416/1661] 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 fd1f0dc9ea0eaeed73134bb54a034b890a2547ee Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:07 -0500 Subject: [PATCH 1417/1661] 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 18fd3436bf8f733dbf1970f7df4d2f7b5a811c72 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:07 -0500 Subject: [PATCH 1418/1661] 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 205dca4b7388b6aa644c65fec0cd8dd39ccfe4cc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:08 -0500 Subject: [PATCH 1419/1661] 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 489058cb0c2fc3a077e478229e5f325bb2fbdbcc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:08 -0500 Subject: [PATCH 1420/1661] 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 7c6472c2b93b734e0992aa939f4bc425727ca4bc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:08 -0500 Subject: [PATCH 1421/1661] 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 cd11d3869dd424f0719b984e2a87601f67852ff6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:08 -0500 Subject: [PATCH 1422/1661] 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 fffdcda41ea9fae91df7dc851f9c6515dbf37397 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:08 -0500 Subject: [PATCH 1423/1661] 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 e76fd7ae6b70e7da1ba5e0a2c4d11a04bc03c165 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:08 -0500 Subject: [PATCH 1424/1661] 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 fba3cc70f15fc40e137142b6f36da733e1ae1631 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:08 -0500 Subject: [PATCH 1425/1661] 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 be5d4caaeccbceb0d7f8e32a607c2e1d69d4cd1d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:09 -0500 Subject: [PATCH 1426/1661] 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 c240abb69df3a4f02dd9cc180c2a03e055ae6a88 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:09 -0500 Subject: [PATCH 1427/1661] 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 d603df0a4a7a676618328c5841ce29c712232b10 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:09 -0500 Subject: [PATCH 1428/1661] 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 5614dbb992bad11f8818c85de774e21f19470da9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:09 -0500 Subject: [PATCH 1429/1661] 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 5952f5d85316df1a6136e500e3ca43f36f4799a7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:09 -0500 Subject: [PATCH 1430/1661] 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 4560cc2603bbc225e557b633d0ad1cfaf801148a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:09 -0500 Subject: [PATCH 1431/1661] 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 29cf4391f19b5364364997b64e9a71f9a2737dd6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:09 -0500 Subject: [PATCH 1432/1661] 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 d30a604da8ecca4395745003985ed1b9f5bc08b2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:10 -0500 Subject: [PATCH 1433/1661] 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 626395f5f8a5bb687378797dac1f94bbf7c3c631 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:10 -0500 Subject: [PATCH 1434/1661] 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 48351b9d81aae91fa011e4745c8fc6043e68d8e2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:10 -0500 Subject: [PATCH 1435/1661] 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 feb3ab4f11a56a75189d82c605058962abb22d02 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:10 -0500 Subject: [PATCH 1436/1661] 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 4a43f3b4ba8509051137db56ce17efd38867fed2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:10 -0500 Subject: [PATCH 1437/1661] 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 bc604619f2ff266d336631723c02ffabc9dc7e84 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:10 -0500 Subject: [PATCH 1438/1661] 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 4655f9738b123f463d0c55e718a1e48680f2534b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:10 -0500 Subject: [PATCH 1439/1661] 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 b219c845e22cb65d828a1fcbe9fdca32c482306f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:11 -0500 Subject: [PATCH 1440/1661] 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 811a60c5c7ba73e8bc7d9345a2eeb34d721d67ee Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:11 -0500 Subject: [PATCH 1441/1661] 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 e64bab349aafba4a22b4e060fb32cd059502a0e5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:11 -0500 Subject: [PATCH 1442/1661] 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 5348059637474c0c0639d7b16bcdb2d6fa58b075 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:11 -0500 Subject: [PATCH 1443/1661] 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 909149c52c4fa9871a55a73b9d136296f41ab823 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:11 -0500 Subject: [PATCH 1444/1661] 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 30fa9106bb5af605c1d853f35f7a5b13cdb115a0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:11 -0500 Subject: [PATCH 1445/1661] 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 bc1c185be33e604bc27da7059561fd82b6a03f94 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:11 -0500 Subject: [PATCH 1446/1661] 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 6f35056e96b02f01dbcdbf582e57dc34d4c75b1e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:12 -0500 Subject: [PATCH 1447/1661] 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 d81715446fc4da563426d38a842686289960961a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:12 -0500 Subject: [PATCH 1448/1661] 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 17c9ade9531121546b8f1f4f704a2e9003541719 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:12 -0500 Subject: [PATCH 1449/1661] 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 2bdb1e401396da60e51e8ee392c9eabda95a49a9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:12 -0500 Subject: [PATCH 1450/1661] 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 7cad453b5890647eccba3c65f97eb83f3f71c223 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:12 -0500 Subject: [PATCH 1451/1661] 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 92b8a74ee4771d07616a71c765cb7fcf974e1bf8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:12 -0500 Subject: [PATCH 1452/1661] 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 4984bd51a1610bf6ec8f702165faaaff95c14eb7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:12 -0500 Subject: [PATCH 1453/1661] 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 4a4051bd49b2ddfc919dc6025cbedee9a7c48e10 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:13 -0500 Subject: [PATCH 1454/1661] 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 bf1dd9eaef81e15fe6a9f8a5cb7c3544ac99ab28 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:13 -0500 Subject: [PATCH 1455/1661] 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 f30b9d7d661870cade48099722535247dea3c02e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:13 -0500 Subject: [PATCH 1456/1661] 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 2cd46833b727902005dbf81ec8e59fa67d3f64e6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:13 -0500 Subject: [PATCH 1457/1661] 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 d7c903fee93300e76292df51a889334926b8b1b2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:13 -0500 Subject: [PATCH 1458/1661] 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 cea90923fa9d39a6d0f838c25ec61382c20507bc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:13 -0500 Subject: [PATCH 1459/1661] 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 ff4c75155fd576d3758d61f71e48477968f5afaa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:13 -0500 Subject: [PATCH 1460/1661] 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 0315ab64fb796a0d1f50b4ab5a37f45afef27bcd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:14 -0500 Subject: [PATCH 1461/1661] 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 3cf8b9acbc4b13965b87065ee3dc0a14401f2cd6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:14 -0500 Subject: [PATCH 1462/1661] 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 fe81ca251ad773990f2cb6cf5c1b6f19d3998e85 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:14 -0500 Subject: [PATCH 1463/1661] 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 9f490d4229bb13d3bd751e9c6ddbb560ea381a76 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:14 -0500 Subject: [PATCH 1464/1661] 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 559c579ac0ad0aff62b09e78837970b7625116e8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:14 -0500 Subject: [PATCH 1465/1661] 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 8736a8af581fcffe9c5bf94478e7ce5651833a81 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:14 -0500 Subject: [PATCH 1466/1661] 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 12a6039d63313c402fbcb677071bae68be9ff560 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:14 -0500 Subject: [PATCH 1467/1661] 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 64d051b7eaaf377a7f141986ab086ce165fe3c2f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:15 -0500 Subject: [PATCH 1468/1661] 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 19677c662d2d30647a382f23108ece6d9880f4ad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:15 -0500 Subject: [PATCH 1469/1661] 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 c4c8e1ef7cc8be3c52700a438d6d9e24e6cf4650 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:15 -0500 Subject: [PATCH 1470/1661] 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 a7f0b66f55acb88a3a331368ea8fee8854b62f7e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:15 -0500 Subject: [PATCH 1471/1661] 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 63058c5fbe4d084e03f0d2b31ccc6cc561085ddc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:15 -0500 Subject: [PATCH 1472/1661] 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 c76678d4c340cbb96fec8097ae5cd6cd70cfe112 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:15 -0500 Subject: [PATCH 1473/1661] 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 d06acad92e245bc50666079955f9d5d832f774bf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:15 -0500 Subject: [PATCH 1474/1661] 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 9277db39e2563b584da1ab6dccd95263b78cedf0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:16 -0500 Subject: [PATCH 1475/1661] 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 a2160636a0edd9d1bc916e3ec4b7e9e9705ee2ea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:16 -0500 Subject: [PATCH 1476/1661] 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 2485d26f530ac9100c12b799db3bc45095ba10b5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:16 -0500 Subject: [PATCH 1477/1661] 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 1ebb69385b4109f81afd5426ec622ff5d3d94e31 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:16 -0500 Subject: [PATCH 1478/1661] 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 7a4b7572debf6bec7d33159f2f5dbc2b86d3c49f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:16 -0500 Subject: [PATCH 1479/1661] 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 10c420ab3bacb5d8a0c2425b600d3dba5c718faf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:16 -0500 Subject: [PATCH 1480/1661] 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 8cf11b9a59f4b925b55233e3f69c4557d9ab7d2e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:17 -0500 Subject: [PATCH 1481/1661] 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 2a57f003e0bcb9f1b9b90a8738de4be67825e73c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:17 -0500 Subject: [PATCH 1482/1661] 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 2f160d410cb14e305b6848d5f67f50af659c5b31 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:17 -0500 Subject: [PATCH 1483/1661] 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 065a2d2434626fec6b4b6088153df705c7098f77 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:17 -0500 Subject: [PATCH 1484/1661] 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 77533d33e82b518c830e01989cb224db8ec3d56c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:17 -0500 Subject: [PATCH 1485/1661] 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 4e6f5547b3fcfe93141cf4faa18e317d035f1c04 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:17 -0500 Subject: [PATCH 1486/1661] 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 17c62b409f4a8cc1d171dc8b9e0524b53db4df68 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:17 -0500 Subject: [PATCH 1487/1661] 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 2868482813b1d62c541cbd9623cd3972649ad8be Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:18 -0500 Subject: [PATCH 1488/1661] 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 36ebc7fbf9f969e9e175242c6002b5fa0f7aff5f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:18 -0500 Subject: [PATCH 1489/1661] 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 514f0b9d8b951d6d8659708147f48645b574f34b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:18 -0500 Subject: [PATCH 1490/1661] 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 7c218b6d0e9b4fbe5141207c904950c0adde0f29 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:18 -0500 Subject: [PATCH 1491/1661] 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 0f721c120d075046c69cafafbda1d0566cd9771d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 25 Nov 2025 10:51:19 -0500 Subject: [PATCH 1492/1661] 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 0e5f2bbda0d9cc4e58499da3c015a0635de0cabb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:18 -0500 Subject: [PATCH 1493/1661] 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 fa5631ff320d0e43faf9dffcc09216fb29dfbb60 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:18 -0500 Subject: [PATCH 1494/1661] 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 a9d9a321352485d1c2dc108c245479a9d2dcf250 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:18 -0500 Subject: [PATCH 1495/1661] 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 5ecc4a13ffbe85d981a620d77eb28d12637c31ad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:19 -0500 Subject: [PATCH 1496/1661] 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 f6cc378ef9910b5687d6e5363a9111427532d25f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:19 -0500 Subject: [PATCH 1497/1661] 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 78a409ec9d1c6eff68ca78838824521ce8831882 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:19 -0500 Subject: [PATCH 1498/1661] 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 209fdf3ffd960aa215c03df3b15a579c7d48b88d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:19 -0500 Subject: [PATCH 1499/1661] 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 281d72082647442b0562ccbf9cda3e98ce379d20 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:19 -0500 Subject: [PATCH 1500/1661] 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 e15c892233eb0aeb6accb3f8955bf5c59bec632f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:19 -0500 Subject: [PATCH 1501/1661] 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 b2c535922dbc20cca548ce669f33d5209635795a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:19 -0500 Subject: [PATCH 1502/1661] 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 7df98092a0af1f5b247e21ac8a3371214d30f16e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:20 -0500 Subject: [PATCH 1503/1661] 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 3ee0dff5eafa39b4ac2872bdecd9ee4c53fd04ab Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:20 -0500 Subject: [PATCH 1504/1661] 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 e18fc397e229c65b8a123ce187337d312281ea87 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:20 -0500 Subject: [PATCH 1505/1661] 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 714fa4f6a6ec832a94f1a4de52f315809de51040 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:20 -0500 Subject: [PATCH 1506/1661] 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 7eb9c43da1c6d8b157c198d52c0760edbf4e0a2e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:20 -0500 Subject: [PATCH 1507/1661] 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 3bc5a4d626910fd082b38edd8c6928233aefecce Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:20 -0500 Subject: [PATCH 1508/1661] 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 7e4f5247423e0d864ea934d5bf21712c67dce9dd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:21 -0500 Subject: [PATCH 1509/1661] 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 703987b1d97261aaa090847d96f84ef3203cdc39 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:21 -0500 Subject: [PATCH 1510/1661] 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 b7723abfc8053f1ae89774be59e81d94ae1a1d81 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:21 -0500 Subject: [PATCH 1511/1661] 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 3f730c1834b879fc6b00c07161eea48d138e0bbb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:21 -0500 Subject: [PATCH 1512/1661] 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 d7d1c3d030ecaa80567f06495e39e0debd96f72d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:21 -0500 Subject: [PATCH 1513/1661] 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 a6b2ed16fecab68161dd3b89659d4912c03dfb2f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:21 -0500 Subject: [PATCH 1514/1661] 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 58e329e8f5ae253c1fcc6906982ef3660c753a19 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:21 -0500 Subject: [PATCH 1515/1661] 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 e204af8b34caa65da595c90f12b01e997c1feddf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:22 -0500 Subject: [PATCH 1516/1661] 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 0926834fa9ccca1198d50ef473b2f03b4d730057 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:22 -0500 Subject: [PATCH 1517/1661] 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 376d60f2ddc8d3d83580164ce1095eefce8887ef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:22 -0500 Subject: [PATCH 1518/1661] 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 357e65d51b1e3c913b99328b4f51004184ad55a9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:22 -0500 Subject: [PATCH 1519/1661] 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 0c7f5a3606098376efa5d2774cddd2178decbf68 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:22 -0500 Subject: [PATCH 1520/1661] 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 1c6bc9266af4842d5c31ccaeb005614062cdcb42 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:22 -0500 Subject: [PATCH 1521/1661] 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 673b6b833a5c25ffa374b49444e2a3d23352e509 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:22 -0500 Subject: [PATCH 1522/1661] 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 4636749ce56731e8e84bff993d67c73dedae7f4d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:23 -0500 Subject: [PATCH 1523/1661] 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 2b76db773717183690fcb65b4c0db4be95c71bbe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:23 -0500 Subject: [PATCH 1524/1661] 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 8af9416712cc01751eef7cff303214f002ce520d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:23 -0500 Subject: [PATCH 1525/1661] 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 9e186bed33e33605c22671ca126718e811a604d3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:23 -0500 Subject: [PATCH 1526/1661] 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 2400fb4492a1c6d3b8474280c6e51f1013799615 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:23 -0500 Subject: [PATCH 1527/1661] 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 5e5b041e47f91cd8c45554593def9118d88ccc11 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:23 -0500 Subject: [PATCH 1528/1661] 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 dee7af79000f47404c964f6d9c5dee9dcb0a5b91 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:23 -0500 Subject: [PATCH 1529/1661] 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 c461997875945b6141ceea3f84fb3b9e72f0daa7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:24 -0500 Subject: [PATCH 1530/1661] 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 8da8052253deac708349c3bbf8bee2bd382d6581 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:24 -0500 Subject: [PATCH 1531/1661] 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 a6d64f4609a3d0297fce7acda5bfb9d5f7fa7166 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:24 -0500 Subject: [PATCH 1532/1661] 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 e5bfeb1e7b7cebdac3cdd617944ff0b4723360ba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:24 -0500 Subject: [PATCH 1533/1661] 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 1b6595fd9d5252e69ced83eb88d4d50231bf5010 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:24 -0500 Subject: [PATCH 1534/1661] 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 33f9b895e35a7cc42a82c597fb371b1eb68551ca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:24 -0500 Subject: [PATCH 1535/1661] 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 07bf9734a022e735fe31ca1786043ad140f33fc6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:24 -0500 Subject: [PATCH 1536/1661] 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 4416bf38f49f08851a054386880406d2a42af411 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:25 -0500 Subject: [PATCH 1537/1661] 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 920876669abfd0a5b9c440cd71ed54e17a814177 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:25 -0500 Subject: [PATCH 1538/1661] 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 03dbc45a370e3de63cb2fb8e7b8a930eefdd6d47 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:25 -0500 Subject: [PATCH 1539/1661] 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 e29512f5d0102a6097ac58e270a68fb04c507ec8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:25 -0500 Subject: [PATCH 1540/1661] 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 4ccd4527144fa48c2736ead0507a37c87fcdd19b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:25 -0500 Subject: [PATCH 1541/1661] 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 1227532ddbcb9c0268614a9e6dbdefc852d91b3b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:25 -0500 Subject: [PATCH 1542/1661] 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 e96930ce91d489744ae7169dedf5509a977edf18 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:25 -0500 Subject: [PATCH 1543/1661] 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 18d6e3658be0262060bb21b4134c118b71663c56 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:26 -0500 Subject: [PATCH 1544/1661] 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 d7d11aea886e323f0a97b44d4d68e52cc60b0655 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:26 -0500 Subject: [PATCH 1545/1661] 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 e9095da40453e3be4eeeb94537f12e7a93fb9d83 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:26 -0500 Subject: [PATCH 1546/1661] 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 972f74931e1504e3282ba28f9ed3c046ef57bfa9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:26 -0500 Subject: [PATCH 1547/1661] 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 06f97a7b42f9b8adc45ca5325b5f3503325ee543 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:26 -0500 Subject: [PATCH 1548/1661] 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 5e7945d41eede645448fa8ad4802d812b52244fa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:26 -0500 Subject: [PATCH 1549/1661] 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 8037c92f75ad75a1b0901a544166fe9f2f7d3782 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:26 -0500 Subject: [PATCH 1550/1661] 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 0a09c1467b0cef79e790c1b469ce02a65b84669c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:27 -0500 Subject: [PATCH 1551/1661] 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 a4f6cba7558a7f98310b149b896c367ff0f70a5b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:27 -0500 Subject: [PATCH 1552/1661] 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 1c5c7bff41235473a968f27b7d786809445f24e0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:27 -0500 Subject: [PATCH 1553/1661] 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 076a4ba81db8a297333caa7686efd41be4949414 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:27 -0500 Subject: [PATCH 1554/1661] 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 4a1fcf05a242035068480a3b0109b2dd3b9203b5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:27 -0500 Subject: [PATCH 1555/1661] 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 b63d51b980032de01338744b8ea1a45326407402 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:27 -0500 Subject: [PATCH 1556/1661] 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 c934c7a583e9b02c347ba9bc77b48da2f5e322b0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:27 -0500 Subject: [PATCH 1557/1661] 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 0e340063689173cafd616148f04c955002a8c8a6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:28 -0500 Subject: [PATCH 1558/1661] 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 e4382faf1573a1637c8169719fd9d5831ea919fb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:28 -0500 Subject: [PATCH 1559/1661] 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 ccfebeffd39fde40187dfd358cecd925ade32a01 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:28 -0500 Subject: [PATCH 1560/1661] 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 b4c933ada0e23660cdeda0396f9d119763fb9c93 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:28 -0500 Subject: [PATCH 1561/1661] 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 f993a53069c17b310d0c341c935cf249103434ca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:28 -0500 Subject: [PATCH 1562/1661] 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 1d896e1dc4ce242b14af7b0341ec0a97bb8db400 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:28 -0500 Subject: [PATCH 1563/1661] 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 1e969403f5e5da962926f4ae1bf7ee4a8f8750c2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:29 -0500 Subject: [PATCH 1564/1661] 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 e85318a2eac9485f79d4bebcfe2bea33d30c02c0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:29 -0500 Subject: [PATCH 1565/1661] 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 50e9256b823adf8b55e1645e78e592864172694b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:29 -0500 Subject: [PATCH 1566/1661] 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 e6fe881eca3bef2d616b433b4a2fb30d3af23ace Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:29 -0500 Subject: [PATCH 1567/1661] 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 cf506b0c82f93f33bf1c84b305a94f80843459a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:29 -0500 Subject: [PATCH 1568/1661] 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 996d1a20f27c6985acbe5d5ac2ce9d83dd11af4f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:29 -0500 Subject: [PATCH 1569/1661] 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 5b7eb273f95eadaacbe2f2ac6888e52611fb650c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:29 -0500 Subject: [PATCH 1570/1661] 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 77f4feb7e379482d006080414a23ab3d1fd10a57 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:30 -0500 Subject: [PATCH 1571/1661] 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 7e8d8def1bac9f0a6c2fe158fefc191298c1c2d9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:30 -0500 Subject: [PATCH 1572/1661] 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 9471e990e6a2370b1882822d0da4e2cec65ea6f1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:30 -0500 Subject: [PATCH 1573/1661] 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 a1bd845d4099f3ba4ba9785db2bbeb884db7ac28 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:30 -0500 Subject: [PATCH 1574/1661] 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 bf9f59ae47b77764cc1f3d51d10bc156f790b6d3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:30 -0500 Subject: [PATCH 1575/1661] 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 a11aa0c7ec41532d389ddcb81efd7fbc093a86f4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:30 -0500 Subject: [PATCH 1576/1661] 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 95c8fd05e3ad4e5cf6e01460188d34ea77369add Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:30 -0500 Subject: [PATCH 1577/1661] 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 f3d7b69141d2bdeeb3e1b669ea240ae6b4d310ca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:31 -0500 Subject: [PATCH 1578/1661] 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 916a7dcd9899b79bb038828ad506df7d20abd65f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:31 -0500 Subject: [PATCH 1579/1661] 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 0527bba785219576f40b5588989047e5defb0dfc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:31 -0500 Subject: [PATCH 1580/1661] 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 c010e789e9dd7767ad865dab9a0bcd83a5230306 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:31 -0500 Subject: [PATCH 1581/1661] 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 50ab76bd930c642776b2f2c5bc0d885af7a13d1f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:31 -0500 Subject: [PATCH 1582/1661] 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 91a83fc5b4363567d6bb5d362b1fb37f7b76a288 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:31 -0500 Subject: [PATCH 1583/1661] 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 ed73e004da3e322bcb96e4061f76aa180c13e890 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:31 -0500 Subject: [PATCH 1584/1661] 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 012fc217e3c23261724e44f1b087a1fbcc0b86a7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:32 -0500 Subject: [PATCH 1585/1661] 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 059af0818bd1531b25042bc07e18d8dcccde0c27 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:32 -0500 Subject: [PATCH 1586/1661] 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 f77796f1f7ece7e0f68ca5722383a98146cb2377 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:32 -0500 Subject: [PATCH 1587/1661] 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 7cf757230db057988d8f51e9fe30f196d1286faf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:32 -0500 Subject: [PATCH 1588/1661] 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 31714162b17e4fc22fe98bcc0ea10184cb99c3c1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:32 -0500 Subject: [PATCH 1589/1661] 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 241b3428037b396029762338df208e9a2094e94c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:32 -0500 Subject: [PATCH 1590/1661] 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 409a746ba2237dd0ba6fbc31826f0d7125e0be99 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:33 -0500 Subject: [PATCH 1591/1661] 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 194c6744c1689684ee98d067c0683c99f67f7aa5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:33 -0500 Subject: [PATCH 1592/1661] 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 de8d264d4a0276e0cae7d7aa8f7102196e4bcd18 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:33 -0500 Subject: [PATCH 1593/1661] 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 10a0585f4d9c0c4339d04b8f922d1a5305adfc93 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:33 -0500 Subject: [PATCH 1594/1661] 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 ee0f32ed2a0311f15be3154f7c2fa34317120101 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:33 -0500 Subject: [PATCH 1595/1661] 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 c84f8d39388370362ee88a8fb1f7f5d9e576b950 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:33 -0500 Subject: [PATCH 1596/1661] 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 f6b9b5bd404efffc96bfa0abdf1c63c96157b505 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:33 -0500 Subject: [PATCH 1597/1661] 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 686e306833aa59bd4110d85ad49f2a4ee3aaf02b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:34 -0500 Subject: [PATCH 1598/1661] 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 06568f5496ff43de9e960078801c1011aee18327 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:34 -0500 Subject: [PATCH 1599/1661] 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 436c79e61b67d06113ea9f4c9a291b38a44de253 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:34 -0500 Subject: [PATCH 1600/1661] 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 77f6a1aa9af81a3f2d3227b8f8d63a6fb303b986 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:34 -0500 Subject: [PATCH 1601/1661] 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 a591663827a7e254d30efde8030ec78ded0fdd33 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:34 -0500 Subject: [PATCH 1602/1661] 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 368c17bd0fd6982c59d42883cc55e9dc78493330 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:34 -0500 Subject: [PATCH 1603/1661] 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 8b81cd9151396b22cee5e2f3eb044063ee6f6bf6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:34 -0500 Subject: [PATCH 1604/1661] 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 7bc11511c5db3201468e547854023c6e1f1289c0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:35 -0500 Subject: [PATCH 1605/1661] 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 a822dca0be2ae145b36a6b458cc9dc441ae1d0f7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:35 -0500 Subject: [PATCH 1606/1661] 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 b5abeccd49e1cf870492f0536a5cda98ab872c06 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:35 -0500 Subject: [PATCH 1607/1661] 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 1e7c2abe6907c2dcda0e080c049611ed61e1ae74 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:35 -0500 Subject: [PATCH 1608/1661] 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 3c8f13196635414cb10dae5becf56b410d9fa261 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:35 -0500 Subject: [PATCH 1609/1661] 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 b78419966c2f95adefbee516477f5d8c0b7f94a6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:35 -0500 Subject: [PATCH 1610/1661] 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 5d56f9cdb5b6e908991eb474e12c701d2c42e27b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:35 -0500 Subject: [PATCH 1611/1661] 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 754ed342c043275dab9c00ec7756fb22b8f93379 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:36 -0500 Subject: [PATCH 1612/1661] 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 c2a52c8639a25ea743a0f0c535cf5fa0de635ea2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:36 -0500 Subject: [PATCH 1613/1661] 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 31c14e4677e5ed73ad0a9ee789ff7824bfa7e3b2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:36 -0500 Subject: [PATCH 1614/1661] 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 4cec91d59e9eb423ee2ac533fa39f824d59c4f29 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:36 -0500 Subject: [PATCH 1615/1661] 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 1259b2eb662ef2b1de66b5de04a052c0f7d5ef9c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:36 -0500 Subject: [PATCH 1616/1661] 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 ae23f03229a57c3ac76ea9cf0502cbd158e578ec Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:36 -0500 Subject: [PATCH 1617/1661] 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 62e26fe9bdc882819c3b5723426adbe796ed1516 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:36 -0500 Subject: [PATCH 1618/1661] 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 e6d41782bb8a9e2c8c005361eef26c3f1c7a5d4d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:37 -0500 Subject: [PATCH 1619/1661] 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 f6b63cb30d1b59fad36e751a3a42cc95fcc4d832 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:37 -0500 Subject: [PATCH 1620/1661] 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 82d64cc8a5125a10f40b800fcc17a7d01f71103f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:37 -0500 Subject: [PATCH 1621/1661] 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 40a79f89808edf00695b1230ad357ac65581e1aa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:37 -0500 Subject: [PATCH 1622/1661] 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 88eb62d5ffab8dba405b1cbb6b930d67c9d663ef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:37 -0500 Subject: [PATCH 1623/1661] 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 47167ad0a2298505de8377e408859fbf205b4601 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:37 -0500 Subject: [PATCH 1624/1661] 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 82910b1d69d04a2b6b06f87dabd6f92da4cd5134 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:37 -0500 Subject: [PATCH 1625/1661] 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 7ea88cc638dc3af4c489a718d5e1e4e764867c15 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:38 -0500 Subject: [PATCH 1626/1661] 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 f310c88266a0d023a1759391e49dc09761d7447d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:38 -0500 Subject: [PATCH 1627/1661] 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 9311123d0113223a111dd413b61d8ba1e0e70198 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:38 -0500 Subject: [PATCH 1628/1661] 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 343ea24cd768f90263d4982f0324b8122081fcb4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:38 -0500 Subject: [PATCH 1629/1661] 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 da7070bd7401b50cd0f37ec763140d8198dee584 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:38 -0500 Subject: [PATCH 1630/1661] 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 66037e6f058ba50540e6f301e406f19ce4ccf573 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:38 -0500 Subject: [PATCH 1631/1661] 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 cde42fc04b853c971983d1705f567ac137c3a9dc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:38 -0500 Subject: [PATCH 1632/1661] 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 d16b38c09c087058b8b7c99f1fb1a44fd50741eb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:39 -0500 Subject: [PATCH 1633/1661] 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 81527e6888000274e70f886710764f3f281fa4c6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:39 -0500 Subject: [PATCH 1634/1661] 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 d077ba07df8cffb29726492179beeab33e3898ed Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:39 -0500 Subject: [PATCH 1635/1661] 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 44ee7d2cf7b97e772f1978d480b5c9ef99d6951d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 17 Nov 2025 10:34:19 -0500 Subject: [PATCH 1636/1661] 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 ac162383903e644f5836f4ac78dc981947b89330 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:39 -0500 Subject: [PATCH 1637/1661] 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 54b288c8843e486c86251399698e2e53a491c803 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:39 -0500 Subject: [PATCH 1638/1661] 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 63cf8f3f4c27f1cbf434924fa9884235d0baff19 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:39 -0500 Subject: [PATCH 1639/1661] 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 573b6183dd79d2810d273b04f465a7299807f1e8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:40 -0500 Subject: [PATCH 1640/1661] 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 8de3d7c45a79eee9e397fec17d14f591dce083bb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:40 -0500 Subject: [PATCH 1641/1661] 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 34d1b6efb721dc0837764c991605ad989d494e51 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:40 -0500 Subject: [PATCH 1642/1661] 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 4482173bc660c2ae4c07c7a7855f79ccdf9328d3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:40 -0500 Subject: [PATCH 1643/1661] 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 3242ea5559a2bfa5d4adbf218c9d62a26926d9c3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:40 -0500 Subject: [PATCH 1644/1661] 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 bb5bf7a340b995336e7766d0e1127bc3dcaa24db Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:40 -0500 Subject: [PATCH 1645/1661] 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 e43ad4615eceaf2df404e71e76e45d780ecd1c17 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:40 -0500 Subject: [PATCH 1646/1661] 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 23bcafc6dbf5081ae73d9b1eb09b7ec8f8f8c84a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:41 -0500 Subject: [PATCH 1647/1661] 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 bf6a3a62493d554b7662f6e4dcb82aaa9fd6ec04 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:41 -0500 Subject: [PATCH 1648/1661] 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 64e8431b6de74eb6802c11e438da9411b5b8c086 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:41 -0500 Subject: [PATCH 1649/1661] 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 871314a862f05c344b9418814f63058e458d7224 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:41 -0500 Subject: [PATCH 1650/1661] 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 77862f3c802edea21d91c5be7884ed62865d30fb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:41 -0500 Subject: [PATCH 1651/1661] 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 594a27084b27cba22732725e6f16afbc41ec1423 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:41 -0500 Subject: [PATCH 1652/1661] 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 0f30bb7f7cfb3af5e22d171a119b55945803a4b7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:41 -0500 Subject: [PATCH 1653/1661] 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 c179d868a33323a6559da18f1f1c5a2b7dca9ce3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:42 -0500 Subject: [PATCH 1654/1661] 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 c778a9f68ac3c7ad054798ec8900289a3b584436 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:42 -0500 Subject: [PATCH 1655/1661] 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 0fe7441f120fbde6866259e447e5295cd5090b48 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:42 -0500 Subject: [PATCH 1656/1661] 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 eae62b92b31aa86eb956a7a92fbf93a96dd56d71 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:42 -0500 Subject: [PATCH 1657/1661] 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 727356340c6d5ad4b10902ae4ad45d28ae535764 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:42 -0500 Subject: [PATCH 1658/1661] DarkRadiant: rebuild for Python 3.14 --- srcpkgs/DarkRadiant/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/DarkRadiant/template b/srcpkgs/DarkRadiant/template index b2c5d6bc3901d1..131d10a7f94d31 100644 --- a/srcpkgs/DarkRadiant/template +++ b/srcpkgs/DarkRadiant/template @@ -1,7 +1,7 @@ # Template file for 'DarkRadiant' pkgname=DarkRadiant version=3.9.0 -revision=2 +revision=3 build_style=cmake build_helper=cmake-wxWidgets-gtk3 hostmakedepends="pkg-config ruby-asciidoctor" From 79715f05799c099f579413fca302ca00e7524817 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:42 -0500 Subject: [PATCH 1659/1661] 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 a15b4a5964db48b82f5de026c36a88ede317678e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sat, 15 Nov 2025 13:18:43 -0500 Subject: [PATCH 1660/1661] 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 971caaf80882b2aaa07fe94b13a92340a37b1947 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Wed, 19 Nov 2025 22:06:29 -0500 Subject: [PATCH 1661/1661] 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"