From 024b391d631d6f7df8f707b7ec3ccbf344aa647a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sun, 18 Sep 2022 13:34:27 -0400 Subject: [PATCH 0001/1420] python3: update to 3.11.0. Also include bluez headers at build time to allow Bluetooth sockets in the Python stdlib. h/t: @sgn --- common/environment/setup/python.sh | 2 +- .../hooks/pre-configure/02-script-wrapper.sh | 2 +- common/shlibs | 2 +- srcpkgs/python3/files/cross.patch | 20 ++++++------- .../python3/patches/musl-find_library.patch | 2 +- srcpkgs/python3/patches/ppcle.patch | 11 ++----- ...eak-MULTIARCH-for-powerpc-linux-musl.patch | 10 +++---- srcpkgs/python3/template | 29 +++++++++++++++++-- 8 files changed, 47 insertions(+), 31 deletions(-) diff --git a/common/environment/setup/python.sh b/common/environment/setup/python.sh index 43ee4d08a54d..606a4bc6f9a8 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.10" +py3_ver="3.11" 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 09c796001ea3..641d7ab762c0 100644 --- a/common/hooks/pre-configure/02-script-wrapper.sh +++ b/common/hooks/pre-configure/02-script-wrapper.sh @@ -236,7 +236,7 @@ hook() { generic_wrapper3 libetpan-config generic_wrapper3 giblib-config python_wrapper python-config 2.7 - python_wrapper python3-config 3.10 + python_wrapper python3-config 3.11 apr_apu_wrapper apr-1-config apr_apu_wrapper apu-1-config } diff --git a/common/shlibs b/common/shlibs index a350b6d0bb79..ce7713a2564b 100644 --- a/common/shlibs +++ b/common/shlibs @@ -1747,7 +1747,7 @@ 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.9.2_2 -libpython3.10.so.1.0 python3-3.10.0_1 +libpython3.11.so.1.0 python3-3.11.0_1 libbrscandec2.so.1 brother-brscan3-0.2.11_2 libpyglib-2.0-python.so.0 python-gobject2-2.28.6_11 libxmlrpc_server_abyss.so.3 xmlrpc-c-1.51.06_2 diff --git a/srcpkgs/python3/files/cross.patch b/srcpkgs/python3/files/cross.patch index 4e2498ca221f..48f1461c6025 100644 --- a/srcpkgs/python3/files/cross.patch +++ b/srcpkgs/python3/files/cross.patch @@ -1,6 +1,6 @@ ---- setup.py.orig +--- setup.py +++ setup.py -@@ -38,7 +38,7 @@ +@@ -77,7 +77,7 @@ return sys.platform @@ -9,7 +9,7 @@ HOST_PLATFORM = get_platform() MS_WINDOWS = (HOST_PLATFORM == 'win32') CYGWIN = (HOST_PLATFORM == 'cygwin') -@@ -700,6 +700,10 @@ +@@ -898,6 +898,10 @@ if HOST_PLATFORM == 'hp-ux11': self.lib_dirs += ['/usr/lib/hpux64', '/usr/lib/hpux32'] @@ -20,9 +20,9 @@ if MACOS: # This should work on any unixy platform ;-) # If the user has bothered specifying additional -I and -L flags ---- Makefile.pre.in.orig 2017-07-08 05:33:27.000000000 +0200 -+++ Makefile.pre.in 2017-08-27 19:49:11.114893045 +0200 -@@ -1055,8 +1055,6 @@ +--- Makefile.pre.in ++++ Makefile.pre.in +@@ -1743,8 +1743,6 @@ upgrade) ensurepip="--upgrade" ;; \ install|*) ensurepip="" ;; \ esac; \ @@ -31,7 +31,7 @@ fi altinstall: commoninstall -@@ -1065,8 +1063,6 @@ +@@ -1753,8 +1751,6 @@ upgrade) ensurepip="--altinstall --upgrade" ;; \ install|*) ensurepip="--altinstall" ;; \ esac; \ @@ -39,11 +39,11 @@ - $$ensurepip --root=$(DESTDIR)/ ; \ fi - commoninstall: @FRAMEWORKALTINSTALLFIRST@ \ -@@ -1434,11 +1430,12 @@ + commoninstall: check-clean-src @FRAMEWORKALTINSTALLFIRST@ \ +@@ -2226,11 +2222,12 @@ # Install the dynamically loadable modules # This goes into $(exec_prefix) - sharedinstall: sharedmods + sharedinstall: all + CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \ $(RUNSHARED) $(PYTHON_FOR_BUILD) $(srcdir)/setup.py install \ --prefix=$(prefix) \ diff --git a/srcpkgs/python3/patches/musl-find_library.patch b/srcpkgs/python3/patches/musl-find_library.patch index 82f436b4072b..879f91246272 100644 --- a/srcpkgs/python3/patches/musl-find_library.patch +++ b/srcpkgs/python3/patches/musl-find_library.patch @@ -1,6 +1,6 @@ --- a/Lib/ctypes/util.py +++ b/Lib/ctypes/util.py -@@ -204,6 +204,41 @@ +@@ -265,6 +265,41 @@ def find_library(name, is64 = False): return _get_soname(_findLib_crle(name, is64) or _findLib_gcc(name)) diff --git a/srcpkgs/python3/patches/ppcle.patch b/srcpkgs/python3/patches/ppcle.patch index 9ed7b9cef4e8..f2a12596093c 100644 --- a/srcpkgs/python3/patches/ppcle.patch +++ b/srcpkgs/python3/patches/ppcle.patch @@ -8,11 +8,9 @@ Subject: [PATCH] add powerpcle triple configure.ac | 4 ++++ 2 files changed, 8 insertions(+) -diff --git configure configure -index 2d379fe..97d1f9b 100755 --- a/configure +++ b/configure -@@ -5302,7 +5302,11 @@ cat >> conftest.c <> conftest.c </dev/null) +@@ -5221,6 +5221,14 @@ + $as_echo "$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" +if test x$MULTIARCH = xpowerpc-linux-musl +then @@ -13,5 +13,5 @@ + MULTIARCH="powerpcle-linux-gnu" +fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5 - $as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CC compiler name" >&5 diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template index e3db44e57670..49084b470337 100644 --- a/srcpkgs/python3/template +++ b/srcpkgs/python3/template @@ -3,7 +3,7 @@ # THIS PACKAGE MUST BE SYNCHRONIZED WITH "srcpkgs/python3-tkinter". # pkgname=python3 -version=3.10.8 +version=3.11.0 revision=1 wrksrc="Python-${version}" build_style="gnu-configure" @@ -21,8 +21,14 @@ short_desc="Python programming language (${version%.*} series)" maintainer="Andrew J. Hesford " license="Python-2.0" homepage="https://www.python.org" -distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz" -checksum=6a30ecde59c47048013eb5a658c9b5dec277203d2793667f578df7671f7f03f3 +_bluez="bluez-5.64" +distfiles=" + https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz + ${KERNEL_SITE}/bluetooth/${_bluez}.tar.xz +" +checksum="a57dc82d77358617ba65b9841cee1e3b441f386c3789ddc0676eca077f2951c3 + ae437e65b6b3070c198bc5b0109fe9cdeb9eaa387380e2072f9de65fe8a1de34" +skip_extraction="${_bluez}.tar.xz" alternatives=" python:idle:/usr/bin/idle${version%.*} @@ -33,12 +39,20 @@ alternatives=" if [ "$CROSS_BUILD" ]; then hostmakedepends+=" python3" + configure_args+=" --with-build-python=python3.11" fi post_extract() { # Ensure that internal copies of expat and libffi are not used rm -rf Modules/expat rm -rf Modules/_ctypes/{darwin,libffi}* + + # Extract Bluetooth headers + local _srcdistdir="${XBPS_SRCDISTDIR}/${sourcepkg}-${version}" + mkdir External + bsdtar -C External --strip-components=1 -x \ + -f "${_srcdistdir}/${_bluez}.tar.xz" "${_bluez}/lib/*.h" + mv External/lib External/bluetooth } post_patch() { @@ -52,6 +66,10 @@ do_configure() { # `-R` to the compiler for every compiled extension that sets an # rpath rather than the '-Wl,-R' argument that GCC requires unset GCC CC CXX CPP LD AR AS RANLIB + + # Make sure configure can find Bluetooth headers + CFLAGS+=" -I./External" + CPPFLAGS+=" -I./External" ./configure ${configure_args} } @@ -103,6 +121,11 @@ do_install() { sed -i -e "s,$XBPS_CROSS_BASE,,g" \ ${DESTDIR}/usr/bin/python${version%.*}-config fi + sed -i -e "s,-fdebug-prefix-map=[^[:space:]]*=[.],," \ + -e "s,-I./External,," \ + ${DESTDIR}/usr/bin/python${version%.*}-config \ + ${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \ + ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/Makefile } python3-devel_package() { From bc807178b36f289aa07506928c3c55db8eced6bd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sun, 18 Sep 2022 13:34:44 -0400 Subject: [PATCH 0002/1420] python3-tkinter: update to 3.11.0. --- srcpkgs/python3-tkinter/template | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template index d29016c2fd86..eb0b2224dcb2 100644 --- a/srcpkgs/python3-tkinter/template +++ b/srcpkgs/python3-tkinter/template @@ -8,7 +8,7 @@ _desc="Python programming language" pkgname=python3-tkinter -version=3.10.8 +version=3.11.0 revision=1 wrksrc="Python-${version}" build_style="gnu-configure" @@ -29,10 +29,11 @@ maintainer="Andrew J. Hesford " homepage="https://www.python.org" license="Python-2.0" distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz" -checksum=6a30ecde59c47048013eb5a658c9b5dec277203d2793667f578df7671f7f03f3 +checksum=a57dc82d77358617ba65b9841cee1e3b441f386c3789ddc0676eca077f2951c3 if [ "$CROSS_BUILD" ]; then hostmakedepends+=" python3" + configure_args+=" --with-build-python=python3.11" fi post_extract() { From 45a6ca4c59c5d3159df68ffa27161bb512cbac5b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:40 -0400 Subject: [PATCH 0003/1420] python3-setuptools: update to 65.4.1. --- srcpkgs/python3-setuptools/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-setuptools/template b/srcpkgs/python3-setuptools/template index a5682e6f2bdf..032ba5e9ebba 100644 --- a/srcpkgs/python3-setuptools/template +++ b/srcpkgs/python3-setuptools/template @@ -1,6 +1,6 @@ # Template file for 'python3-setuptools' pkgname=python3-setuptools -version=63.4.3 +version=65.4.1 revision=1 wrksrc="setuptools-${version}" build_style=python3-module @@ -12,7 +12,7 @@ license="MIT" homepage="https://github.com/pypa/setuptools" changelog="https://raw.githubusercontent.com/pypa/setuptools/master/CHANGES.rst" distfiles="${PYPI_SITE}/s/setuptools/setuptools-${version}.tar.gz" -checksum=521c833d1e5e1ef0869940e7f486a83de7773b9f029010ad0c2fe35453a9dad9 +checksum=3050e338e5871e70c72983072fe34f6032ae1cdeeeb67338199c2f74e083a80e provides="python3-distribute-${version}_1" replaces="python3-distribute>=0" # Tests rely on jaraco.path, which relies on singledispatch, both unpackaged; From 696122e4a0611e53075e55936a7cbc68bfe03f3e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:40 -0400 Subject: [PATCH 0004/1420] python3-pip: rebuild for Python 3.11 --- 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 98ed442ea1a2..6a73b4c093f9 100644 --- a/srcpkgs/python3-pip/template +++ b/srcpkgs/python3-pip/template @@ -1,7 +1,7 @@ # Template file for 'python3-pip' pkgname=python3-pip version=22.3 -revision=1 +revision=2 wrksrc="pip-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 3dde3d106a8d80c2f06d4cf3d2c2359afe053a71 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:40 -0400 Subject: [PATCH 0005/1420] python3-tomli: rebuild for Python 3.11 --- 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 028ece6c0f20..8e95733a2f9d 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.0.1 -revision=1 +revision=2 create_wrksrc=yes build_wrksrc="tomli-${version}" build_style=python3-pep517 From 1cb73b644c0389ffd887c54fbcc04fd48b9b330b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:40 -0400 Subject: [PATCH 0006/1420] python3-parsing: rebuild for Python 3.11 --- 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 957785125915..a131ea519980 100644 --- a/srcpkgs/python3-parsing/template +++ b/srcpkgs/python3-parsing/template @@ -1,7 +1,7 @@ # Template file for 'python3-parsing' pkgname=python3-parsing version=2.4.7 -revision=3 +revision=4 wrksrc="pyparsing-pyparsing_${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 08dd9d2f06e293b02925196aef2027a36d073062 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:40 -0400 Subject: [PATCH 0007/1420] python3-flit_core: rebuild for Python 3.11 --- 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 4c201c2c625d..0661509a91f2 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.7.1 -revision=1 +revision=2 wrksrc="flit-${version}" build_wrksrc="flit_core" build_style=python3-pep517 From ffe3d9e00ca26a7b39b4c89e8612037dd2f049d3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:40 -0400 Subject: [PATCH 0008/1420] python3-packaging: rebuild for Python 3.11 --- 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 01c0440e1403..9a9c1d90ac19 100644 --- a/srcpkgs/python3-packaging/template +++ b/srcpkgs/python3-packaging/template @@ -1,7 +1,7 @@ # Template file for 'python3-packaging' pkgname=python3-packaging version=21.3 -revision=1 +revision=2 wrksrc="packaging-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 90823ed56e2ee7db533c27b4a97c71aa69e5d718 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:40 -0400 Subject: [PATCH 0009/1420] python3-typing_extensions: rebuild for Python 3.11 --- srcpkgs/python3-typing_extensions/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-typing_extensions/template b/srcpkgs/python3-typing_extensions/template index 413acfdb1c3a..a5e16053c064 100644 --- a/srcpkgs/python3-typing_extensions/template +++ b/srcpkgs/python3-typing_extensions/template @@ -1,7 +1,7 @@ # Template file for 'python3-typing_extensions' pkgname=python3-typing_extensions version=4.2.0 -revision=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-pep517 hostmakedepends="python3-flit_core" From 084e13bc07e2d7941596865c0ecf0a99c4095ffe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:41 -0400 Subject: [PATCH 0010/1420] python3-wheel: rebuild for Python 3.11 --- 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 76ac1bda0c02..a015685fe178 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.37.1 -revision=1 +revision=2 wrksrc="wheel-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b7f25732c4b65ed79f669a86041b5fe1139707e0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:41 -0400 Subject: [PATCH 0011/1420] python3-setuptools_scm: rebuild for Python 3.11 --- 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 0ea3bb7a21ba..037bb4d481c3 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=7.0.5 -revision=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-packaging" From 893931d312adc8c9a555a67af935414e2c2667d0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:41 -0400 Subject: [PATCH 0012/1420] python3-editables: rebuild for Python 3.11 --- 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 fb5f33eca8a4..67cb0dfd90f8 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.3 -revision=1 +revision=2 wrksrc="${pkgname/python3-/}-${version}" build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" From 901486cb193bc9209afe85a437dec9183f44c8a2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:41 -0400 Subject: [PATCH 0013/1420] python3-pathspec: rebuild for Python 3.11 --- 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 f636bb68b08c..f313af0c39cb 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.10.1 -revision=1 +revision=2 wrksrc="pathspec-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 12fcfc328f8d029254cfd7a8ca18aa51e4b9e9f3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:41 -0400 Subject: [PATCH 0014/1420] python3-pluggy: rebuild for Python 3.11 --- 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 fa49c9826db0..a7307e8fa9a1 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.0.0 -revision=1 +revision=2 wrksrc="pluggy-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From f6032d453aec83936547b67e65a5ea6c41216993 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:41 -0400 Subject: [PATCH 0015/1420] libxml2: rebuild for Python 3.11 --- srcpkgs/libxml2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libxml2/template b/srcpkgs/libxml2/template index cbe0b9b37f29..ae0a2497218b 100644 --- a/srcpkgs/libxml2/template +++ b/srcpkgs/libxml2/template @@ -1,7 +1,7 @@ # Template file for 'libxml2' pkgname=libxml2 version=2.9.13 -revision=3 +revision=4 build_style=gnu-configure configure_args="--with-threads --with-history --with-icu" hostmakedepends="gettext pkg-config python3" From 77b00f3263ea8949ba4f55c7a24c848ec8438de6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:41 -0400 Subject: [PATCH 0016/1420] python-six: rebuild for Python 3.11 --- srcpkgs/python-six/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-six/template b/srcpkgs/python-six/template index bae3a78bd13a..57985ab5f79b 100644 --- a/srcpkgs/python-six/template +++ b/srcpkgs/python-six/template @@ -1,7 +1,7 @@ # Template file for 'python-six' pkgname=python-six version=1.16.0 -revision=2 +revision=3 wrksrc="six-${version}" build_style=python-module hostmakedepends="python-setuptools python3-setuptools" From 32516a797729acf6ee0a69490000bf7633949798 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:41 -0400 Subject: [PATCH 0017/1420] python3-decorator: rebuild for Python 3.11 --- 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 6e9bbecc97bd..babc8be94179 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.1.1 -revision=1 +revision=2 wrksrc="decorator-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 832fec985749bac87c9a2d3937d9499107554397 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:41 -0400 Subject: [PATCH 0018/1420] python3-ipython_genutils: rebuild for Python 3.11 --- 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 8198027868a4..96688d57f71d 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=6 +revision=7 wrksrc="ipython_genutils-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 945bddaf15910080aa414c09d5bfc54a53292924 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:41 -0400 Subject: [PATCH 0019/1420] hatchling: rebuild for Python 3.11 --- srcpkgs/hatchling/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hatchling/template b/srcpkgs/hatchling/template index 6091415c79a6..fc8e589d3a2f 100644 --- a/srcpkgs/hatchling/template +++ b/srcpkgs/hatchling/template @@ -1,7 +1,7 @@ # Template file for 'hatchling' pkgname=hatchling version=1.11.1 -revision=1 +revision=2 build_style=python3-pep517 _deps="python3-editables python3-packaging python3-pathspec python3-pluggy python3-tomli" hostmakedepends="python3-setuptools ${_deps}" From b098dfbe1495912ab52c6207b865a8174d34b041 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:41 -0400 Subject: [PATCH 0020/1420] ninja: rebuild for Python 3.11 --- srcpkgs/ninja/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/ninja/template b/srcpkgs/ninja/template index 669f8a189259..546840b7cb9e 100644 --- a/srcpkgs/ninja/template +++ b/srcpkgs/ninja/template @@ -1,7 +1,7 @@ # Template file for 'ninja' pkgname=ninja version=1.11.1 -revision=1 +revision=2 hostmakedepends="python3 asciidoc" short_desc="Small build system with a focus on speed" maintainer="Duncaen " @@ -39,5 +39,5 @@ do_install() { vinstall misc/zsh-completion 644 usr/share/zsh/site-functions _ninja vinstall misc/ninja-mode.el 644 usr/share/emacs/site-lisp vinstall misc/ninja.vim 644 usr/share/vim/vimfiles/syntax - vinstall misc/ninja_syntax.py 644 usr/lib/python3.10/site-packages + vinstall misc/ninja_syntax.py 644 "${py3_sitelib}" } From 265e41dde4d9a5c16dc9ee42265f91696236c7b2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:42 -0400 Subject: [PATCH 0021/1420] libxslt: rebuild for Python 3.11 --- srcpkgs/libxslt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libxslt/template b/srcpkgs/libxslt/template index 2327035cbe10..3551319bab6d 100644 --- a/srcpkgs/libxslt/template +++ b/srcpkgs/libxslt/template @@ -1,7 +1,7 @@ # Template file for 'libxslt' pkgname=libxslt version=1.1.37 -revision=1 +revision=2 build_style=gnu-configure configure_args="--disable-static --disable-dependency-tracking" hostmakedepends="docbook-xml docbook-xsl libtool pkg-config python3" From 8d4679868eb75e53dc33dae16c995a5398389c26 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:42 -0400 Subject: [PATCH 0022/1420] python-Cython: rebuild for Python 3.11 --- srcpkgs/python-Cython/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-Cython/template b/srcpkgs/python-Cython/template index 9f704c7b87d2..a4ccca9cf2ce 100644 --- a/srcpkgs/python-Cython/template +++ b/srcpkgs/python-Cython/template @@ -1,7 +1,7 @@ # Template file for 'python-Cython' pkgname=python-Cython version=0.29.32 -revision=1 +revision=2 wrksrc="Cython-${version}" build_style=python-module hostmakedepends="python-setuptools python3-setuptools" From 5e868ea41c3f46aae884dc98804397f4c690887e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:42 -0400 Subject: [PATCH 0023/1420] python3-traitlets: rebuild for Python 3.11 --- 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 f9b5819f9177..3daca77238b7 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.0.5 -revision=2 +revision=3 wrksrc="traitlets-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a5a1828d0091da921c97374e424505b13404777b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:42 -0400 Subject: [PATCH 0024/1420] hatch-vcs: rebuild for Python 3.11 --- 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 adac314297e0..06de21018552 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.2.0 -revision=1 +revision=2 wrksrc="${pkgname/-/_}-${version}" build_style=python3-pep517 make_check_args="--deselect tests/test_build.py::test_basic From fb758bcdf55f33a44474f19bbca63d7aa0faee25 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:42 -0400 Subject: [PATCH 0025/1420] python-attrs: rebuild for Python 3.11 --- srcpkgs/python-attrs/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-attrs/template b/srcpkgs/python-attrs/template index ccb08e6678f1..b012790c10bf 100644 --- a/srcpkgs/python-attrs/template +++ b/srcpkgs/python-attrs/template @@ -1,7 +1,7 @@ # Template file for 'python-attrs' pkgname=python-attrs version=21.2.0 -revision=2 +revision=3 wrksrc="attrs-${version}" build_style=python-module hostmakedepends="python-setuptools python3-setuptools" From b7f4653b86024a15da265878b7213287a2828c6e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:42 -0400 Subject: [PATCH 0026/1420] python3-pyrsistent: rebuild for Python 3.11 --- 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 277db966eaf1..85ae3a55e0df 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.18.1 -revision=1 +revision=2 wrksrc="pyrsistent-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-devel" From 048d8bb870bcc8b9f4c35d761fa4ce752675970a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:42 -0400 Subject: [PATCH 0027/1420] python3-pytz: update to 2022.6. --- srcpkgs/python3-pytz/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-pytz/template b/srcpkgs/python3-pytz/template index d8e7dae4084a..3be047448850 100644 --- a/srcpkgs/python3-pytz/template +++ b/srcpkgs/python3-pytz/template @@ -1,6 +1,6 @@ # Template file for 'python3-pytz' pkgname=python3-pytz -version=2022.4 +version=2022.6 revision=1 wrksrc="pytz-${version}" build_style=python3-module @@ -12,7 +12,7 @@ maintainer="Andrew J. Hesford " license="MIT" homepage="https://pythonhosted.org/pytz/" distfiles="${PYPI_SITE}/p/pytz/pytz-${version}.tar.gz" -checksum=48ce799d83b6f8aab2020e369b627446696619e79645419610b9facd909b3174 +checksum=e89512406b793ca39f5971bc999cc538ce125c0e51c27941bef4568b460095e2 post_install() { # use system tz database From 6955f06bbb39f8267cae58440f9fffdef1415fae Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:42 -0400 Subject: [PATCH 0028/1420] python3-MarkupSafe: rebuild for Python 3.11 --- 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 3f1b6a839d0f..e445f18f80fe 100644 --- a/srcpkgs/python3-MarkupSafe/template +++ b/srcpkgs/python3-MarkupSafe/template @@ -1,7 +1,7 @@ # Template file for 'python3-MarkupSafe' pkgname=python3-MarkupSafe version=2.1.1 -revision=1 +revision=2 wrksrc="MarkupSafe-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 84ed21d238750f7fc5923fba4ad0a751c20cfd61 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:42 -0400 Subject: [PATCH 0029/1420] python3-Pygments: rebuild for Python 3.11 --- 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 43cad278199c..6d8400dbf545 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.13.0 -revision=1 +revision=2 wrksrc="Pygments-${version}" build_style=python3-module # Ignored tests rely on unpackaged wcag_contrast_ratio module From e1561418111c6859127e2b88cc401e0ae2fbf576 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:42 -0400 Subject: [PATCH 0030/1420] python3-charset-normalizer: update to 2.1.1. --- srcpkgs/python3-charset-normalizer/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-charset-normalizer/template b/srcpkgs/python3-charset-normalizer/template index da68e4107bac..cbcc8323129a 100644 --- a/srcpkgs/python3-charset-normalizer/template +++ b/srcpkgs/python3-charset-normalizer/template @@ -1,6 +1,6 @@ # Template file for 'python3-charset-normalizer' pkgname=python3-charset-normalizer -version=2.1.0 +version=2.1.1 revision=1 wrksrc="charset_normalizer-$version" build_style=python3-module @@ -13,7 +13,7 @@ license="MIT" homepage="https://charset-normalizer.readthedocs.io/" changelog="https://raw.githubusercontent.com/Ousret/charset_normalizer/master/CHANGELOG.md" distfiles="https://github.com/Ousret/charset_normalizer/archive/refs/tags/$version.tar.gz" -checksum=0bfd977140480c2ee8905183d764a848f86e6d9aae8977692f1ecd609bb887bd +checksum=6a6a202ec93ccde145ebf40e9dda7b1cd246d576533e12b8dfeaf1202e5eb912 pre_check() { vsed -i "s/--cov=charset_normalizer --cov-report=term-missing//" setup.cfg From 54d0cbb6b60e2186195c629aa5a6369855198339 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:43 -0400 Subject: [PATCH 0031/1420] python3-idna: rebuild for Python 3.11 --- 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 215f38f3f9d4..03075150225c 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.2 -revision=2 +revision=3 wrksrc="idna-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From df30329566d78ac5bde39b27b60bc721c32958cc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:43 -0400 Subject: [PATCH 0032/1420] python3-urllib3: update to 1.26.12. --- srcpkgs/python3-urllib3/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-urllib3/template b/srcpkgs/python3-urllib3/template index b137784f7009..ab236579cc40 100644 --- a/srcpkgs/python3-urllib3/template +++ b/srcpkgs/python3-urllib3/template @@ -1,6 +1,6 @@ # Template file for 'python3-urllib3' pkgname=python3-urllib3 -version=1.26.7 +version=1.26.12 revision=1 wrksrc="urllib3-${version}" build_style=python3-module @@ -13,7 +13,7 @@ maintainer="Alessio Sergi " license="MIT" homepage="https://urllib3.readthedocs.io/" distfiles="${PYPI_SITE}/u/urllib3/urllib3-${version}.tar.gz" -checksum=4987c65554f7a2dbf30c18fd48778ef124af6fab771a377103da0585e2336ece +checksum=3fa96cf423e6987997fc326ae8df396db2a8b7c667747d47ddd8ecba91f4a74e pre_check() { rm test/test_retry{,_deprecated}.py # FIXME From eada1fbd8810e830d908b2a2ba904456ebabf64c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:43 -0400 Subject: [PATCH 0033/1420] meson: rebuild for Python 3.11 --- srcpkgs/meson/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template index aea31234fd19..5dab33e8c011 100644 --- a/srcpkgs/meson/template +++ b/srcpkgs/meson/template @@ -1,7 +1,7 @@ # Template file for 'meson' pkgname=meson version=0.63.2 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-devel python3-setuptools" depends="ninja python3-setuptools" From d5052b9bc6c68a85d0779032eb86e384bfd1693d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:43 -0400 Subject: [PATCH 0034/1420] python3-anytree: rebuild for Python 3.11 --- 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 f693fdbec43d..dd9ad185432f 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.8.0 -revision=4 +revision=5 wrksrc="anytree-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From ca80bbda8f6197f7918b5b99f93d52aeff6b048e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:43 -0400 Subject: [PATCH 0035/1420] python3-lxml: rebuild for Python 3.11 --- 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 0b2f369bd21d..10a74b020c66 100644 --- a/srcpkgs/python3-lxml/template +++ b/srcpkgs/python3-lxml/template @@ -1,7 +1,7 @@ # Template file for 'python3-lxml' pkgname=python3-lxml version=4.8.0 -revision=1 +revision=2 wrksrc="lxml-lxml-${version}" build_style=python3-module make_build_args="--with-cython" From 210c9ce78c3582d4e29ff275bb26327cd86033ab Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:43 -0400 Subject: [PATCH 0036/1420] python-ply: rebuild for Python 3.11 --- srcpkgs/python-ply/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-ply/template b/srcpkgs/python-ply/template index f91150588c84..ba771c53ad94 100644 --- a/srcpkgs/python-ply/template +++ b/srcpkgs/python-ply/template @@ -1,7 +1,7 @@ # Template file for 'python-ply' pkgname=python-ply version=3.11 -revision=6 +revision=7 wrksrc="ply-${version}" build_style=python-module hostmakedepends="python-setuptools python3-setuptools" From 0084894c7250175d42717d686aed671d0376b107 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:43 -0400 Subject: [PATCH 0037/1420] python3-parso: rebuild for Python 3.11 --- 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 16b67897a9d7..21b066406445 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.3 -revision=1 +revision=2 wrksrc="parso-${version}" build_style=python3-module # Several error messages changed form and trigger inappropriate failures From 137c2eaa897b6e631d21e877acc98b50705e0eb0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:43 -0400 Subject: [PATCH 0038/1420] python3-ptyprocess: rebuild for Python 3.11 --- 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 ac79b761be77..fc0c2af98f03 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=2 +revision=3 wrksrc="ptyprocess-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 54448675735def54aa9feda386b30ea201cba36e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:43 -0400 Subject: [PATCH 0039/1420] python3-wcwidth: rebuild for Python 3.11 --- 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 6544018ac6f6..d1e254f32732 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.5 -revision=4 +revision=5 wrksrc="wcwidth-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a64120a7a5a45f10d7b2bcfe1f8d12ab88323fab Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:43 -0400 Subject: [PATCH 0040/1420] python3-asttokens: update to 2.1.0. --- 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 b3e4443811fa..b817ae3fea48 100644 --- a/srcpkgs/python3-asttokens/template +++ b/srcpkgs/python3-asttokens/template @@ -1,6 +1,6 @@ # Template file for 'python3-asttokens' pkgname=python3-asttokens -version=2.0.8 +version=2.1.0 revision=1 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module @@ -15,4 +15,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=c61e16246ecfb2cde2958406b4c8ebc043c9e6d73aaa83c941673b35e5d3a76b +checksum=4aa76401a151c8cc572d906aad7aea2a841780834a19d780f4321c0fe1b54635 From 12842c4c96f35012c80346cf4b20635c0fad2b74 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:43 -0400 Subject: [PATCH 0041/1420] python3-executing: update to 1.2.0. --- srcpkgs/python3-executing/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-executing/template b/srcpkgs/python3-executing/template index 3cb8e53439a3..0ab85f2809f8 100644 --- a/srcpkgs/python3-executing/template +++ b/srcpkgs/python3-executing/template @@ -1,6 +1,6 @@ # Template file for 'python3-executing' pkgname=python3-executing -version=1.1.1 +version=1.2.0 revision=1 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module @@ -12,7 +12,7 @@ maintainer="Andrew J. Hesford " license="MIT" homepage="https://github.com/alexmojaki/executing" distfiles="${PYPI_SITE}/e/executing/executing-${version}.tar.gz" -checksum=b0d7f8dcc2bac47ce6e39374397e7acecea6fdc380a6d5323e26185d70f38ea8 +checksum=19da64c18d2d851112f09c287f8d3dbbdf725ab0e569077efb6cdcbd3497c107 do_check() { PYTHONPATH="$(cd build/lib* && pwd)" python3 tests/test_main.py From b64a6901608f29af3ccbf281eb26b164afc5106f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:44 -0400 Subject: [PATCH 0042/1420] python3-pure_eval: rebuild for Python 3.11 --- 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 d1c86a21d82d..d37f62f828ac 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.2 -revision=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From 1c8ecad079c06765f4138019019cf3fcc5586c44 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:44 -0400 Subject: [PATCH 0043/1420] python-dateutil: rebuild for Python 3.11 --- srcpkgs/python-dateutil/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-dateutil/template b/srcpkgs/python-dateutil/template index 51c0a4521f6b..c97c1af0a8d8 100644 --- a/srcpkgs/python-dateutil/template +++ b/srcpkgs/python-dateutil/template @@ -1,7 +1,7 @@ # Template file for 'python-dateutil' pkgname=python-dateutil version=2.8.2 -revision=1 +revision=2 build_style=python-module hostmakedepends="python-setuptools python3-setuptools" depends="python-six tzdata" From dfbe407bb8aafb09de513d6fd631c5f3e79266cf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:44 -0400 Subject: [PATCH 0044/1420] python3-jupyter_core: rebuild for Python 3.11 --- 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 d0fa364a6751..edb873b3c0df 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=4.7.1 -revision=2 +revision=3 wrksrc="jupyter_core-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 7153ed54ab66501d8c660575de931bea4141dc97 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:44 -0400 Subject: [PATCH 0045/1420] python3-nest_asyncio: rebuild for Python 3.11 --- 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 0d07d918986a..6747c33c9051 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.5.4 -revision=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From e03fa3cc326ebaa4098441dc2c381b9dfd1446b1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:44 -0400 Subject: [PATCH 0046/1420] python3-pyzmq: rebuild for Python 3.11 --- 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 7ac14ad6b53e..2a721020ae8a 100644 --- a/srcpkgs/python3-pyzmq/template +++ b/srcpkgs/python3-pyzmq/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyzmq' pkgname=python3-pyzmq version=24.0.1 -revision=1 +revision=2 wrksrc="pyzmq-${version}" build_style=python3-module make_build_args="--zmq=${XBPS_CROSS_BASE}/usr" From 2d8ca13aba1d03c7663b81b8d2d569161947c37e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:44 -0400 Subject: [PATCH 0047/1420] python3-tornado: rebuild for Python 3.11 --- 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 c53513c6b6ac..213f50e5186d 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.1 -revision=3 +revision=4 wrksrc="tornado-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 8afa55153bb0ab3b3e1ae2bd8375f07c5e1ae54c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:44 -0400 Subject: [PATCH 0048/1420] python3-fastjsonschema: rebuild for Python 3.11 --- 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 290431fadfc1..119651d3c73f 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.15.3 -revision=1 +revision=2 wrksrc=python-fastjsonschema-${version} build_style=python3-module make_check_args="--deselect tests/benchmarks/test_benchmark.py" From f2839bc2e8b330531ae039a8e63cd343b48f83f4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:44 -0400 Subject: [PATCH 0049/1420] python3-jsonschema: rebuild for Python 3.11 --- 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 7c4aff633d6f..84a2239f9f3e 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.16.0 -revision=1 +revision=2 wrksrc="jsonschema-${version}" build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" From ac3269c8abc0f21e447fda6eebd18ae3e6eb6fb6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:44 -0400 Subject: [PATCH 0050/1420] python3-Babel: rebuild for Python 3.11 --- 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 9cf4877aa58e..f79305e014cf 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.10.3 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From da7179b53ca668b96aa56ec542d33022bdfdf900 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:44 -0400 Subject: [PATCH 0051/1420] python3-Jinja2: update to 3.1.2. --- srcpkgs/python3-Jinja2/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-Jinja2/template b/srcpkgs/python3-Jinja2/template index fb6d7e585a92..434edb52179d 100644 --- a/srcpkgs/python3-Jinja2/template +++ b/srcpkgs/python3-Jinja2/template @@ -1,8 +1,8 @@ # Template file for 'python3-Jinja2' pkgname=python3-Jinja2 reverts="3.1.1_1 3.1.1_2" -version=3.0.3 -revision=3 +version=3.1.2 +revision=1 wrksrc="Jinja2-${version}" build_style=python3-module hostmakedepends="python3-setuptools" @@ -14,7 +14,7 @@ license="BSD-3-Clause" homepage="http://jinja.pocoo.org/" changelog="https://raw.githubusercontent.com/pallets/jinja/master/CHANGES.rst" distfiles="${PYPI_SITE}/J/Jinja2/Jinja2-${version}.tar.gz" -checksum=611bb273cd68f3b993fabdc4064fc858c5b47a973cb5aa7999ec1ba405c87cd7 +checksum=31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852 post_install() { vlicense LICENSE.rst From b6b599d799b9e03dbb4a7dd6cf0554d8e2fb66fa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:44 -0400 Subject: [PATCH 0052/1420] python3-alabaster: rebuild for Python 3.11 --- 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 815e5300476a..dd4beedc1aca 100644 --- a/srcpkgs/python3-alabaster/template +++ b/srcpkgs/python3-alabaster/template @@ -1,7 +1,7 @@ # Template file for 'python3-alabaster' pkgname=python3-alabaster version=0.7.12 -revision=5 +revision=6 wrksrc="alabaster-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 01ece0d6454583f001d8dac24e4d81ec86c08fa8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:45 -0400 Subject: [PATCH 0053/1420] python3-docutils: rebuild for Python 3.11 --- 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 13bc5f4d7c33..e2fdc075f2a0 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.18.1 -revision=1 +revision=2 wrksrc="docutils-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b6860f6f9c123cbb9dee8133cf7398e366c1c5c0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:45 -0400 Subject: [PATCH 0054/1420] python3-imagesize: rebuild for Python 3.11 --- 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 566f33fb2710..d036d92bf2c4 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.2.0 -revision=2 +revision=3 wrksrc="imagesize-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 61042843efe084813cd0ea479ed51e0de7359b73 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:45 -0400 Subject: [PATCH 0055/1420] python3-requests: rebuild for Python 3.11 --- 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 afe0f783d109..2c3b2259b171 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.28.1 -revision=1 +revision=2 wrksrc="requests-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 3bb7eb0badc55d9e752f70860ed1adf05dfe0391 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:45 -0400 Subject: [PATCH 0056/1420] python3-snowballstemmer: rebuild for Python 3.11 --- 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 4801fa042325..65dc94b709ca 100644 --- a/srcpkgs/python3-snowballstemmer/template +++ b/srcpkgs/python3-snowballstemmer/template @@ -1,7 +1,7 @@ # Template file for 'python3-snowballstemmer' pkgname=python3-snowballstemmer version=1.2.1 -revision=7 +revision=8 wrksrc="snowballstemmer-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b486a055f3dec920148289ffbeb1c5ed48422c82 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:45 -0400 Subject: [PATCH 0057/1420] python3-sphinxcontrib-applehelp: rebuild for Python 3.11 --- 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 b2896f85f8ad..5976954f3c70 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=1.0.2 -revision=3 +revision=4 wrksrc=sphinxcontrib-applehelp-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 255d742904b7344653a841aad3e5fa3a1680f104 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:45 -0400 Subject: [PATCH 0058/1420] python3-sphinxcontrib-devhelp: rebuild for Python 3.11 --- 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 53e6d06092cd..5c6fb1d5bd0b 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=1.0.2 -revision=3 +revision=4 wrksrc=sphinxcontrib-devhelp-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 16fcf1be6d107d710f0827759e14e0b5d2c113b5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:45 -0400 Subject: [PATCH 0059/1420] python3-sphinxcontrib-htmlhelp: rebuild for Python 3.11 --- 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 966981fee4ba..94c69de8b962 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.0.0 -revision=2 +revision=3 wrksrc=sphinxcontrib-htmlhelp-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 8389776776e0e4e4c2c4d6c68dc45180e328bdaa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:45 -0400 Subject: [PATCH 0060/1420] python3-sphinxcontrib-jsmath: rebuild for Python 3.11 --- 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 84c2f2951981..64f6ebf71ecc 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=3 +revision=4 wrksrc=sphinxcontrib-jsmath-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 0113ddce1c75815155df995019d8143c5db0f683 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:45 -0400 Subject: [PATCH 0061/1420] python3-sphinxcontrib-qthelp: rebuild for Python 3.11 --- 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 c5635c26237f..2c0353cb7831 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=1.0.3 -revision=3 +revision=4 wrksrc=sphinxcontrib-qthelp-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 1032cdc28cc91316800f7e0d3bca0e12f771dc33 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:45 -0400 Subject: [PATCH 0062/1420] python3-sphinxcontrib-serializinghtml: rebuild for Python 3.11 --- 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 d14c6b29107c..582a6b263b7d 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=1.1.5 -revision=2 +revision=3 wrksrc=sphinxcontrib-serializinghtml-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 14fe6216f79904c8c62452eaa87ba8dda275bd77 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:46 -0400 Subject: [PATCH 0063/1420] gtk-doc: rebuild for Python 3.11 --- 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 8ca952d41cf4..f758440c842d 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.33.2 -revision=1 +revision=2 build_style=meson # disable tests to avoid cyclic dependency on glib configure_args="-Dtests=false" From 207f951e5479d6ad2b1b062d831fa85dd63a4255 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:46 -0400 Subject: [PATCH 0064/1420] python-pycparser: update to 2.21. --- srcpkgs/python-pycparser/template | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template index 68ea482d2075..9be9a47554c3 100644 --- a/srcpkgs/python-pycparser/template +++ b/srcpkgs/python-pycparser/template @@ -1,18 +1,22 @@ # Template file for 'python-pycparser' pkgname=python-pycparser -version=2.20 -revision=2 +version=2.21 +revision=1 wrksrc="pycparser-${version}" build_style=python-module -pycompile_module="pycparser" hostmakedepends="python-setuptools python3-setuptools" depends="python-ply" +checkdepends="python3-ply python3-pytest" short_desc="Complete C99 parser in pure Python (Python2)" maintainer="Alessio Sergi " homepage="https://github.com/eliben/pycparser" license="BSD-3-Clause" distfiles="${PYPI_SITE}/p/pycparser/pycparser-${version}.tar.gz" -checksum=2d475327684562c3a96cc71adf7dc8c4f0565175cf86b6d7a404ff4c771f15f0 +checksum=e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206 + +do_check() { + python3 -m pytest +} post_install() { # replace bundled copy of ply @@ -25,7 +29,6 @@ post_install() { python3-pycparser_package() { depends="python3-ply" - pycompile_module="pycparser" short_desc="${short_desc/Python2/Python3}" pkg_install() { vmove usr/lib/python3* From c3b76d5447dd6f41e68944a452fa60a56cfe1379 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:46 -0400 Subject: [PATCH 0065/1420] python3-semanticversion: rebuild for Python 3.11 --- 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 049ac702ad57..137b3422bb2f 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=3 +revision=4 wrksrc="semantic_version-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 833566ebd7f1d4accb6efc25b1ba8b4c33e7908a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:46 -0400 Subject: [PATCH 0066/1420] python3-backcall: rebuild for Python 3.11 --- 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 b2303da50f2d..5468442a4ed8 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=5 +revision=6 wrksrc="backcall-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From c4540c772b1f5fd4687faeecfa53059cf9951d8b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:46 -0400 Subject: [PATCH 0067/1420] python3-jedi: update to 0.18.1. --- srcpkgs/python3-jedi/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-jedi/template b/srcpkgs/python3-jedi/template index 1a7c5a261e5d..2db0201ff890 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.18.0 -revision=2 +version=0.18.1 +revision=1 wrksrc="jedi-${version}" build_style=python3-module hostmakedepends="python3-setuptools" @@ -12,7 +12,7 @@ maintainer="Orphaned " license="MIT" homepage="https://jedi.readthedocs.io/" distfiles="${PYPI_SITE}/j/jedi/jedi-${version}.tar.gz" -checksum=92550a404bad8afed881a137ec9a461fed49eca661414be45059329614ed0707 +checksum=74137626a64a99c8eb6ae5832d99b3bdd7d29a3850fe2aa80a4126b2a7d949ab do_check() { PYTHONPATH="$(cd build/lib* && pwd)" python3 ./test/run.py From cbbc168224d3686ab9ad02165ebacb9e3419154f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:46 -0400 Subject: [PATCH 0068/1420] python3-matplotlib-inline: rebuild for Python 3.11 --- srcpkgs/python3-matplotlib-inline/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-matplotlib-inline/template b/srcpkgs/python3-matplotlib-inline/template index f6e3dd8df9da..54e8f6261096 100644 --- a/srcpkgs/python3-matplotlib-inline/template +++ b/srcpkgs/python3-matplotlib-inline/template @@ -1,7 +1,7 @@ # Template file for 'python3-matplotlib-inline' pkgname=python3-matplotlib-inline version=0.1.6 -revision=1 +revision=2 _pypkg="${pkgname#python3-}" wrksrc="${_pypkg}-${version}" build_style=python3-module From c3b27e0fc2e015fe8eadfb1dfc61a23a26a67f6a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:46 -0400 Subject: [PATCH 0069/1420] python3-pexpect: rebuild for Python 3.11 --- 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 d51c4a37451a..2f6bca0180d2 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.8.0 -revision=2 +revision=3 wrksrc="pexpect-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 7bfffb6e6a2fc46054d80527d75332941b962a64 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:46 -0400 Subject: [PATCH 0070/1420] python3-pickleshare: rebuild for Python 3.11 --- 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 beac8eb9e445..58338a96320a 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=5 +revision=6 wrksrc="pickleshare-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 3560680518d5ec7e986ac634b3cb2003d974615f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:46 -0400 Subject: [PATCH 0071/1420] python3-prompt_toolkit: rebuild for Python 3.11 --- 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 1f3c079e31ca..9015fcf2dc95 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.31 -revision=1 +revision=2 wrksrc="prompt_toolkit-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From f5da4fbaec5965b74f5b46c4022f79b313323afb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:46 -0400 Subject: [PATCH 0072/1420] python3-stack_data: update to 0.6.0. --- srcpkgs/python3-stack_data/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-stack_data/template b/srcpkgs/python3-stack_data/template index 8ff71266a88f..7ecdd36226fd 100644 --- a/srcpkgs/python3-stack_data/template +++ b/srcpkgs/python3-stack_data/template @@ -1,6 +1,6 @@ # Template file for 'python3-stack_data' pkgname=python3-stack_data -version=0.5.1 +version=0.6.0 revision=1 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module @@ -11,7 +11,7 @@ maintainer="Andrew J. Hesford " license="MIT" homepage="https://github.com/alexmojaki/stack_data" distfiles="${PYPI_SITE}/s/stack_data/stack_data-${version}.tar.gz" -checksum=95eb784942e861a3d80efd549ff9af6cf847d88343a12eb681d7157cfcb6e32b +checksum=8e515439f818efaa251036af72d89e4026e2b03993f3453c000b200fb4f2d6aa # Tests require unpackaged dependencies make_check=no From fce4c109509f5bbbcdc054b69568a7408f619398 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:46 -0400 Subject: [PATCH 0073/1420] python3-soupsieve: rebuild for Python 3.11 --- 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 aa8f81af5a6e..5e11953f1589 100644 --- a/srcpkgs/python3-soupsieve/template +++ b/srcpkgs/python3-soupsieve/template @@ -1,7 +1,7 @@ # Template file for 'python3-soupsieve' pkgname=python3-soupsieve version=1.9.5 -revision=8 +revision=9 wrksrc="soupsieve-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 2946ae73b0606a9bdfd3cd2de39a10c896172b1d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:47 -0400 Subject: [PATCH 0074/1420] python3-webencodings: rebuild for Python 3.11 --- 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 13c9b4210d20..e80a1d2883d7 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=7 +revision=8 wrksrc="webencodings-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 2354d18853a4fd0ff2b0cea534d08b5f535aa96e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:47 -0400 Subject: [PATCH 0075/1420] python3-async_generator: rebuild for Python 3.11 --- 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 9ccab1df8b63..587b14ae3699 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=4 +revision=5 wrksrc="async_generator-${version}" build_style=python3-module pycompile_module="async_generator" From 8165ba122cc4b9bd17114ba7ec41c2bc214996b3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:47 -0400 Subject: [PATCH 0076/1420] python3-jupyter_client: rebuild for Python 3.11 --- 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 be6aa5594095..3337fc607c96 100644 --- a/srcpkgs/python3-jupyter_client/template +++ b/srcpkgs/python3-jupyter_client/template @@ -2,7 +2,7 @@ pkgname=python3-jupyter_client # delay 6.2 until jupyter/jupyter_console#241 is fixed version=6.1.12 -revision=2 +revision=3 wrksrc="jupyter_client-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 41d04653006a8913e61cc37a6afae3195e488ce2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:47 -0400 Subject: [PATCH 0077/1420] python3-jupyter_nbformat: rebuild for Python 3.11 --- 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 27f3267b4594..5276e510e400 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.3.0 -revision=1 +revision=2 wrksrc="nbformat-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 7d5997ac5661c03cf850cfc437ed60b5ac7d5d36 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:47 -0400 Subject: [PATCH 0078/1420] python3-Sphinx: update to 5.1.1. --- srcpkgs/python3-Sphinx/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-Sphinx/template b/srcpkgs/python3-Sphinx/template index b698afeb5bb5..a7cffb95ccfa 100644 --- a/srcpkgs/python3-Sphinx/template +++ b/srcpkgs/python3-Sphinx/template @@ -1,6 +1,6 @@ # Template file for 'python3-Sphinx' pkgname=python3-Sphinx -version=5.0.2 +version=5.1.1 revision=1 wrksrc=Sphinx-${version} build_style=python3-module @@ -18,7 +18,7 @@ maintainer="Đoàn Trần Công Danh " license="BSD-3-Clause" homepage="http://sphinx-doc.org" distfiles="${PYPI_SITE}/S/Sphinx/Sphinx-${version}.tar.gz" -checksum=b18e978ea7565720f26019c702cd85c84376e948370f1cd43d60265010e1c7b0 +checksum=ba3224a4e206e1fbdecf98a4fae4992ef9b24b85ebf7b584bb340156eaf08d89 conflicts="python-Sphinx>=0" post_install() { From adb75d062cee26fad4bedbbfe8238659391e5e58 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:47 -0400 Subject: [PATCH 0079/1420] python3-iniconfig: rebuild for Python 3.11 --- 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 36b2fa5ea0ee..23902dd05d39 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=2 +revision=3 wrksrc="iniconfig-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From 433c66879da6f41b58a91d12bd1d71210508e3d3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:47 -0400 Subject: [PATCH 0080/1420] python3-py: update to 1.11.0. --- srcpkgs/python3-py/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-py/template b/srcpkgs/python3-py/template index ee7565758955..061b641830e4 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.10.0 -revision=2 +version=1.11.0 +revision=1 wrksrc="py-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" @@ -13,7 +13,7 @@ license="MIT" homepage="https://github.com/pytest-dev/py" changelog="https://github.com/pytest-dev/py/raw/master/CHANGELOG" distfiles="${PYPI_SITE}/p/py/py-${version}.tar.gz" -checksum=21b81bda15b66ef5e1a777a21c4dcd9c20ad3efd0b3f817e7a809035269e1bd3 +checksum=51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719 do_check() { python3 -m pytest From e7b9d78cdd1d5ccc7d1580c524ab22108865518c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:47 -0400 Subject: [PATCH 0081/1420] glib: rebuild for Python 3.11 --- srcpkgs/glib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/glib/template b/srcpkgs/glib/template index 3ec9a8adbeb6..e250af446b0b 100644 --- a/srcpkgs/glib/template +++ b/srcpkgs/glib/template @@ -1,7 +1,7 @@ # Template file for 'glib' pkgname=glib version=2.74.0 -revision=2 +revision=3 build_style=meson # static version is necessary for qemu-user-static; # also disable LTO, otherwise there are multiple failures when linking qemu From 08be9b7c3d974b620c4fa1fe95b3bdc5051fe676 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:47 -0400 Subject: [PATCH 0082/1420] python3-Mako: rebuild for Python 3.11 --- 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 b1c004241344..7ce9d39f4719 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.1.3 -revision=4 +revision=5 wrksrc="Mako-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From c461141e7676401908334290a172b26ec0547631 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:47 -0400 Subject: [PATCH 0083/1420] python3-Markdown: rebuild for Python 3.11 --- 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 4fa5feeead49..ff06c0eba9ef 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.3.4 -revision=2 +revision=3 wrksrc="Markdown-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 81d3362e7bae1f1cc076bf32f344c0a958b0b698 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:48 -0400 Subject: [PATCH 0084/1420] python3-toml: rebuild for Python 3.11 --- 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 c185660873c6..bb36e0e1b87e 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=2 +revision=3 wrksrc="toml-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 22f848bac0a92235861d65841995cf42807087cc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:48 -0400 Subject: [PATCH 0085/1420] python-pyasn1: rebuild for Python 3.11 --- srcpkgs/python-pyasn1/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-pyasn1/template b/srcpkgs/python-pyasn1/template index 733149d58448..a87b86c842a5 100644 --- a/srcpkgs/python-pyasn1/template +++ b/srcpkgs/python-pyasn1/template @@ -1,7 +1,7 @@ # Template file for 'python-pyasn1' pkgname=python-pyasn1 version=0.4.8 -revision=4 +revision=5 wrksrc="pyasn1-${version}" build_style=python-module hostmakedepends="python-setuptools python3-setuptools" From 062970d73b94d4cc0cfe024b5177c4fdb42c78f9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:48 -0400 Subject: [PATCH 0086/1420] python-cffi: rebuild for Python 3.11 --- srcpkgs/python-cffi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-cffi/template b/srcpkgs/python-cffi/template index 642492e9cd94..ae02f0fd5275 100644 --- a/srcpkgs/python-cffi/template +++ b/srcpkgs/python-cffi/template @@ -1,7 +1,7 @@ # Template file for 'python-cffi' pkgname=python-cffi version=1.15.1 -revision=1 +revision=2 wrksrc="cffi-${version}" build_style=python-module hostmakedepends="python-setuptools python3-setuptools libffi-devel" From ff274bcfe5d8cecd2658041b6adeeb0c83ffaed3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:48 -0400 Subject: [PATCH 0087/1420] python3-setuptools-rust: rebuild for Python 3.11 --- 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 74caaa19452f..c0e4633d4290 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.5.2 -revision=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From 675ecef391417e7c7336450d30f750daebb0dbe8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:48 -0400 Subject: [PATCH 0088/1420] python3-sniffio: rebuild for Python 3.11 --- 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 0f0eeca23b65..f20547c05daf 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.2.0 -revision=2 +revision=3 wrksrc="sniffio-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From f473439bfbdb894fe014f8c37ac570db51d7048c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:48 -0400 Subject: [PATCH 0089/1420] python3-hpack: rebuild for Python 3.11 --- 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 06e22a633349..cc1879160cf3 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=2 +revision=3 wrksrc=hpack-${version} build_style=python3-module hostmakedepends="python3-setuptools" From a037c7bde28c2f480337315811e9371129964541 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:48 -0400 Subject: [PATCH 0090/1420] python3-hyperframe: rebuild for Python 3.11 --- 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 ed2152ba0243..0f17e069a3cd 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=2 +revision=3 wrksrc=hyperframe-${version} build_style=python3-module hostmakedepends="python3-setuptools" From aa5b595020ec51702ae6119eaef2e25cd916e737 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:48 -0400 Subject: [PATCH 0091/1420] talloc: update to 2.3.4. --- srcpkgs/talloc/patches/pyext.patch | 13 +++++++++++++ srcpkgs/talloc/template | 13 ++++--------- 2 files changed, 17 insertions(+), 9 deletions(-) create mode 100644 srcpkgs/talloc/patches/pyext.patch diff --git a/srcpkgs/talloc/patches/pyext.patch b/srcpkgs/talloc/patches/pyext.patch new file mode 100644 index 000000000000..4a6ab360bf32 --- /dev/null +++ b/srcpkgs/talloc/patches/pyext.patch @@ -0,0 +1,13 @@ +Python wants to put ABI descriptors in shared objects, but they are wrong when +Void cross compiles. Just drop the descriptors altogether. +--- a/third_party/waf/waflib/Tools/python.py ++++ b/third_party/waf/waflib/Tools/python.py +@@ -328,7 +328,7 @@ + x = 'MACOSX_DEPLOYMENT_TARGET' + if dct[x]: + env[x] = conf.environ[x] = str(dct[x]) +- env.pyext_PATTERN = '%s' + (dct['EXT_SUFFIX'] or dct['SO']) # SO is deprecated in 3.5 and removed in 3.11 ++ env.pyext_PATTERN = '%s.so' + + + # Try to get pythonX.Y-config diff --git a/srcpkgs/talloc/template b/srcpkgs/talloc/template index da77f999c27b..2c85e379fdd3 100644 --- a/srcpkgs/talloc/template +++ b/srcpkgs/talloc/template @@ -1,13 +1,13 @@ # Template file for 'talloc' pkgname=talloc -version=2.3.3 +version=2.3.4 revision=1 build_style=waf3 build_helper="qemu" configure_script="buildtools/bin/waf" configure_args="--sysconfdir=/etc --localstatedir=/var --disable-rpath --disable-rpath-install --without-gettext - --builtin-libraries=replace --bundled-libraries=NONE" + --builtin-libraries=replace --bundled-libraries=pytalloc-util" hostmakedepends="pkg-config docbook2x" makedepends="python3-devel libtirpc-devel libxslt gettext-devel" short_desc="Hierarchical pool based memory allocator with destructors" @@ -15,15 +15,10 @@ maintainer="Orphaned " license="GPL-3.0-or-later" homepage="https://talloc.samba.org/" distfiles="https://download.samba.org/pub/${pkgname}/${pkgname}-${version}.tar.gz" -checksum=6be95b2368bd0af1c4cd7a88146eb6ceea18e46c3ffc9330bf6262b40d1d8aaa +checksum=179f9ebe265e67e4ab2c26cad2b7de4b6a77c6c212f966903382869f06be6505 export PYTHON_CONFIG="${XBPS_CROSS_BASE}/usr/bin/python3-config" - -post_patch() { - # Avoid Python shlib extension noise in libpytallic-util.so - vsed -e "/env.pyext_PATTERN/s/dct\['SO'\]/'.so'/" \ - -i third_party/waf/waflib/Tools/python.py -} +export PYTHONHASHSEED=1 talloc-python3_package() { short_desc+=" - Python3 bindings" From 26da8bd5e7de4b03a70b63ffe60029ac1c073910 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:48 -0400 Subject: [PATCH 0092/1420] python3-commonmark: rebuild for Python 3.11 --- srcpkgs/python3-commonmark/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-commonmark/template b/srcpkgs/python3-commonmark/template index 58784061a9e5..8b636d75e43e 100644 --- a/srcpkgs/python3-commonmark/template +++ b/srcpkgs/python3-commonmark/template @@ -1,7 +1,7 @@ # Template file for 'python3-commonmark' pkgname=python3-commonmark version=0.9.1 -revision=3 +revision=4 wrksrc="commonmark-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 44a69f6f75120293055aeded501f19a38bcb39d9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:48 -0400 Subject: [PATCH 0093/1420] python3-ipython: update to 8.6.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 b391aa19d168..81753012bf18 100644 --- a/srcpkgs/python3-ipython/template +++ b/srcpkgs/python3-ipython/template @@ -1,6 +1,6 @@ # Template file for 'python3-ipython' pkgname=python3-ipython -version=8.5.0 +version=8.6.0 revision=1 wrksrc="ipython-${version}" build_style=python3-module @@ -16,7 +16,7 @@ maintainer="Andrew J. Hesford " license="BSD-3-Clause" homepage="https://ipython.org/" distfiles="${PYPI_SITE}/i/ipython/ipython-${version}.tar.gz" -checksum=097bdf5cd87576fd066179c9f7f208004f7a6864ee1b20f37d346c0bcb099f84 +checksum=7c959e3dedbf7ed81f9b9d8833df252c430610e2a4a6464ec13cd20975ce20a5 conflicts="python-ipython<=5.8.0_2" do_check() { From c33e255ebc00a736aeb3a819b23635cffa7c4d39 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:48 -0400 Subject: [PATCH 0094/1420] python3-BeautifulSoup4: rebuild for Python 3.11 --- 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 2aa3b1f2bf71..e0b451609573 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.11.1 -revision=1 +revision=2 wrksrc="beautifulsoup4-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 4da010872a53b0525a8f5efbf3f36d920d7ff029 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:49 -0400 Subject: [PATCH 0095/1420] python3-bleach: rebuild for Python 3.11 --- 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 2b8af3b8fbba..6d94bf42425b 100644 --- a/srcpkgs/python3-bleach/template +++ b/srcpkgs/python3-bleach/template @@ -1,7 +1,7 @@ # Template file for 'python3-bleach' pkgname=python3-bleach version=4.1.0 -revision=1 +revision=2 wrksrc="bleach-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From ae14eac03afb02ff580e3c547334ad71c278c593 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:49 -0400 Subject: [PATCH 0096/1420] python3-defusedxml: rebuild for Python 3.11 --- 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 06bdd57a3526..b73a797eaf81 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.6.0 -revision=5 +revision=6 wrksrc="defusedxml-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 19b3b9aca66476a003b74387242dc24ec50d9572 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:49 -0400 Subject: [PATCH 0097/1420] python3-entrypoints: rebuild for Python 3.11 --- 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 5448c4696239..e9d536c615b8 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.3 -revision=5 +revision=6 wrksrc="entrypoints-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From aae12ad82b9d502235886f42b8eb74cc526c47d3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:49 -0400 Subject: [PATCH 0098/1420] python3-jupyterlab_pygments: rebuild for Python 3.11 --- 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 ec17dd3105ac..642646338812 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.1.2 -revision=2 +revision=3 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 885780efcd912912d51d12343a197bb9d85cc7a5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:49 -0400 Subject: [PATCH 0099/1420] python3-mistune: rebuild for Python 3.11 --- 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 4b77251e0de5..8c27ff27e4df 100644 --- a/srcpkgs/python3-mistune/template +++ b/srcpkgs/python3-mistune/template @@ -1,7 +1,7 @@ # Template file for 'python3-mistune' pkgname=python3-mistune version=0.8.4 -revision=5 +revision=6 wrksrc="mistune-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From e0d5a794b5b0f5c3b6237caf00d4451cf8e35fed Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:49 -0400 Subject: [PATCH 0100/1420] python3-nbclient: rebuild for Python 3.11 --- 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 24f9242016fb..af001b0b900a 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.5.10 -revision=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From c81b1a6c28c1cd06156fb67f226c151a96cf1c69 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:49 -0400 Subject: [PATCH 0101/1420] python3-pandocfilters: rebuild for Python 3.11 --- 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 7582d8704078..89965e04b5b4 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.4.3 -revision=2 +revision=3 wrksrc="pandocfilters-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 3519b3a2ab839f5ed7dde584696de213755ea010 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:49 -0400 Subject: [PATCH 0102/1420] python3-testpath: rebuild for Python 3.11 --- 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 8876a9f59d8e..f175281bfd90 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.4.4 -revision=2 +revision=3 wrksrc="testpath-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 5804c59c3593b6f39bdece13379e433a4cf2a623 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:49 -0400 Subject: [PATCH 0103/1420] python3-pytest: update to 7.1.3. --- .../patches/man-remove-sphinx-deps.patch | 12 +----------- srcpkgs/python3-pytest/template | 6 +++--- 2 files changed, 4 insertions(+), 14 deletions(-) diff --git a/srcpkgs/python3-pytest/patches/man-remove-sphinx-deps.patch b/srcpkgs/python3-pytest/patches/man-remove-sphinx-deps.patch index 3a3bea50b9ad..5002a9c3079d 100644 --- a/srcpkgs/python3-pytest/patches/man-remove-sphinx-deps.patch +++ b/srcpkgs/python3-pytest/patches/man-remove-sphinx-deps.patch @@ -1,5 +1,4 @@ -Avoid adding four new packages that aren't necessary for the manual page, -and fix the path to the manual source to allow it to be generated. +Avoid adding four new packages that aren't necessary for the manual page. --- a/doc/en/conf.py +++ b/doc/en/conf.py @@ -65,16 +65,12 @@ @@ -19,12 +18,3 @@ and fix the path to the manual source to allow it to be generated. ] # Building PDF docs on readthedocs requires inkscape for svg to pdf -@@ -316,7 +320,7 @@ - - # One entry per manual page. List of tuples - # (source start file, name, description, authors, manual section). --man_pages = [("usage", "pytest", "pytest usage", ["holger krekel at merlinux eu"], 1)] -+man_pages = [("how-to/usage", "pytest", "pytest usage", ["holger krekel at merlinux eu"], 1)] - - - # -- Options for Epub output --------------------------------------------------- diff --git a/srcpkgs/python3-pytest/template b/srcpkgs/python3-pytest/template index f0bf2feddb31..34262908e048 100644 --- a/srcpkgs/python3-pytest/template +++ b/srcpkgs/python3-pytest/template @@ -1,6 +1,6 @@ # Template file for 'python3-pytest' pkgname=python3-pytest -version=7.1.2 +version=7.1.3 revision=1 wrksrc="pytest-${version}" build_style=python3-module @@ -15,7 +15,7 @@ license="MIT" homepage="https://docs.pytest.org/en/latest/" changelog="https://docs.pytest.org/en/latest/changelog.html" distfiles="${PYPI_SITE}/p/pytest/pytest-${version}.tar.gz" -checksum=a06a0425453864a270bc45e71f783330a7428defb4230fb5e6a731fde06ecd45 +checksum=4f365fec2dff9c1162f834d9f18af1ba13062db0c708bf7b946f8a5c76180c39 alternatives=" pytest:pytest:/usr/bin/pytest3 pytest:py.test:/usr/bin/py.test3" @@ -27,7 +27,7 @@ post_patch() { } post_build() { - PYTHONPATH=$(pwd)/build/lib/ make -C doc/en man + PYTHONPATH="$(pwd)/build/lib:${XBPS_CROSS_BASE}/${py3_lib}" make -C doc/en man vman doc/en/_build/man/pytest.1 } From 3280ce00e2dcb46b6131e8bb05cf858e79ce8b18 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:49 -0400 Subject: [PATCH 0104/1420] python3-pydantic: rebuild for Python 3.11 --- srcpkgs/python3-pydantic/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pydantic/template b/srcpkgs/python3-pydantic/template index 2e9ae9abaff3..544e1838c8e5 100644 --- a/srcpkgs/python3-pydantic/template +++ b/srcpkgs/python3-pydantic/template @@ -1,7 +1,7 @@ # Template file for 'python3-pydantic' pkgname=python3-pydantic version=1.10.2 -revision=1 +revision=2 wrksrc="pydantic-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d1c89b3642a3f777091e85a2195de22a14039942 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:50 -0400 Subject: [PATCH 0105/1420] python3-more-itertools: update to 9.0.0. --- srcpkgs/python3-more-itertools/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template index 88ab0d70484c..d1a7ec4930ff 100644 --- a/srcpkgs/python3-more-itertools/template +++ b/srcpkgs/python3-more-itertools/template @@ -1,6 +1,6 @@ # Template file for 'python3-more-itertools' pkgname=python3-more-itertools -version=8.14.0 +version=9.0.0 revision=1 wrksrc="more-itertools-${version}" build_style=python3-pep517 @@ -12,7 +12,7 @@ maintainer="Andrew J. Hesford " license="MIT" homepage="https://github.com/erikrose/more-itertools" distfiles="${PYPI_SITE}/m/more-itertools/more-itertools-${version}.tar.gz" -checksum=c09443cd3d5438b8dafccd867a6bc1cb0894389e90cb53d227456b0b0bccb750 +checksum=5a6257e40878ef0520b1803990e3e22303a41b5714006c32a3fd8304b26ea1ab post_install() { vlicense LICENSE From b69efeb452b174cddf2bd7277febd2f7dfb0cc73 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:50 -0400 Subject: [PATCH 0106/1420] python-zope.interface: rebuild for Python 3.11 --- srcpkgs/python-zope.interface/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-zope.interface/template b/srcpkgs/python-zope.interface/template index 94a22e87902e..3b3fe33631e7 100644 --- a/srcpkgs/python-zope.interface/template +++ b/srcpkgs/python-zope.interface/template @@ -1,7 +1,7 @@ # Template file for 'python-zope.interface' pkgname=python-zope.interface version=5.4.0 -revision=2 +revision=3 wrksrc="${pkgname#*-}-${version}" build_style=python-module hostmakedepends="python-setuptools python3-setuptools" From 09384d43bd24c51f48c36f33cb45dc1f3a6a004f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:50 -0400 Subject: [PATCH 0107/1420] gobject-introspection: rebuild for Python 3.11 --- 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 bbd92f27b7d6..59b0f867f353 100644 --- a/srcpkgs/gobject-introspection/template +++ b/srcpkgs/gobject-introspection/template @@ -1,7 +1,7 @@ # Template file for 'gobject-introspection' pkgname=gobject-introspection version=1.74.0 -revision=2 +revision=3 build_style=meson pycompile_dirs="usr/lib/${pkgname}/giscanner" hostmakedepends="flex pkg-config" From f54c7fd6acf754665938461cdc3a08dd49164e79 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:50 -0400 Subject: [PATCH 0108/1420] python3-cairo: rebuild for Python 3.11 --- 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 66542cb89449..2778417e1119 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.20.1 -revision=3 +revision=4 wrksrc="pycairo-${version}" build_style=python3-module hostmakedepends="pkg-config python3" From 9431c8327de54bcb0ad23022c8be9d44795e417f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:53 -0400 Subject: [PATCH 0109/1420] python3-breathe: rebuild for Python 3.11 --- 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 882f02be2b8f..e26985447cc0 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.34.0 -revision=1 +revision=2 wrksrc="breathe-${version}" build_style=python3-module _pyreqs="python3-Sphinx python3-docutils python3-six" From c390c7ab8c07310044f0e42db984cf7ca475bb61 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:53 -0400 Subject: [PATCH 0110/1420] python3-sphinx_rtd_theme: rebuild for Python 3.11 --- 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 ed49f8a00c51..b0fbff3212ac 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=0.5.0 -revision=3 +revision=4 wrksrc="sphinx_rtd_theme-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 3424405d5ec3db9655215d98632ea5c281a1d0bf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:50 -0400 Subject: [PATCH 0111/1420] sip: rebuild for Python 3.11 --- srcpkgs/sip/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sip/template b/srcpkgs/sip/template index 90dd876be664..12d092de14d2 100644 --- a/srcpkgs/sip/template +++ b/srcpkgs/sip/template @@ -1,7 +1,7 @@ # Template file for 'sip' pkgname=sip version=6.6.2 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-devel python3-setuptools python3-packaging python3-toml python3-ply" From 962379971ac12b1f32252b96d517c513aaeb305b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:50 -0400 Subject: [PATCH 0112/1420] python3-gast: rebuild for Python 3.11 --- srcpkgs/python3-gast/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-gast/template b/srcpkgs/python3-gast/template index 787d9ff0c0c9..e5116860eaf6 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.5.3 -revision=1 +revision=2 wrksrc="gast-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 3c0f2a535366fe553f54ace13264be5400f587be Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:14 -0400 Subject: [PATCH 0113/1420] python3-smartypants: rebuild for Python 3.11 --- 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 18e711829981..fc71d88749f4 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.1 -revision=2 +revision=3 wrksrc="smartypants.py-$version" build_style=python3-module hostmakedepends="python3-setuptools" From 5c75cfd4e46f2ed1fde94b5f430f41e648327489 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:50 -0400 Subject: [PATCH 0114/1420] python-pyasn1-modules: rebuild for Python 3.11 --- srcpkgs/python-pyasn1-modules/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-pyasn1-modules/template b/srcpkgs/python-pyasn1-modules/template index dbe2f29dfb37..b27cf58c7d59 100644 --- a/srcpkgs/python-pyasn1-modules/template +++ b/srcpkgs/python-pyasn1-modules/template @@ -1,7 +1,7 @@ # Template file for 'python-pyasn1-modules' pkgname=python-pyasn1-modules version=0.2.8 -revision=5 +revision=6 wrksrc="${pkgname#*-}-${version}" build_style=python-module pycompile_module="pyasn1_modules" From 31452861c8e23b657ed17945fd3034443f0be5c4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:50 -0400 Subject: [PATCH 0115/1420] python3-cachetools: rebuild for Python 3.11 --- 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 c5bbe7e39b98..c2b0a9fca6e2 100644 --- a/srcpkgs/python3-cachetools/template +++ b/srcpkgs/python3-cachetools/template @@ -1,7 +1,7 @@ # Template file for 'python3-cachetools' pkgname=python3-cachetools version=4.2.4 -revision=2 +revision=3 wrksrc="cachetools-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 929e241d8d1b26c25d6343b940e22c3807d462d5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:50 -0400 Subject: [PATCH 0116/1420] python3-rsa: rebuild for Python 3.11 --- 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 03ec91be2819..a04a0ec01c09 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=2 +revision=3 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 7ac9fb10b03821cc95815882309675320ad9b507 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:50 -0400 Subject: [PATCH 0117/1420] python3-protobuf: rebuild for Python 3.11 --- 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 1570934f87cc..989be382b837 100644 --- a/srcpkgs/python3-protobuf/template +++ b/srcpkgs/python3-protobuf/template @@ -1,7 +1,7 @@ # Template file for 'python3-protobuf' pkgname=python3-protobuf version=4.21.7 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-wheel" From ea8e19cd07abe95dbbeffc79228b95aab5660a16 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 24 Oct 2022 23:12:35 -0400 Subject: [PATCH 0118/1420] python3-cryptography_vectors: update to 38.0.3. --- srcpkgs/python3-cryptography_vectors/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-cryptography_vectors/template b/srcpkgs/python3-cryptography_vectors/template index 976fc8832870..3736d38a35a3 100644 --- a/srcpkgs/python3-cryptography_vectors/template +++ b/srcpkgs/python3-cryptography_vectors/template @@ -1,6 +1,6 @@ # Template file for 'python3-cryptography_vectors' pkgname=python3-cryptography_vectors -version=38.0.1 +version=38.0.3 revision=1 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module @@ -11,7 +11,7 @@ maintainer="Andrew J. Hesford " license="BSD-3-Clause, Apache-2.0" homepage="https://github.com/pyca/cryptography" distfiles="${PYPI_SITE}/c/cryptography_vectors/cryptography_vectors-${version}.tar.gz" -checksum=0431fd107c1fbad0377704a7051945b3b391169fddc4f6fa0bd4edc6b6e235dd +checksum=1cdafd42f5348d77e4e7e4791aefd1f62b16bd552a0274afc9346533fe32e925 post_install() { vlicense LICENSE From a862a00a8d2341a5c8a57712930d888d12ab11dd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:50 -0400 Subject: [PATCH 0119/1420] python3-cryptography: update to 38.0.3. --- srcpkgs/python3-cryptography/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-cryptography/template b/srcpkgs/python3-cryptography/template index c2bc74734ca2..bf4e3303b0a5 100644 --- a/srcpkgs/python3-cryptography/template +++ b/srcpkgs/python3-cryptography/template @@ -1,6 +1,6 @@ # Template file for 'python3-cryptography' pkgname=python3-cryptography -version=38.0.1 +version=38.0.3 revision=1 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module @@ -18,7 +18,7 @@ license="BSD-3-Clause, Apache-2.0" homepage="https://github.com/pyca/cryptography" changelog="https://raw.githubusercontent.com/pyca/cryptography/master/CHANGELOG.rst" distfiles="${PYPI_SITE}/c/cryptography/cryptography-${version}.tar.gz" -checksum=1db3d807a14931fa317f96435695d9ec386be7b84b618cc61cfa5d08b0ae33d7 +checksum=bfbe6ee19615b07a98b1d2287d6a6073f734735b49ee45b11324d85efc4d5cbd if [ "$CROSS_BUILD" ]; then makedepends+=" rust-std" From 86a4b0b5f4420a319fe092e417c896c0dc39bdd9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:09 -0400 Subject: [PATCH 0120/1420] python3-wrapt: rebuild for Python 3.11 --- 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 ada937b3688a..752dfa5a5cd6 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.13.3 -revision=1 +revision=2 wrksrc="wrapt-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From dbb7a8c9d1a26aad34ec913165e2b24cbf5828e9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:51 -0400 Subject: [PATCH 0121/1420] python3-anyio: rebuild for Python 3.11 --- 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 1422b5a3077d..4d529e23d9f1 100644 --- a/srcpkgs/python3-anyio/template +++ b/srcpkgs/python3-anyio/template @@ -1,7 +1,7 @@ # Template file for 'python3-anyio' pkgname=python3-anyio version=3.5.0 -revision=1 +revision=2 wrksrc=anyio-${version} build_style=python3-module hostmakedepends="python3-setuptools_scm" From d7df66122370c921dd2ea1cd5a86ca7cbd9d8278 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:51 -0400 Subject: [PATCH 0122/1420] python3-certifi: rebuild for Python 3.11 --- 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 87f19c0ea0d0..46f3a56e59b7 100644 --- a/srcpkgs/python3-certifi/template +++ b/srcpkgs/python3-certifi/template @@ -1,7 +1,7 @@ # Template file for 'python3-certifi' pkgname=python3-certifi version=2022.09.24 -revision=1 +revision=2 wrksrc="python-certifi-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 811d92d21ff2912b60164219c1a7375ebd7a65eb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:51 -0400 Subject: [PATCH 0123/1420] python3-h11: rebuild for Python 3.11 --- 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 46f5603c4602..202d392a1a94 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.12.0 -revision=2 +revision=3 wrksrc=h11-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 9d53ecb18eeb1523a12aeee3e436d3af8e51aab5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:51 -0400 Subject: [PATCH 0124/1420] python3-h2: rebuild for Python 3.11 --- 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 1fae4bd23fa1..d87b3d49cf8f 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=1 +revision=2 wrksrc="h2-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 6c92fccdf3bf1ed3ca07895a46313f7d8d3959d7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:51 -0400 Subject: [PATCH 0125/1420] python3-colorama: rebuild for Python 3.11 --- 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 46f85624852d..eb6795ec7972 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.5 -revision=1 +revision=2 wrksrc="colorama-${version}" build_style=python3-module hostmakedepends="unzip python3-setuptools" From ce26967afff3955e04a8fbd71b503f202de86eba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:51 -0400 Subject: [PATCH 0126/1420] python-dbus: rebuild for Python 3.11 --- srcpkgs/python-dbus/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-dbus/template b/srcpkgs/python-dbus/template index 64c1ae021798..a77f6ab92354 100644 --- a/srcpkgs/python-dbus/template +++ b/srcpkgs/python-dbus/template @@ -1,7 +1,7 @@ # Template file for 'python-dbus' pkgname=python-dbus version=1.2.18 -revision=2 +revision=3 wrksrc="dbus-python-${version}" build_style=gnu-configure hostmakedepends="pkg-config python python3" From b98dacbacec2eb6f90439c6a911b09e97a9fb103 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:51 -0400 Subject: [PATCH 0127/1420] tdb: update to 1.4.7. --- srcpkgs/tdb/template | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/srcpkgs/tdb/template b/srcpkgs/tdb/template index 0b00f4364bf3..23bea72ec8e0 100644 --- a/srcpkgs/tdb/template +++ b/srcpkgs/tdb/template @@ -1,6 +1,6 @@ # Template file for 'tdb' pkgname=tdb -version=1.4.5 +version=1.4.7 revision=1 build_style=waf3 build_helper="qemu" @@ -15,9 +15,10 @@ maintainer="Orphaned " license="GPL-3.0-or-later" homepage="https://tdb.samba.org/" distfiles="https://download.samba.org/pub/tdb/tdb-${version}.tar.gz" -checksum=bcfced884f7031080998b5c4b1c5dce57567055f79417f86dba40dcde99a0e41 +checksum=a4fb168def533f31ff2c07f7d9844bb3131e6799f094ebe77d0380adc987c20e export PYTHON_CONFIG="${XBPS_CROSS_BASE}/usr/bin/python3-config" +export PYTHONHASHSEED=1 tdb-devel_package() { depends="libtdb-${version}_${revision}" From 6b80e5334d6058759f09cfd2dc16bc2d2bc2563f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:51 -0400 Subject: [PATCH 0128/1420] tevent: rebuild for Python 3.11 --- srcpkgs/tevent/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tevent/template b/srcpkgs/tevent/template index 89b67625d473..bfecf57e9dcc 100644 --- a/srcpkgs/tevent/template +++ b/srcpkgs/tevent/template @@ -1,7 +1,7 @@ # Template file for 'tevent' pkgname=tevent version=0.11.0 -revision=1 +revision=2 build_style=waf3 build_helper="qemu" configure_script="buildtools/bin/waf" From f570c3f899465709f65c8248dfcfff957e636aaa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:51 -0400 Subject: [PATCH 0129/1420] python3-recommonmark: rebuild for Python 3.11 --- srcpkgs/python3-recommonmark/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-recommonmark/template b/srcpkgs/python3-recommonmark/template index 8f80d966e343..a30b7e99107a 100644 --- a/srcpkgs/python3-recommonmark/template +++ b/srcpkgs/python3-recommonmark/template @@ -1,7 +1,7 @@ # Template file for 'python3-recommonmark' pkgname=python3-recommonmark version=0.7.1 -revision=2 +revision=3 wrksrc="recommonmark-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-commonmark python3-docutils From eb3361dfbe6e4a1e277a6d0487cd9445cbcda1ce Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:51 -0400 Subject: [PATCH 0130/1420] python3-sphinx-automodapi: rebuild for Python 3.11 --- 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 b86f671ff7f6..80b863dee404 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.13 -revision=2 +revision=3 wrksrc="sphinx-automodapi-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 4efa0f66c827d3a80d2ab112754d9a8c89a15ea9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:51 -0400 Subject: [PATCH 0131/1420] python3-multidict: rebuild for Python 3.11 --- srcpkgs/python3-multidict/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-multidict/template b/srcpkgs/python3-multidict/template index c87cbfc5de0c..6252218f61ce 100644 --- a/srcpkgs/python3-multidict/template +++ b/srcpkgs/python3-multidict/template @@ -1,7 +1,7 @@ # Template file for 'python3-multidict' pkgname=python3-multidict version=5.1.0 -revision=3 +revision=4 wrksrc="multidict-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 0196fa31b5d3e4da5c8bdd3d83f05404471bfd70 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:52 -0400 Subject: [PATCH 0132/1420] python3-argon2: rebuild for Python 3.11 --- 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 69f47924ad19..3fa5c4ebe3d6 100644 --- a/srcpkgs/python3-argon2/template +++ b/srcpkgs/python3-argon2/template @@ -1,7 +1,7 @@ # Template file for 'python3-argon2' pkgname=python3-argon2 version=19.2.0 -revision=3 +revision=4 wrksrc="argon2-cffi-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-cffi" From 67f5b405a63c84eebd04b7ff2385e21c05f1bb2e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:52 -0400 Subject: [PATCH 0133/1420] python3-ipython_ipykernel: rebuild for Python 3.11 --- 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 f00e0a3f1a0c..f5db4fd7b953 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=5.5.4 -revision=2 +revision=3 wrksrc="ipykernel-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-ipython From b1fa6a393eded3c7566e8976c90105e8fd495512 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:52 -0400 Subject: [PATCH 0134/1420] python3-jupyter_nbconvert: rebuild for Python 3.11 --- 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 baebe44c04ca..af955c78066a 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=6.4.5 -revision=1 +revision=2 wrksrc="nbconvert-${version}" build_style=python3-module # WebPDF export depends on unpackaged pyppeteer From d82fcf36909116aeff79ec616814a9fd800c7922 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:52 -0400 Subject: [PATCH 0135/1420] python3-prometheus_client: rebuild for Python 3.11 --- 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 fb705c818643..4b61663d5536 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.15.0 -revision=1 +revision=2 wrksrc="prometheus_client-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b1ddc384aa79c40c79f1e2d91ea02eade95ebf2b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:52 -0400 Subject: [PATCH 0136/1420] python3-send2trash: rebuild for Python 3.11 --- 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 439499f95e5f..7027d47f637a 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.0 -revision=1 +revision=2 wrksrc="send2trash-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-pytest" From 9ec66fdec2c177c3a47a4898cc3c0531d309254f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:52 -0400 Subject: [PATCH 0137/1420] python3-terminado: rebuild for Python 3.11 --- 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 28c65c82ba99..539a4ceedbf7 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.9.4 -revision=2 +revision=3 wrksrc="terminado-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 0328b44efbefc150c1cc34ad75478fb92450d5fd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:52 -0400 Subject: [PATCH 0138/1420] python3-autocommand: rebuild for Python 3.11 --- 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 099b1970a92b..7ba2cb803b32 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.1 -revision=1 +revision=2 wrksrc=autocommand-${version} build_style=python3-module hostmakedepends="python3-setuptools" From ddf85e193b03116b446b6ffcb46c20a3fe7251c6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:52 -0400 Subject: [PATCH 0139/1420] python3-inflect: rebuild for Python 3.11 --- 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 9494397a6333..1850e2fc9ff7 100644 --- a/srcpkgs/python3-inflect/template +++ b/srcpkgs/python3-inflect/template @@ -1,7 +1,7 @@ # Template file for 'python3-inflect' pkgname=python3-inflect version=6.0.1 -revision=1 +revision=2 wrksrc=inflect-${version} build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" From 775025906cdc0acd49bc6d6d4f4788f6984fea05 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:52 -0400 Subject: [PATCH 0140/1420] python3-jaraco.context: rebuild for Python 3.11 --- 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 dcd72f5723dd..ddd67db83357 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=4.1.1 -revision=1 +revision=2 wrksrc="jaraco.context-${version}" build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" From 12d89c64351ff27826150c09314ac1d12e2fa6b4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:52 -0400 Subject: [PATCH 0141/1420] python3-jaraco.functools: rebuild for Python 3.11 --- 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 bfa1dba7af4a..fdbe60876403 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=3.5.1 -revision=1 +revision=2 wrksrc="jaraco.functools-${version}" build_style=python3-pep517 make_check_args="--override-ini='addopts=--doctest-modules'" From 9a6085e5aba2c49dcc5dcf92497a285d28526cb3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:53 -0400 Subject: [PATCH 0142/1420] python3-zope.proxy: rebuild for Python 3.11 --- 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 6bbfc210da6c..d59365559b75 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=2 +revision=3 wrksrc="zope.proxy-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Sphinx" From 91eb5c38b5226f52e2b58f1d48098bd6e230614b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:53 -0400 Subject: [PATCH 0143/1420] python3-zope.event: rebuild for Python 3.11 --- 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 7ab88b3cae60..9d84e75d50ba 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=2 +revision=3 wrksrc="${pkgname#*-}-${version}" build_style=python3-module pycompile_module="zope/event" From dae62a07e8ead06b885f87c2757f27b5cfde1bd1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:01 -0400 Subject: [PATCH 0144/1420] python3-dnspython: rebuild for Python 3.11 --- 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 0a9a8eb23d8a..a76b95a6bd85 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.1.0 -revision=2 +revision=3 wrksrc="dnspython-${version}" build_style=python3-module hostmakedepends="python3-setuptools unzip" From 25e480955b769bb460445c917bcd8f914afd96a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:53 -0400 Subject: [PATCH 0145/1420] python3-gobject: rebuild for Python 3.11 --- 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 b6122dd52c10..1de8549f5e67 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.42.2 -revision=1 +revision=2 wrksrc="pygobject-${version}" build_style=meson build_helper="gir" From fa8b61d0e9da3baf041eb4834f391183e949e838 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:59 -0400 Subject: [PATCH 0146/1420] python3-pybind11: update to 2.10.1. --- srcpkgs/python3-pybind11/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-pybind11/template b/srcpkgs/python3-pybind11/template index dd3640e5f375..28ed89910040 100644 --- a/srcpkgs/python3-pybind11/template +++ b/srcpkgs/python3-pybind11/template @@ -1,6 +1,6 @@ # Template file for 'python3-pybind11' pkgname=python3-pybind11 -version=2.10.0 +version=2.10.1 revision=1 wrksrc="pybind11-${version}" build_style=python3-module @@ -13,7 +13,7 @@ maintainer="Andrew J. Hesford " license="BSD-3-Clause" homepage="https://github.com/pybind/pybind11" distfiles="https://github.com/pybind/pybind11/archive/v${version}.tar.gz" -checksum=eacf582fa8f696227988d08cfc46121770823839fe9e301a20fbce67e7cd70ec +checksum=111014b516b625083bef701df7880f78c2243835abdb263065b6b59b960b6bad post_patch() { # These dependencies are not packaged and don't affect the man page From 8580a0e56c7970357fa70a5b7a46985f54354b66 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:53 -0400 Subject: [PATCH 0147/1420] python3-cppy: rebuild for Python 3.11 --- 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 c3f2479fb9a0..9c4a4af99902 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.2.1 -revision=2 +revision=3 wrksrc="cppy-${version}" build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" From 30b41786daef1b6ddefd451ec548dc7b5a70a44c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:53 -0400 Subject: [PATCH 0148/1420] python3-PyQt-builder: rebuild for Python 3.11 --- 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 ab43bb0ccf9b..42f941f94b39 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.13.0 -revision=1 +revision=2 wrksrc=PyQt-builder-$version build_style=python3-module hostmakedepends="python3-setuptools sip" From f9d630904fb747c37eaaebc02ccf7dbad61f7db2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:53 -0400 Subject: [PATCH 0149/1420] python3-sip-PyQt5: rebuild for Python 3.11 --- 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 319aa9d2606a..e686462d845b 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.11.0 -revision=1 +revision=2 wrksrc="PyQt5_sip-$version" build_style=python3-module hostmakedepends="python3-devel python3-setuptools sip" From d8101e15448ebe147de383f08c3b829b31cc98d7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:53 -0400 Subject: [PATCH 0150/1420] python3-beniget: rebuild for Python 3.11 --- srcpkgs/python3-beniget/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-beniget/template b/srcpkgs/python3-beniget/template index 7c165d12abba..689294baffdb 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.1 -revision=1 +revision=2 wrksrc="beniget-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-gast" From 2a448a17d9cea7c14789a84ca315881736a1a56b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:53 -0400 Subject: [PATCH 0151/1420] python3-numpy: update to 1.23.4. --- 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 9961f533b45d..38d6cc0c0165 100644 --- a/srcpkgs/python3-numpy/template +++ b/srcpkgs/python3-numpy/template @@ -1,6 +1,6 @@ # Template file for 'python3-numpy' pkgname=python3-numpy -version=1.23.3 +version=1.23.4 revision=1 wrksrc="numpy-${version}" build_style=python3-module @@ -13,7 +13,7 @@ maintainer="Andrew J. Hesford " license="BSD-3-Clause" homepage="https://www.numpy.org/" distfiles="https://github.com/numpy/numpy/archive/v${version}.tar.gz" -checksum=d55da69341fd6e617ada55feec6798730457f26f08300956625c086499aced7e +checksum=3ffd7b40ebe8a316324ff0cf83b820a25a034626836e001548d09d5b63ba84a8 alternatives="numpy:f2py:/usr/bin/f2py3" # Tests do not function propery in a build directory make_check="no" From a7cdfc2af112c609f2371088af07d37b0c4698b7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:50 -0400 Subject: [PATCH 0152/1420] python3-typogrify: rebuild for Python 3.11 --- 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 f0b9a1a1ef45..9795cb7b53b9 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.0.7 -revision=2 +revision=3 wrksrc="typogrify-$version" build_style=python3-module hostmakedepends="python3-setuptools" From 1e7551c244db2669c325315db95a4cf1e3c96a34 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:54 -0400 Subject: [PATCH 0153/1420] python3-jeepney: rebuild for Python 3.11 --- 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 6cd208c70f65..dca6a551b661 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.8.0 -revision=1 +revision=2 wrksrc="jeepney-${version}" build_style=python3-pep517 hostmakedepends="python3-setuptools python3-flit_core" From e033f00d0042a037cb9191edca3795bd57c86395 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:54 -0400 Subject: [PATCH 0154/1420] python3-google-auth: rebuild for Python 3.11 --- 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 83c25cc822f7..85f25c49bcbb 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=1.28.0 -revision=2 +revision=3 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 86fe15a653b171ba41ef0943904269ee5c410151 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:54 -0400 Subject: [PATCH 0155/1420] python3-googleapis-common-protos: rebuild for Python 3.11 --- 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 79ee039ae9f2..a449daeea62e 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.53.0 -revision=2 +revision=3 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From e79f986b430d0b31b6773db0cf85b91980520159 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:54 -0400 Subject: [PATCH 0156/1420] python3-httplib2: rebuild for Python 3.11 --- 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 7e66bf376c67..eb714b59d0bf 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.18.1 -revision=4 +revision=5 create_wrksrc=yes build_wrksrc="httplib2-${version}" build_style=python3-module From a6b7560258b8f1d951c024bbee97dfeb3fc2689c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:54 -0400 Subject: [PATCH 0157/1420] python3-gmpy2: rebuild for Python 3.11 --- 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 a4f8641dd0f5..aa1af7b69c29 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.1.1 -revision=1 +revision=2 wrksrc="gmpy2-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 58959086d08d6b95d1100db168a626a6b85f9b54 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:54 -0400 Subject: [PATCH 0158/1420] python3-openssl: update to 22.1.0. --- srcpkgs/python3-openssl/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-openssl/template b/srcpkgs/python3-openssl/template index 03ec72bfcc17..89c50b28f443 100644 --- a/srcpkgs/python3-openssl/template +++ b/srcpkgs/python3-openssl/template @@ -1,6 +1,6 @@ # Template file for 'python3-openssl' pkgname=python3-openssl -version=22.0.0 +version=22.1.0 revision=1 wrksrc="pyOpenSSL-${version}" build_style=python3-module @@ -13,7 +13,7 @@ license="Apache-2.0" homepage="https://pyopenssl.org/" changelog="https://raw.githubusercontent.com/pyca/pyopenssl/master/CHANGELOG.rst" distfiles="${PYPI_SITE}/p/pyOpenSSL/pyOpenSSL-${version}.tar.gz" -checksum=660b1b1425aac4a1bea1d94168a85d99f0b3144c869dd4390d27629d0087f1bf +checksum=7a83b7b272dd595222d672f5ce29aa030f1fb837630ef229f62e72e395ce8968 if [ "$XBPS_TARGET_WORDSIZE" = "32" ]; then # https://github.com/pyca/pyopenssl/issues/974 From 06a152433bf0b8ae77e51cd39009bd99ec60bfe7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:56 -0400 Subject: [PATCH 0159/1420] python3-async-timeout: rebuild for Python 3.11 --- 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 1c4a46d1a0de..6ca8cf6ae4df 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=3.0.1 -revision=4 +revision=5 wrksrc="async-timeout-${version}" build_style=python3-module pycompile_module="async_timeout" From 08a5db0b59f6e0cc6169b8b2a5d25615000af25f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Thu, 13 Oct 2022 16:21:44 -0400 Subject: [PATCH 0160/1420] python3-deprecated: rebuild for Python 3.11 --- srcpkgs/python3-deprecated/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-deprecated/template b/srcpkgs/python3-deprecated/template index 4eb400ffd0dd..fdf5a328d99e 100644 --- a/srcpkgs/python3-deprecated/template +++ b/srcpkgs/python3-deprecated/template @@ -1,7 +1,7 @@ # Template file for 'python3-deprecated' pkgname=python3-deprecated version=1.2.13 -revision=1 +revision=2 wrksrc="deprecated-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 08b4bc7b45f61fa0efedd28560ddd3457443fda4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:54 -0400 Subject: [PATCH 0161/1420] python3-click: rebuild for Python 3.11 --- 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 a421beb2ecc9..f5582a80b6ab 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.1.3 -revision=1 +revision=2 wrksrc="click-${version}" build_style="python3-module" hostmakedepends="python3-setuptools" From 504588d11bd1163ac540d19f2af3632944805c5b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:54 -0400 Subject: [PATCH 0162/1420] python3-httpcore: rebuild for Python 3.11 --- 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 5491bf7c0cd0..c7b21a246f95 100644 --- a/srcpkgs/python3-httpcore/template +++ b/srcpkgs/python3-httpcore/template @@ -1,7 +1,7 @@ # Template file for 'python3-httpcore' pkgname=python3-httpcore version=0.15.0 -revision=1 +revision=2 wrksrc="httpcore-$version" build_style=python3-module hostmakedepends="python3-setuptools" From fca21a8ad66f8fa24e902438a8989af11612cf69 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:54 -0400 Subject: [PATCH 0163/1420] python3-rfc3986: rebuild for Python 3.11 --- 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 c816120af905..5ead63a439fa 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=1 +revision=2 wrksrc="rfc3986-$version" build_style=python3-module hostmakedepends="python3-setuptools" From 15dd43b959719df2941f448a7b1527cac03eda27 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:54 -0400 Subject: [PATCH 0164/1420] python3-rich: rebuild for Python 3.11 --- 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 fe050cf3e022..bb0266af7994 100644 --- a/srcpkgs/python3-rich/template +++ b/srcpkgs/python3-rich/template @@ -1,7 +1,7 @@ # Template file for 'python3-rich' pkgname=python3-rich version=12.6.0 -revision=1 +revision=2 wrksrc="rich-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 4dd30defa79e36e537d4b2258fb57124079f21f9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:54 -0400 Subject: [PATCH 0165/1420] python3-Werkzeug: rebuild for Python 3.11 --- 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 4fdf52d46b6b..6266881376ee 100644 --- a/srcpkgs/python3-Werkzeug/template +++ b/srcpkgs/python3-Werkzeug/template @@ -1,7 +1,7 @@ # Template file for 'python3-Werkzeug' pkgname=python3-Werkzeug version=2.2.2 -revision=2 +revision=3 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 8b177ae6805cfb54fbd72479b910ad0e966b0892 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:55 -0400 Subject: [PATCH 0166/1420] python3-itsdangerous: rebuild for Python 3.11 --- 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 b770f01eef0c..c736c3cf7881 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.1.2 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 45598c031d34e8d240dde91fb40c7859454cca96 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:55 -0400 Subject: [PATCH 0167/1420] python3-pytz_deprecation_shim: rebuild for Python 3.11 --- 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 04368a25c89e..a9782a75b544 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=1 +revision=2 wrksrc="pytz-deprecation-shim-${version}" build_style=python3-pep517 hostmakedepends="python3-wheel" From 027cd51d3365fecfe933197db5935fc73a284096 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:55 -0400 Subject: [PATCH 0168/1420] python3-notify2: rebuild for Python 3.11 --- 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 ca5b755fc203..51ce1471a689 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=4 +revision=5 wrksrc="notify2-${version}" build_style=python3-module hostmakedepends="python3" From c1d067c31c9d2cc4d35c8271379ad9cb6f2edef3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:55 -0400 Subject: [PATCH 0169/1420] python3-psutil: rebuild for Python 3.11 --- 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 7562524acabe..7aa92162246a 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.3 -revision=1 +revision=2 wrksrc="psutil-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From be9464011c7f052fdd346700092527e464479f64 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:55 -0400 Subject: [PATCH 0170/1420] glusterfs: rebuild for Python 3.11 --- srcpkgs/glusterfs/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/glusterfs/template b/srcpkgs/glusterfs/template index 9fe039d4efeb..993fde9a321c 100644 --- a/srcpkgs/glusterfs/template +++ b/srcpkgs/glusterfs/template @@ -1,7 +1,7 @@ # Template file for 'glusterfs' pkgname=glusterfs version=9.4 -revision=1 +revision=2 build_style=gnu-configure configure_args="--with-mountutildir=/usr/bin ac_cv_file__etc_debian_version=no ac_cv_file__etc_SuSE_release=no ac_cv_file__etc_redhat_release=no From 2210a61f9d1080ee118980d4f1321b428f5d4209 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:55 -0400 Subject: [PATCH 0171/1420] ldb: rebuild for Python 3.11 --- srcpkgs/ldb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ldb/template b/srcpkgs/ldb/template index a5e2c1978dd1..5cd210618312 100644 --- a/srcpkgs/ldb/template +++ b/srcpkgs/ldb/template @@ -1,7 +1,7 @@ # Template file for 'ldb' pkgname=ldb version=2.3.2 -revision=1 +revision=2 build_style=waf3 build_helper="qemu" configure_script="buildtools/bin/waf" From 126a70a28f645d9c71007fe0d88145bdde949497 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:55 -0400 Subject: [PATCH 0172/1420] llvm12: rebuild for Python 3.11 --- srcpkgs/llvm12/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/llvm12/template b/srcpkgs/llvm12/template index b7a569a3e15e..90383701fb8b 100644 --- a/srcpkgs/llvm12/template +++ b/srcpkgs/llvm12/template @@ -1,7 +1,7 @@ # Template file for 'llvm12' pkgname=llvm12 version=12.0.1 -revision=3 +revision=4 wrksrc="llvm-project-${version}.src" build_wrksrc=llvm build_style=cmake From af68f8eaf59524770fa821eb2495151604b37fad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:55 -0400 Subject: [PATCH 0173/1420] python3-elementpath: rebuild for Python 3.11 --- 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 f4e9a8267d6b..f0cb742a3a86 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=1 +revision=2 wrksrc=elementpath-${version} build_style=python3-module # depends on xmlschema and memory_profiling From b06707184c15c5a1c565993c8574eae6f85bd4d6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:55 -0400 Subject: [PATCH 0174/1420] python3-frozendict: rebuild for Python 3.11 --- srcpkgs/python3-frozendict/template | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template index 94a682fd726e..26b242fb0d01 100644 --- a/srcpkgs/python3-frozendict/template +++ b/srcpkgs/python3-frozendict/template @@ -1,9 +1,10 @@ # Template file for 'python3-frozendict' pkgname=python3-frozendict version=2.3.4 -revision=1 +revision=2 wrksrc="frozendict-${version}" build_style=python3-module +make_check_args="-k not(test_c_extension)" hostmakedepends="python3-setuptools" makedepends="python3-devel" depends="python3" @@ -15,6 +16,10 @@ homepage="https://github.com/Marco-Sulla/python-frozendict" distfiles="${PYPI_SITE}/f/frozendict/frozendict-${version}.tar.gz" checksum=15b4b18346259392b0d27598f240e9390fafbff882137a9c48a1e0104fb17f78 -do_check() { - PYTHONPATH="$(cd build/lib* && pwd)" pytest3 +do_build() { + python3 setup.py py build +} + +do_install() { + python3 setup.py py install --prefix=/usr --root="${DESTDIR}" } From d9a380eb88836e3ffae9574e3c8e3f94ac568c29 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:55 -0400 Subject: [PATCH 0175/1420] python3-simplejson: rebuild for Python 3.11 --- 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 941f5a15c810..03dc545582e4 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.17.6 -revision=1 +revision=2 wrksrc="simplejson-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From ff8ed50fb0fb60d83e309dbcb2cf46360832ecc4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:56 -0400 Subject: [PATCH 0176/1420] python3-poetry-core: rebuild for Python 3.11 --- 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 760493d3d33c..f0616fe31225 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=1.3.1 -revision=1 +revision=2 wrksrc="poetry-core-${version}" build_style="python3-pep517" make_check_args="--deselect tests/masonry/builders/test_sdist.py::test_default_with_excluded_data From 85da74ac66a57b70ec4cb82816dd7b7dc41b3382 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:56 -0400 Subject: [PATCH 0177/1420] python-automat: rebuild for Python 3.11 --- srcpkgs/python-automat/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-automat/template b/srcpkgs/python-automat/template index 3487b14abce8..294f164e0c97 100644 --- a/srcpkgs/python-automat/template +++ b/srcpkgs/python-automat/template @@ -1,7 +1,7 @@ # Template file for 'python-automat' pkgname=python-automat version=20.2.0 -revision=4 +revision=5 wrksrc="Automat-${version}" build_style=python-module hostmakedepends="python-setuptools python3-setuptools" From ca89f69dc35960a3bb25b42a41d0a16f0bb27d03 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:56 -0400 Subject: [PATCH 0178/1420] python-constantly: rebuild for Python 3.11 --- srcpkgs/python-constantly/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-constantly/template b/srcpkgs/python-constantly/template index 51d9a9f25fef..f4eb1fffd776 100644 --- a/srcpkgs/python-constantly/template +++ b/srcpkgs/python-constantly/template @@ -1,7 +1,7 @@ # Template file for 'python-constantly' pkgname=python-constantly version=15.1.0 -revision=6 +revision=7 wrksrc="constantly-${version}" build_style=python-module pycompile_module="constantly" From 4934ccea0b4b6050cdd3802da39c757401479904 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:56 -0400 Subject: [PATCH 0179/1420] python-hyperlink: rebuild for Python 3.11 --- srcpkgs/python-hyperlink/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-hyperlink/template b/srcpkgs/python-hyperlink/template index c2e4a6e1d058..065788e17739 100644 --- a/srcpkgs/python-hyperlink/template +++ b/srcpkgs/python-hyperlink/template @@ -1,7 +1,7 @@ # Template file for 'python-hyperlink' pkgname=python-hyperlink version=21.0.0 -revision=2 +revision=3 wrksrc="hyperlink-${version}" build_style=python-module hostmakedepends="python-setuptools python3-setuptools" From 2e0ced6cf4af26578bdb935b0d50f67e5fbba62c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:56 -0400 Subject: [PATCH 0180/1420] python-incremental: rebuild for Python 3.11 --- srcpkgs/python-incremental/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-incremental/template b/srcpkgs/python-incremental/template index 900b83f5f774..79f67b607a5d 100644 --- a/srcpkgs/python-incremental/template +++ b/srcpkgs/python-incremental/template @@ -1,7 +1,7 @@ # Template file for 'python-incremental' pkgname=python-incremental version=21.3.0 -revision=1 +revision=2 wrksrc="incremental-${version}" build_style=python-module hostmakedepends="python-setuptools python3-setuptools" From 78bbcfc0b68e6bfc0cfbf397866f4c5c1855fed9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:56 -0400 Subject: [PATCH 0181/1420] python-service_identity: rebuild for Python 3.11 --- srcpkgs/python-service_identity/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-service_identity/template b/srcpkgs/python-service_identity/template index b0cb27dfbea1..9293cbab59ce 100644 --- a/srcpkgs/python-service_identity/template +++ b/srcpkgs/python-service_identity/template @@ -1,7 +1,7 @@ # Template file for 'python-service_identity' pkgname=python-service_identity version=18.1.0 -revision=5 +revision=6 wrksrc="service_identity-${version}" build_style=python-module pycompile_module="service_identity" From a4a970284ae745e6e1ef9bec20ff8ce87af94ce4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:56 -0400 Subject: [PATCH 0182/1420] python3-chardet: rebuild for Python 3.11 --- 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 44fab1032e6a..530302912ff6 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.0.0 -revision=1 +revision=2 wrksrc="chardet-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 8346ddda83d1b3a065f45792c82ea93b7ddc6601 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:56 -0400 Subject: [PATCH 0183/1420] python3-yarl: update to 1.8.1. --- srcpkgs/python3-yarl/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-yarl/template b/srcpkgs/python3-yarl/template index a98eebdcbbd1..2e783b866421 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.6.3 -revision=2 +version=1.8.1 +revision=1 wrksrc="yarl-${version}" build_style=python3-module pycompile_module="yarl" @@ -14,7 +14,7 @@ maintainer="Michael Aldridge " license="Apache-2.0" homepage="https://yarl.readthedocs.io/" distfiles="${PYPI_SITE}/y/yarl/yarl-${version}.tar.gz" -checksum=8a9066529240171b68893d60dca86a763eae2139dd42f42106b03cf4b426bf10 +checksum=af887845b8c2e060eb5605ff72b6f2dd2aab7a761379373fd89d314f4752abbf do_check() { vsed -e '/addopts/d' -i setup.cfg From 006a78881b7474f784a51fcc9461e4c786c80124 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:56 -0400 Subject: [PATCH 0184/1420] python3-jupyter_notebook: rebuild for Python 3.11 --- srcpkgs/python3-jupyter_notebook/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jupyter_notebook/template b/srcpkgs/python3-jupyter_notebook/template index d7e7230fdf93..b0afe891bd6a 100644 --- a/srcpkgs/python3-jupyter_notebook/template +++ b/srcpkgs/python3-jupyter_notebook/template @@ -1,7 +1,7 @@ # Template file for 'python3-jupyter_notebook' pkgname=python3-jupyter_notebook version=6.4.10 -revision=1 +revision=2 wrksrc="notebook-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 430d4254c79aa438e62359777951b10c6369d40d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:57 -0400 Subject: [PATCH 0185/1420] python3-jaraco.classes: rebuild for Python 3.11 --- 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 f0805e3a7ded..92557e940f4a 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.2.1 -revision=1 +revision=2 wrksrc="jaraco.classes-${version}" build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" From 79ada4b5d504410088b4c7a1cb2d18c40ecfafde Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:57 -0400 Subject: [PATCH 0186/1420] python3-jaraco.text: rebuild for Python 3.11 --- 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 cc91beba6b8c..f145e6e8e999 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=3.9.1 -revision=1 +revision=2 wrksrc="jaraco.text-${version}" build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" From d9e7787fe5a364674810d160adfd1a5ae8741786 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:57 -0400 Subject: [PATCH 0187/1420] python3-tempora: rebuild for Python 3.11 --- 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 3fb249bf2b1f..9d837665e84a 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.0.1 -revision=1 +revision=2 wrksrc="tempora-${version}" build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" From ab46d29555b18866292f72f142201d492ce2046f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:57 -0400 Subject: [PATCH 0188/1420] python3-websocket-client: rebuild for Python 3.11 --- 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 d2ff94f31be7..b7be2e6aa354 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.2.1 -revision=3 +revision=4 wrksrc="websocket-client-${version}" build_style=python3-module make_check_target="websocket/tests" From aa68f967a478610c40ab0f2311dd93121352830c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:57 -0400 Subject: [PATCH 0189/1420] xcb-proto: rebuild for Python 3.11 --- 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 f32af68c5ca1..89d6a90550a6 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.14.1 -revision=3 +revision=4 wrksrc="xcbproto-${pkgname}-${version}" build_style=gnu-configure hostmakedepends="python3 automake" From a0b1ffff7e5cae8c409f89ccb8e3656386e9b021 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:57 -0400 Subject: [PATCH 0190/1420] python3-log_symbols: rebuild for Python 3.11 --- 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 81f8d9354d1d..b8f98f2d56e1 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=1 +revision=2 wrksrc="log_symbols-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d0e902f9049e0d426c8bca70389cf2517f0d89b4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:57 -0400 Subject: [PATCH 0191/1420] python3-spinners: rebuild for Python 3.11 --- 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 dd5b4c58f52c..957c3ffcc7d2 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=1 +revision=2 wrksrc="spinners-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 197af8ea9495c00aa39fbe166f8618f534c079d8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:57 -0400 Subject: [PATCH 0192/1420] python3-termcolor: rebuild for Python 3.11 --- 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 dbb215aa5be3..a4bb40b36c9c 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=9 +revision=10 wrksrc="termcolor-${version}" build_style=python3-module hostmakedepends="python3-devel" From 121a643cefc4240e9ab302af3fe0a6cb91d16731 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:57 -0400 Subject: [PATCH 0193/1420] python3-zope.deferredimport: rebuild for Python 3.11 --- 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 90a24728c62c..d91cee18954d 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=4 +revision=5 wrksrc="zope.deferredimport-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From be9074729417c170f467d47f0b9d8352bcd9670f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:57 -0400 Subject: [PATCH 0194/1420] python3-zope.deprecation: rebuild for Python 3.11 --- 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 b3b526cfa6cc..5792b903c98b 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=5 +revision=6 wrksrc="zope.deprecation-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a0c2b74bc75dd3c29fc4db39bd991b0e6ed1badb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:57 -0400 Subject: [PATCH 0195/1420] python3-zope.hookable: rebuild for Python 3.11 --- 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 fab2b231dd96..fac83bd9e747 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=1 +revision=2 wrksrc="zope.hookable-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 54664fcc418db6235c40bc6c6e102ae44bc24984 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:58 -0400 Subject: [PATCH 0196/1420] python3-zope.i18nmessageid: rebuild for Python 3.11 --- 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 80ea1d4d9b77..61bb8cabd580 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=3 +revision=4 wrksrc="zope.i18nmessageid-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Sphinx" From 3122c47ea1eca5c4c07a83c46aa18e50d89cb0b4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:58 -0400 Subject: [PATCH 0197/1420] python3-zope.schema: rebuild for Python 3.11 --- 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 3dc9607fe80b..75d4618a64c4 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=3 +revision=4 wrksrc=zope.schema-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 738fb2181f31c7808d1d2b52e4ad3f89d99200d6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:58 -0400 Subject: [PATCH 0198/1420] python3-repoze.sphinx.autointerface: rebuild for Python 3.11 --- 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 7372f8e39ca7..ed0f97b5dfd7 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=5 +revision=6 wrksrc="repoze.sphinx.autointerface-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 4294e4c5ae8495294501f99c48a0817e53973c38 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:58 -0400 Subject: [PATCH 0199/1420] python3-pkgconfig: rebuild for Python 3.11 --- 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 e97685d9ca4e..e8ef84a8437c 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.4 -revision=1 +revision=2 wrksrc="pkgconfig-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 39de1a57d831f1bcaab0d4fb891d33fa2ddbfd33 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:58 -0400 Subject: [PATCH 0200/1420] python3-ntlm-auth: rebuild for Python 3.11 --- 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 eff908fe61f0..5208e6f071d0 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=3 +revision=4 wrksrc="ntlm-auth-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 81be746fcec078143a2c6543eb5e46c9cfdac93d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:58 -0400 Subject: [PATCH 0201/1420] python3-bcrypt: rebuild for Python 3.11 --- 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 6f70ab52044d..77e73fe14cfd 100644 --- a/srcpkgs/python3-bcrypt/template +++ b/srcpkgs/python3-bcrypt/template @@ -1,7 +1,7 @@ # Template file for 'python3-bcrypt' pkgname=python3-bcrypt version=3.2.0 -revision=3 +revision=4 wrksrc="bcrypt-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-cffi" From 9b6d55c0ff5e547d27fbfac6f3c709cfe9e2b5a3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:58 -0400 Subject: [PATCH 0202/1420] python3-pynacl: rebuild for Python 3.11 --- 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 9e2841761822..f8366b128a28 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=1 +revision=2 wrksrc="PyNaCl-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-cffi python3-wheel" From 05d313097472a6ee9ec688174dd47f29f0b490d9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Thu, 13 Oct 2022 16:42:10 -0400 Subject: [PATCH 0203/1420] python3-email-validator: rebuild for Python 3.11 --- 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 392ca4de80ed..dbd03cdcaf55 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=1.3.0 -revision=1 +revision=2 wrksrc="python-email-validator-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 4259301820eaf786e11a3d573afde2960220f58a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:58 -0400 Subject: [PATCH 0204/1420] python3-pycares: rebuild for Python 3.11 --- 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 54a92acad1a3..a2e6d6a302f6 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=4 +revision=5 wrksrc="pycares-${version}" build_style=python3-module # using bundled c-ares which is patched for TTL support From 2ee3411eb3703e82825659f56d0630218f9075a9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:58 -0400 Subject: [PATCH 0205/1420] python3-olefile: rebuild for Python 3.11 --- 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 2a1b2c597be5..6d274998c945 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=6 +revision=7 wrksrc="olefile-${version}" build_style=python3-module hostmakedepends="unzip python3-setuptools" From 877719c8c1d5d55cb3f6aafe73df4d2425eb013a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:58 -0400 Subject: [PATCH 0206/1420] python3-future: rebuild for Python 3.11 --- 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 01d76b17c93d..3d223b75e282 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.2 -revision=5 +revision=6 wrksrc="future-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 92ac87f7e3c739d1801fa9ad0edf266fc19c0575 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:59 -0400 Subject: [PATCH 0207/1420] xapps: rebuild for Python 3.11 --- srcpkgs/xapps/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xapps/template b/srcpkgs/xapps/template index 7ea3e665cd41..822a46c84b2a 100644 --- a/srcpkgs/xapps/template +++ b/srcpkgs/xapps/template @@ -1,7 +1,7 @@ # Template file for 'xapps' pkgname=xapps version=2.2.14 -revision=1 +revision=2 wrksrc="xapp-${version}" build_style=meson build_helper="gir" From e274a6ef5653f529a3bd121bc728c89707ec6e35 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:59 -0400 Subject: [PATCH 0208/1420] python3-ifaddr: rebuild for Python 3.11 --- 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 eda0bb352d87..006eeea12d83 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=3 +revision=4 wrksrc="ifaddr-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b961a9ee2b0e8acc459eca34a04dc66bf16cae2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Wed, 21 Sep 2022 19:24:56 +0700 Subject: [PATCH 0209/1420] boost: revbump for Python 3.11 --- common/shlibs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/shlibs b/common/shlibs index ce7713a2564b..589ea5d96cfc 100644 --- a/common/shlibs +++ b/common/shlibs @@ -661,7 +661,7 @@ libboost_fiber.so.1.80.0 libboost_fiber1.80-1.80.0_1 libboost_stacktrace_noop.so.1.80.0 libboost_stacktrace_noop1.80-1.80.0_1 libboost_stacktrace_addr2line.so.1.80.0 libboost_stacktrace_addr2line1.80-1.80.0_1 libboost_stacktrace_basic.so.1.80.0 libboost_stacktrace_basic1.80-1.80.0_1 -libboost_python310.so.1.80.0 boost-python3-1.80-1.80.0_1 +libboost_python311.so.1.80.0 boost-python3-1.80-1.80.0_3 libexempi.so.8 exempi-2.5.0_1 libatasmart.so.4 libatasmart-0.17_1 libsgutils2-1.45.so.2 libsgutils-1.45_1 From 99eab37bba27055b479822ec54e9e5bb2d1cc76a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:59 -0400 Subject: [PATCH 0210/1420] fonttools: update to 4.37.4. --- srcpkgs/fonttools/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/fonttools/template b/srcpkgs/fonttools/template index c9531c950b5f..4d3fba6a57d3 100644 --- a/srcpkgs/fonttools/template +++ b/srcpkgs/fonttools/template @@ -1,6 +1,6 @@ # Template file for 'fonttools' pkgname=fonttools -version=4.37.3 +version=4.37.4 revision=1 build_style=python3-module make_check_args="--deselect Tests/otlLib/optimize_test.py::test_main @@ -14,7 +14,7 @@ license="MIT, OFL-1.1, BSD-3-Clause" homepage="https://github.com/fonttools/fonttools" changelog="https://raw.githubusercontent.com/fonttools/fonttools/main/NEWS.rst" distfiles="https://github.com/fonttools/fonttools/archive/${version}.tar.gz" -checksum=52fb654cfb4ec295179d6513f25e6b05bc8268e418e59da7c59874abd372b138 +checksum=811389458954ff6fe3a503b11c00eccc202019b9dfe42c85de59365a45e7855d replaces="python-fonttools>=0 python3-fonttools>=0" provides="python-fonttools-${version}_${revision} python3-fonttools-${version}_${revision}" From 303af03a8986ff76b69aeb60d844b02b1c06b442 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:59 -0400 Subject: [PATCH 0211/1420] python3-Pillow: update to 9.3.0. --- srcpkgs/python3-Pillow/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-Pillow/template b/srcpkgs/python3-Pillow/template index 418cb33f2ad2..ab88454eeab0 100644 --- a/srcpkgs/python3-Pillow/template +++ b/srcpkgs/python3-Pillow/template @@ -1,6 +1,6 @@ # Template file for 'python3-Pillow' pkgname=python3-Pillow -version=9.2.0 +version=9.3.0 revision=1 wrksrc="Pillow-${version}" build_style=python3-module @@ -15,7 +15,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=75e636fd3e0fb872693f23ccb8a5ff2cd578801251f3a4f6854c6a5d437d3c04 +checksum=c935a22a557a560108d780f9a0fc426dd7459940dc54faa49d83249c8d3e760f post_install() { vlicense LICENSE From 920efc93842b1bb3657c5b8f2f0877f4d6e280ba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Thu, 13 Oct 2022 16:21:43 -0400 Subject: [PATCH 0212/1420] python3-contourpy: rebuild for Python 3.11 --- 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 84fb3c9d6afe..f50df9227218 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.0.5 -revision=1 +revision=2 wrksrc="contourpy-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-pybind11" From 77a39987636c6e453b7a5ee7a0b21906d7315c07 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:59 -0400 Subject: [PATCH 0213/1420] python3-cycler: rebuild for Python 3.11 --- 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 f05b7644660a..d533c9f84975 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.10.0 -revision=8 +revision=9 wrksrc="cycler-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From bd8fcbfa03dc100a787da3ed3030134cc2c5a6e1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:59 -0400 Subject: [PATCH 0214/1420] python3-kiwisolver: rebuild for Python 3.11 --- 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 eec1ac337ac3..298617413647 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.3.1 -revision=3 +revision=4 wrksrc="kiwisolver-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-cppy" From b33604873424d5be1d608b65c028b3fe724e3e19 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:59 -0400 Subject: [PATCH 0215/1420] python3-PyOpenGL: rebuild for Python 3.11 --- 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 39b11b78badd..ae7ff654b972 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.5 -revision=4 +revision=5 wrksrc="PyOpenGL-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 787bdac81da411d7bab3a6050ab67cf266147244 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:59 -0400 Subject: [PATCH 0216/1420] python3-PyQt5: rebuild for Python 3.11 --- 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 645eecfb260f..19da2544c4d6 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.7 -revision=1 +revision=2 _sipver=12.8.0 wrksrc="PyQt5-${version}" build_style=sip-build From 4c27ae220f5bb3ead44f19d3f066377458a3137d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:59 -0400 Subject: [PATCH 0217/1420] pythran: rebuild for Python 3.11 --- srcpkgs/pythran/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pythran/template b/srcpkgs/pythran/template index 1a72714ba131..33dcea7153a9 100644 --- a/srcpkgs/pythran/template +++ b/srcpkgs/pythran/template @@ -1,7 +1,7 @@ # Template file for 'pythran' pkgname=pythran version=0.12.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-ply python3-gast python3-beniget python3-numpy" From 7d6cea3b3ad2c4a2312dd14f1027c3a5da3f3525 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:00 -0400 Subject: [PATCH 0218/1420] python3-cheetah3: rebuild for Python 3.11 --- 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 1c07bcc8bcbb..460765a4253c 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.2.6.post2 -revision=2 +revision=3 wrksrc="Cheetah3-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d5f91bcd79d757d1293b9cb13aee49dcf2d5f98e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:53 -0400 Subject: [PATCH 0219/1420] gi-docgen: rebuild for Python 3.11 --- 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 98bfb62ffb34..3a6f93be871b 100644 --- a/srcpkgs/gi-docgen/template +++ b/srcpkgs/gi-docgen/template @@ -1,7 +1,7 @@ # Template file for 'gi-docgen' pkgname=gi-docgen version=2022.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-Pygments python3-typogrify python3-Jinja2 python3-toml From 93b06507b432ac34e49cedf0fb9ddf1d756b73d0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:00 -0400 Subject: [PATCH 0220/1420] glade3: rebuild for Python 3.11 --- srcpkgs/glade3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/glade3/template b/srcpkgs/glade3/template index a0235c1faef9..1055687773f6 100644 --- a/srcpkgs/glade3/template +++ b/srcpkgs/glade3/template @@ -1,7 +1,7 @@ # Template file for 'glade3' pkgname=glade3 version=3.38.2 -revision=1 +revision=2 wrksrc="glade-${version}" build_style=meson build_helper="gir qemu" From a8b8413b61a384aeefef5679f5283c44898a4b52 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:00 -0400 Subject: [PATCH 0221/1420] python3-isodate: rebuild for Python 3.11 --- 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 29f2160953fd..2e8304e6e4df 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.6.1 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From bfa7349018bcbf8da10e23b04fbff057ab31a088 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:00 -0400 Subject: [PATCH 0222/1420] python3-SecretStorage: rebuild for Python 3.11 --- 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 1ad018612877..3e90c7a38be9 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.1 -revision=2 +revision=3 wrksrc="SecretStorage-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From f781af0df701e47973d6ee802e74c3333b4c2559 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:00 -0400 Subject: [PATCH 0223/1420] python3-precis-i18n: rebuild for Python 3.11 --- 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 9ef4da948b7a..35f2d9865a0b 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.0.1 -revision=4 +revision=5 wrksrc="precis_i18n-${version}" build_style=python3-module pycompile_module="precis_i18n" From c65cd208b2c75d10b12d83145469797afdbc5f00 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:00 -0400 Subject: [PATCH 0224/1420] python3-google-api-core: rebuild for Python 3.11 --- 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 dec4bbf44e36..90dd46599aaf 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=1.26.2 -revision=2 +revision=3 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 57f6e647d92e48b743042fc341fcca1ff9b26f73 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:00 -0400 Subject: [PATCH 0225/1420] python3-google-auth-httplib2: rebuild for Python 3.11 --- 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 4406a90aad96..ac4b8a61b5fc 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=2 +revision=3 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 0c5b48f85a5e655f814cc39db2a5fa9d82deed26 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:00 -0400 Subject: [PATCH 0226/1420] python3-uritemplate: rebuild for Python 3.11 --- 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 edf175c413c0..f8dc918015fb 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=5 +revision=6 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d78cba67be798e18941caf8f69f8a5c88082a3a2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:00 -0400 Subject: [PATCH 0227/1420] python3-orderedmultidict: rebuild for Python 3.11 --- 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 fab5a7831fb3..36ad801b7822 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=3 +revision=4 wrksrc="orderedmultidict-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d6f79ff5ddc880b9c898c3e801bc5eeaa4c5d2cb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:00 -0400 Subject: [PATCH 0228/1420] python3-WebOb: rebuild for Python 3.11 --- 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 19e796676a07..e5a44d82efd4 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=4 +revision=5 wrksrc="WebOb-${version}" build_style=python3-module pycompile_module="webob" From 199c5bd5feb90fbf86f0968c3a42a50b2ba20474 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:01 -0400 Subject: [PATCH 0229/1420] sip4: rebuild for Python 3.11 --- srcpkgs/sip4/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sip4/template b/srcpkgs/sip4/template index 25afa57065d0..4b71958e5a62 100644 --- a/srcpkgs/sip4/template +++ b/srcpkgs/sip4/template @@ -1,7 +1,7 @@ # Template file for 'sip4' pkgname=sip4 version=4.19.25 -revision=2 +revision=3 wrksrc="sip-$version" hostmakedepends="python3-devel" makedepends="${hostmakedepends}" From 8224e05e116ddbaf90d19a653d1c82742991a2a5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:01 -0400 Subject: [PATCH 0230/1420] python3-utils: rebuild for Python 3.11 --- 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 a4db83649ac7..7f9e124b607c 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.1.0 -revision=1 +revision=2 wrksrc="python-utils-${version}" build_style=python3-module # skip coverage and mypy tests https://github.com/WoLpH/python-utils/issues/29 From 21cb28f4cb693f5507668751f9f1656330a59a2a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:01 -0400 Subject: [PATCH 0231/1420] python3-mpmath: rebuild for Python 3.11 --- 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 edd45ee5b6e8..87c2455898d6 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.2.1 -revision=3 +revision=4 wrksrc="mpmath-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From e1993c199d463cf8d1f75b5ad962f2eeab26b9bd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:01 -0400 Subject: [PATCH 0232/1420] python3-josepy: rebuild for Python 3.11 --- 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 6df2673629f2..6233e46714f5 100644 --- a/srcpkgs/python3-josepy/template +++ b/srcpkgs/python3-josepy/template @@ -1,7 +1,7 @@ # Template file for 'python3-josepy' pkgname=python3-josepy version=1.13.0 -revision=1 +revision=2 wrksrc="josepy-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 33a26dcbbfb6de6a43f9cc6136a1b56951e2b232 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:01 -0400 Subject: [PATCH 0233/1420] python3-pyrfc3339: rebuild for Python 3.11 --- 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 f32a7f66df96..45ad956cc94a 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=5 +revision=6 wrksrc="pyRFC3339-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a1d277493ccbd1b77364b60b9c92f873d0a58873 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:01 -0400 Subject: [PATCH 0234/1420] python3-requests-toolbelt: rebuild for Python 3.11 --- 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 ea3f102ac4c4..d22cb0c973d8 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=0.9.1 -revision=5 +revision=6 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From c039ec328c82a657adfe1434d1635b8a1f979a39 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:01 -0400 Subject: [PATCH 0235/1420] python3-greenlet: rebuild for Python 3.11 --- srcpkgs/python3-greenlet/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-greenlet/template b/srcpkgs/python3-greenlet/template index 3b0979449ba5..880a89591a3c 100644 --- a/srcpkgs/python3-greenlet/template +++ b/srcpkgs/python3-greenlet/template @@ -1,7 +1,7 @@ # Template file for 'python3-greenlet' pkgname=python3-greenlet version=1.1.3 -revision=1 +revision=2 wrksrc="greenlet-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 39f0500fbe252811f39f58fd62e35b286c772c09 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:01 -0400 Subject: [PATCH 0236/1420] python3-sgmllib: rebuild for Python 3.11 --- 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 c1427cbc6d57..374345fb8839 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=2 +revision=3 wrksrc="sgmllib3k-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 3855ea4d71c79b1c9108587687aae707c4975c6f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:01 -0400 Subject: [PATCH 0237/1420] python3-jmespath: rebuild for Python 3.11 --- 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 397a78d7eea0..1d3b6fbf88c5 100644 --- a/srcpkgs/python3-jmespath/template +++ b/srcpkgs/python3-jmespath/template @@ -1,7 +1,7 @@ # Template file for 'python3-jmespath' pkgname=python3-jmespath version=0.10.0 -revision=4 +revision=5 wrksrc="jmespath.py-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 875a6515f1ded04bbfdf5773a9ac376b17d034a0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:02 -0400 Subject: [PATCH 0238/1420] python3-pyscard: rebuild for Python 3.11 --- 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 a2bfb1dd112b..74f5c7417aff 100644 --- a/srcpkgs/python3-pyscard/template +++ b/srcpkgs/python3-pyscard/template @@ -2,7 +2,7 @@ pkgname=python3-pyscard _pkgname=pyscard version=2.0.2 -revision=1 +revision=2 wrksrc="${_pkgname}-${version}" build_style=python3-module hostmakedepends="python3-setuptools swig" From c8f80e00aecf78d97513d9447090863e41d1b03f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:02 -0400 Subject: [PATCH 0239/1420] python3-pycountry: rebuild for Python 3.11 --- 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 ab364f365741..bba5ea3c7bf7 100644 --- a/srcpkgs/python3-pycountry/template +++ b/srcpkgs/python3-pycountry/template @@ -1,7 +1,7 @@ # Template file for 'python3-pycountry' pkgname=python3-pycountry version=19.8.18 -revision=4 +revision=5 wrksrc="pycountry-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 57806e06da092c47c7d24a9dae546c3e52ffa84f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:20 -0400 Subject: [PATCH 0240/1420] python3-redis: rebuild for Python 3.11 --- srcpkgs/python3-redis/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-redis/template b/srcpkgs/python3-redis/template index 86d803932946..470ef90b327f 100644 --- a/srcpkgs/python3-redis/template +++ b/srcpkgs/python3-redis/template @@ -1,7 +1,7 @@ # Template file for 'python3-redis' pkgname=python3-redis version=4.3.4 -revision=1 +revision=2 wrksrc="redis-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 34f6e030b174271c259a0a80a63a9bdd1393c721 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:02 -0400 Subject: [PATCH 0241/1420] python3-httpx: rebuild for Python 3.11 --- 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 4d158e58bd1d..c22a36549f37 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.23.0 -revision=1 +revision=2 wrksrc="httpx-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From c52ac5f519dcc5e8ec2a9243930e6ef03a2d9984 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= Date: Fri, 23 Sep 2022 00:25:44 +0700 Subject: [PATCH 0242/1420] python3-ruamel.yaml.clib: rebuild for Python 3.11 --- srcpkgs/python3-ruamel.yaml.clib/template | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/srcpkgs/python3-ruamel.yaml.clib/template b/srcpkgs/python3-ruamel.yaml.clib/template index 0e11cddd19e3..28e0b6ffa4f3 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.7 -revision=1 +revision=2 wrksrc="ruamel.yaml.clib-${version}" build_style=python3-module hostmakedepends="python3-setuptools" @@ -15,10 +15,7 @@ distfiles="${PYPI_SITE}/r/ruamel.yaml.clib/ruamel.yaml.clib-${version}.tar.gz" checksum=1f08fd5a2bea9c4180db71678e850b995d2a5f4537be0e94557668cf0f5f9497 export RUAMEL_NO_PIP_INSTALL_CHECK=1 - -do_check() { - : test not found -} +make_check=no post_install() { vlicense LICENSE From 330fc757cbf7d3d4e7750f782d53e4e493725047 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:02 -0400 Subject: [PATCH 0243/1420] python3-XlsxWriter: rebuild for Python 3.11 --- 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 d779b85ceaf9..85afc61c8379 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=3 +revision=4 wrksrc="XlsxWriter-RELEASE_${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 28680c1c2ae1fe27e47402128bfdfcab4ab34cf3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:02 -0400 Subject: [PATCH 0244/1420] python3-click-plugins: rebuild for Python 3.11 --- 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 3fffc0e849fc..9ea2fa05f914 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=4 +revision=5 wrksrc="click-plugins-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 1c181e0319fe883fdafeaedbe28145f3dae7b418 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:02 -0400 Subject: [PATCH 0245/1420] python3-Flask: rebuild for Python 3.11 --- 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 2ae848ecab9a..a7a8d4877242 100644 --- a/srcpkgs/python3-Flask/template +++ b/srcpkgs/python3-Flask/template @@ -1,7 +1,7 @@ # Template file for 'python3-Flask' pkgname=python3-Flask version=2.2.2 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From af5b4b549b3e83a8ff8cd68fd7a3ef86daa4437f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:02 -0400 Subject: [PATCH 0246/1420] python3-aniso8601: rebuild for Python 3.11 --- 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 7f1bef3f2180..694c5319f637 100644 --- a/srcpkgs/python3-aniso8601/template +++ b/srcpkgs/python3-aniso8601/template @@ -1,7 +1,7 @@ # Template file for 'python3-aniso8601' pkgname=python3-aniso8601 version=9.0.1 -revision=2 +revision=3 wrksrc="aniso8601-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a44ba99a4ac2d112524b37b464f4a7eb4513535f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:02 -0400 Subject: [PATCH 0247/1420] python-pbr: rebuild for Python 3.11 --- srcpkgs/python-pbr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-pbr/template b/srcpkgs/python-pbr/template index 0a3c0dd98037..f3d616897dfa 100644 --- a/srcpkgs/python-pbr/template +++ b/srcpkgs/python-pbr/template @@ -1,7 +1,7 @@ # Template file for 'python-pbr' pkgname=python-pbr version=5.6.0 -revision=1 +revision=2 wrksrc="pbr-${version}" build_style=python-module pycompile_module="pbr" From 845b23318842a23d1a5d2e53b74c0a4654885542 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:02 -0400 Subject: [PATCH 0248/1420] python3-yaml: rebuild for Python 3.11 --- 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 7d978c23c91c..6dd23209a358 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 -revision=1 +revision=2 wrksrc="PyYAML-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" From b7c3d89d90ed4c9d1fb465ab4975782ed1685543 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:02 -0400 Subject: [PATCH 0249/1420] python3-tzlocal: rebuild for Python 3.11 --- 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 7b40a12dfe4a..829ee8fc8d69 100644 --- a/srcpkgs/python3-tzlocal/template +++ b/srcpkgs/python3-tzlocal/template @@ -1,7 +1,7 @@ # Template file for 'python3-tzlocal' pkgname=python3-tzlocal version=4.2 -revision=1 +revision=2 wrksrc="tzlocal-${version}" build_style=python3-pep517 hostmakedepends="python3-wheel" From 7f47dbfa5554c07be4d74037c75a5a04b98333ea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:03 -0400 Subject: [PATCH 0250/1420] python3-distlib: update to 0.3.6. --- srcpkgs/python3-distlib/template | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/srcpkgs/python3-distlib/template b/srcpkgs/python3-distlib/template index 1ffc5f24dc5b..b4976b7a07ed 100644 --- a/srcpkgs/python3-distlib/template +++ b/srcpkgs/python3-distlib/template @@ -1,18 +1,19 @@ # Template file for 'python3-distlib' pkgname=python3-distlib -version=0.3.4 +version=0.3.6 revision=1 wrksrc="distlib-${version}" -build_style=python3-module -hostmakedepends="python3-setuptools" +build_style=python3-pep517 +hostmakedepends="python3-setuptools python3-wheel" depends="python3" +checkdepends="python3-pytest-xdist" short_desc="Low-level components of distutils2/packaging, with higher-level APIs" maintainer="Piotr Wójcik " license="Python-2.0" -homepage="https://bitbucket.org/pypa/distlib" -changelog="https://bitbucket.org/pypa/distlib/raw/master/CHANGES.rst" -distfiles="${PYPI_SITE}/d/distlib/distlib-${version}.zip" -checksum=e4b58818180336dc9c529bfb9a0b58728ffc09ad92027a3f30b7cd91e3458579 +homepage="https://distlib.readthedocs.io/" +changelog="https://raw.githubusercontent.com/pypa/distlib/master/CHANGES.rst" +distfiles="${PYPI_SITE}/d/distlib/distlib-${version}.tar.gz" +checksum=14bad2d9b04d3a36127ac97f30b12a19268f211063d8f8ee4f47108896e11b46 pre_check() { vsed -i -e "/self.assertFalse(self.fileop.is_writable/s/False/True/" tests/test_util.py From 763a7ef7621b924d4cfff7e0e8adea9f494ba89f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:03 -0400 Subject: [PATCH 0251/1420] python3-filelock: rebuild for Python 3.11 --- 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 6612043f2eeb..977a7f9e0e3f 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.7.1 -revision=1 +revision=2 wrksrc="filelock-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From bf3ff64e58b9f9792cfb406caccc6ed5dd3854bd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:03 -0400 Subject: [PATCH 0252/1420] python3-platformdirs: rebuild for Python 3.11 --- 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 f99f2f38c1cc..16cfd631d9c8 100644 --- a/srcpkgs/python3-platformdirs/template +++ b/srcpkgs/python3-platformdirs/template @@ -1,7 +1,7 @@ # Template file for 'python3-platformdirs' pkgname=python3-platformdirs version=2.5.2 -revision=1 +revision=2 wrksrc="platformdirs-${version}" build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" From f2d663cfff352a4eb202654764c6bf8bc1784cfd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 4 Oct 2022 20:08:47 -0400 Subject: [PATCH 0253/1420] apparmor: rebuild for Python 3.11 --- srcpkgs/apparmor/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template index 96a2faa314e0..eb113674626a 100644 --- a/srcpkgs/apparmor/template +++ b/srcpkgs/apparmor/template @@ -1,7 +1,7 @@ # Template file for 'apparmor' pkgname=apparmor version=3.0.3 -revision=3 +revision=4 wrksrc="${pkgname}-v${version}" build_wrksrc=libraries/libapparmor build_style=gnu-configure From 27113e70b17cf7b63bd430d9f95a8d0a2bc4cd90 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:03 -0400 Subject: [PATCH 0254/1420] python3-urwid: rebuild for Python 3.11 --- 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 a83dbf7ed1ce..7ec9f0f02fc9 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.1.2 -revision=3 +revision=4 wrksrc="urwid-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 6b9cd7838fc38fdf3153cf96492436c58eeea882 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:03 -0400 Subject: [PATCH 0255/1420] python3-pyudev: rebuild for Python 3.11 --- 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 e9a7d64c8396..8193d5f17d55 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.22.0 -revision=2 +revision=3 wrksrc="pyudev-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From af63fff345cfce4bd7f65f134f3d74da5c101ab0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:03 -0400 Subject: [PATCH 0256/1420] samba: rebuild for Python 3.11 --- srcpkgs/samba/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/samba/template b/srcpkgs/samba/template index 2e5fbd375e87..3ba93268973d 100644 --- a/srcpkgs/samba/template +++ b/srcpkgs/samba/template @@ -1,7 +1,7 @@ # Template file for 'samba' pkgname=samba version=4.14.12 -revision=1 +revision=2 build_style=waf3 build_helper="qemu" configure_script="buildtools/bin/waf" From 9dc714391a30b5fecef750fe9620c8b40e517992 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:03 -0400 Subject: [PATCH 0257/1420] shiboken2: rebuild for Python 3.11 --- srcpkgs/shiboken2/patches/python-3.11.patch | 56 --------------------- srcpkgs/shiboken2/patches/python3.11.patch | 1 + srcpkgs/shiboken2/template | 2 +- 3 files changed, 2 insertions(+), 57 deletions(-) delete mode 100644 srcpkgs/shiboken2/patches/python-3.11.patch create mode 120000 srcpkgs/shiboken2/patches/python3.11.patch diff --git a/srcpkgs/shiboken2/patches/python-3.11.patch b/srcpkgs/shiboken2/patches/python-3.11.patch deleted file mode 100644 index 2520f17a0c59..000000000000 --- a/srcpkgs/shiboken2/patches/python-3.11.patch +++ /dev/null @@ -1,56 +0,0 @@ ---- a/sources/shiboken2/libshiboken/basewrapper.cpp -+++ b/sources/shiboken2/libshiboken/basewrapper.cpp -@@ -64,6 +64,12 @@ - #include - #endif - -+#if PY_VERSION_HEX < 0x03090000 -+void Py_SET_TYPE(PyObject *o, PyTypeObject *type) { -+ Py_TYPE(o) = type; -+} -+#endif -+ - namespace { - void _destroyParentInfo(SbkObject *obj, bool keepReference); - } -@@ -377,7 +383,7 @@ SbkObjectType *SbkObject_TypeF(void) - static PyTypeObject *type = nullptr; - if (!type) { - type = reinterpret_cast(SbkType_FromSpec(&SbkObject_Type_spec)); -- Py_TYPE(type) = SbkObjectType_TypeF(); -+ Py_SET_TYPE(type, SbkObjectType_TypeF()); - Py_INCREF(Py_TYPE(type)); - type->tp_weaklistoffset = offsetof(SbkObject, weakreflist); - type->tp_dictoffset = offsetof(SbkObject, ob_dict); -@@ -1152,7 +1158,7 @@ introduceWrapperType(PyObject *enclosing - typeSpec->slots[0].pfunc = reinterpret_cast(baseType ? baseType : SbkObject_TypeF()); - - PyObject *heaptype = SbkType_FromSpecWithBases(typeSpec, baseTypes); -- Py_TYPE(heaptype) = SbkObjectType_TypeF(); -+ Py_SET_TYPE(heaptype, SbkObjectType_TypeF()); - Py_INCREF(Py_TYPE(heaptype)); - auto *type = reinterpret_cast(heaptype); - #if PY_VERSION_HEX < 0x03000000 ---- a/sources/shiboken2/libshiboken/sbkenum.cpp -+++ b/sources/shiboken2/libshiboken/sbkenum.cpp -@@ -55,6 +55,11 @@ - #define SbkEnumType_Check(o) (Py_TYPE(Py_TYPE(o)) == SbkEnumType_TypeF()) - typedef PyObject *(*enum_func)(PyObject *, PyObject *); - -+#if PY_VERSION_HEX < 0x03090000 -+void Py_SET_TYPE(PyObject *o, PyTypeObject *type) { -+ Py_TYPE(o) = type; -+} -+#endif - extern "C" - { - -@@ -753,7 +758,7 @@ newTypeWithName(const char *name, - PyTuple_SetItem(bases, 0, reinterpret_cast(basetype)); - auto *type = reinterpret_cast(SbkType_FromSpecWithBases(&newspec, bases)); - PyErr_Print(); -- Py_TYPE(type) = SbkEnumType_TypeF(); -+ Py_SET_TYPE(type, SbkEnumType_TypeF()); - - auto *enumType = reinterpret_cast(type); - PepType_SETP(enumType)->cppName = cppName; diff --git a/srcpkgs/shiboken2/patches/python3.11.patch b/srcpkgs/shiboken2/patches/python3.11.patch new file mode 120000 index 000000000000..6861da6ece50 --- /dev/null +++ b/srcpkgs/shiboken2/patches/python3.11.patch @@ -0,0 +1 @@ +../../python3-pyside2/patches/python3.11.patch \ No newline at end of file diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template index d0335b22bf51..1205266c5a74 100644 --- a/srcpkgs/shiboken2/template +++ b/srcpkgs/shiboken2/template @@ -1,7 +1,7 @@ # Template file for 'shiboken2' pkgname=shiboken2 version=5.15.5 -revision=1 +revision=2 _pkgname="pyside-setup-opensource-src-${version}" wrksrc="${_pkgname/%5.14.2.1/5.14.2}" build_wrksrc="sources/shiboken2" From f02c21c4d72b0bd5a73a20958f9172fe68f56a74 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 4 Oct 2022 20:08:48 -0400 Subject: [PATCH 0258/1420] postgresql14: rebuild for Python 3.11 --- srcpkgs/postgresql14/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/postgresql14/template b/srcpkgs/postgresql14/template index 00584734435c..b43163259ae0 100644 --- a/srcpkgs/postgresql14/template +++ b/srcpkgs/postgresql14/template @@ -1,7 +1,7 @@ # Template file for 'postgresql14' pkgname=postgresql14 version=14.5 -revision=1 +revision=2 wrksrc="postgresql-${version}" build_style=gnu-configure make_build_target=world From 9f62532d3e499799496d9052737fd378ee95e6db Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:03 -0400 Subject: [PATCH 0259/1420] python3-xmlschema: rebuild for Python 3.11 --- 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 21d3ef9eb1d3..b8fb3c9dc131 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.0.3 -revision=1 +revision=2 wrksrc=xmlschema-${version} build_style=python3-module hostmakedepends="python3-setuptools python3-elementpath" From 33189b40e916dcd1476cb6c11fc345c9d714cd29 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:04 -0400 Subject: [PATCH 0260/1420] python3-canonicaljson: rebuild for Python 3.11 --- 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 5da283988e5f..285d2343840b 100644 --- a/srcpkgs/python3-canonicaljson/template +++ b/srcpkgs/python3-canonicaljson/template @@ -1,7 +1,7 @@ # Template file for 'python3-canonicaljson' pkgname=python3-canonicaljson version=1.6.3 -revision=1 +revision=2 wrksrc="canonicaljson-${version}" build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" From 0f8f59d64e5d42626f86d2094887bc8a3d2dccf8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:04 -0400 Subject: [PATCH 0261/1420] python3-unpaddedbase64: rebuild for Python 3.11 --- 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 e751848ad4b2..5987dca36882 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=1 +revision=2 wrksrc="python-unpaddedbase64-${version}" build_style=python3-pep517 hostmakedepends="python3-poetry-core" From 8daff910ed855103732d7a2da0a47c961d653526 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:04 -0400 Subject: [PATCH 0262/1420] python3-Twisted: rebuild for Python 3.11 --- 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 37c2c1fcf2cd..58312035bff1 100644 --- a/srcpkgs/python3-Twisted/template +++ b/srcpkgs/python3-Twisted/template @@ -1,7 +1,7 @@ # Template file for 'python3-Twisted' pkgname=python3-Twisted version=22.1.0 -revision=1 +revision=2 wrksrc="Twisted-${version}" build_style=python3-module make_check_target=src/twisted From 7cd0c28370f71712cf8fe6b33af491332d2254e5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:04 -0400 Subject: [PATCH 0263/1420] python3-babelfish: rebuild for Python 3.11 --- 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 fa17be91a4da..a1f5e85cb1aa 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=2 +revision=3 wrksrc="babelfish-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 88afc21958126af190b34ce82a0702099c8aecc2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:04 -0400 Subject: [PATCH 0264/1420] python3-rebulk: rebuild for Python 3.11 --- 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 589dfb78cbdc..7d38efd3f6c9 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=5 +revision=6 wrksrc="rebulk-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 4394917c7a1c57fb61ba07cf7051b0ff4b1a071e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:04 -0400 Subject: [PATCH 0265/1420] python3-aiohttp: rebuild for Python 3.11 --- 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 b20de6a7b4fb..0bf8bc2f8f93 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.7.4 -revision=3 +revision=4 wrksrc="aiohttp-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From c3ea909b5d5998df457602f86770f2861347ff14 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:04 -0400 Subject: [PATCH 0266/1420] python3-socks: rebuild for Python 3.11 --- 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 9776a38ae900..abe9025b9726 100644 --- a/srcpkgs/python3-socks/template +++ b/srcpkgs/python3-socks/template @@ -1,7 +1,7 @@ # Template file for 'python3-socks' pkgname=python3-socks version=1.2.4 -revision=3 +revision=4 wrksrc="python-socks-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d768d551d4f52b01aa8212de107eab18dba7f96b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:04 -0400 Subject: [PATCH 0267/1420] python3-cysignals: rebuild for Python 3.11 --- 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 08d1010976ff..f9d37ed4d5e1 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.11.2 -revision=2 +revision=3 wrksrc="cysignals-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython autoconf" From a88d0334cc62abed0c7b14db7632975bef2d7254 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:04 -0400 Subject: [PATCH 0268/1420] python3-jupyter_widgetsnbextension: rebuild for Python 3.11 --- 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 c6d4f8df8e31..16cfe3646c0b 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=3.5.1 -revision=3 +revision=4 wrksrc="widgetsnbextension-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 49cb533eefca21abcaae58ea038469a411fcf6b0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:04 -0400 Subject: [PATCH 0269/1420] python3-Cheroot: rebuild for Python 3.11 --- 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 7e8dccd85bd1..2cb4718876de 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=2 +revision=3 wrksrc="cheroot-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From 9e8a731fa4ab08c6d63505fa4ebbf3489711fb2d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:05 -0400 Subject: [PATCH 0270/1420] python3-jaraco.collections: rebuild for Python 3.11 --- 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 daff756579e1..f2df68c5c099 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=3.5.2 -revision=1 +revision=2 wrksrc="jaraco.collections-${version}" build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" From 10aeb2f1a418282d48273317f8d51fe58f7b6c66 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:05 -0400 Subject: [PATCH 0271/1420] python3-portend: rebuild for Python 3.11 --- 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 882e1c749276..163f77991c13 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.1.0 -revision=1 +revision=2 wrksrc="portend-${version}" build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" From 99d3638b132034319d7aeb5708eaef287d2b0893 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:05 -0400 Subject: [PATCH 0272/1420] python3-zc.lockfile: rebuild for Python 3.11 --- 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 50b3eefbf758..860bdda23ef6 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=5 +revision=6 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 579a9c11c8552a25412332864ab705c610732ebd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:05 -0400 Subject: [PATCH 0273/1420] python3-socketIO-client: rebuild for Python 3.11 --- 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 883125e09427..7adebe6baff1 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=6 +revision=7 wrksrc="socketIO-client-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b2fb56db3f3aeb65797f80874fe1d7158219937b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:05 -0400 Subject: [PATCH 0274/1420] python3-boolean.py: rebuild for Python 3.11 --- 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 ceda7ad676b7..72aa5800bdec 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=3 +revision=4 wrksrc="boolean.py-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From c38f6ca2fc98eb1ca9857172ad68f82292d56366 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:05 -0400 Subject: [PATCH 0275/1420] python3-aionotify: rebuild for Python 3.11 --- 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 be90b5dbf7f0..dac453cd7cce 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=3 +revision=4 wrksrc="aionotify-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From aa3a7247ed5b65f5273b3fe519cd10e169be8c20 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:05 -0400 Subject: [PATCH 0276/1420] python3-inotify: rebuild for Python 3.11 --- 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 437ac501287c..76dcc64fbbd0 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=7 +revision=8 wrksrc="pyinotify-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 9c2088f8d0744f0433afef48bd85088796db50a8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:05 -0400 Subject: [PATCH 0277/1420] python3-xcffib: rebuild for Python 3.11 --- 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 afbd9e24981b..1240be55199f 100644 --- a/srcpkgs/python3-xcffib/template +++ b/srcpkgs/python3-xcffib/template @@ -1,7 +1,7 @@ # Template file for 'python3-xcffib' pkgname=python3-xcffib version=0.11.1 -revision=1 +revision=2 wrksrc=xcffib-${version} build_style=python3-pep517 hostmakedepends="python3-setuptools pkg-config cabal-install parallel xcb-proto python3-cffi python3-wheel" From b2f870553cccb428f53d575092f12e6b21b504af Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:05 -0400 Subject: [PATCH 0278/1420] python3-appdirs: rebuild for Python 3.11 --- 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 9b064e12a691..fb9599d1bd42 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=4 +revision=5 wrksrc="appdirs-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 3316f4e1cdfbbf5bdeda8be0cb81706c6528e093 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:05 -0400 Subject: [PATCH 0279/1420] python3-argcomplete: rebuild for Python 3.11 --- 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 449800ff8652..edb54a2f66b8 100644 --- a/srcpkgs/python3-argcomplete/template +++ b/srcpkgs/python3-argcomplete/template @@ -1,7 +1,7 @@ # Template file for 'python3-argcomplete' pkgname=python3-argcomplete version=2.0.0 -revision=1 +revision=2 wrksrc="argcomplete-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From cdf9b0ad5fab405717e897b6367ea1f24d21d908 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:05 -0400 Subject: [PATCH 0280/1420] python3-halo: rebuild for Python 3.11 --- 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 2b6d7bb7b159..19a6263822dc 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=1 +revision=2 wrksrc="halo-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 2149bbfbb886fa06dee388be90a1901bc56b25b2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Thu, 6 Oct 2022 14:34:53 -0400 Subject: [PATCH 0281/1420] python3-coverage: rebuild for Python 3.11 --- 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 651971884fe6..bf773832c936 100644 --- a/srcpkgs/python3-coverage/template +++ b/srcpkgs/python3-coverage/template @@ -1,7 +1,7 @@ # Template file for 'python3-coverage' pkgname=python3-coverage version=5.0.3 -revision=4 +revision=5 wrksrc="coverage-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 086e28c1dc453bd420bc74c42537807528c69e30 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:06 -0400 Subject: [PATCH 0282/1420] python3-zope.component: rebuild for Python 3.11 --- 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 fb056d383fc9..e68ed7ca59b8 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=2 +revision=3 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 3660be765096a8c05e922ba1bc489304796445d2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:06 -0400 Subject: [PATCH 0283/1420] python3-zope.configuration: rebuild for Python 3.11 --- 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 b7be9a49a75c..2c174e100a98 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=3 +revision=4 wrksrc="zope.configuration-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Sphinx" From 425decafdff5bd5d3d702857f0b712e7fc1c58f4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:06 -0400 Subject: [PATCH 0284/1420] python3-sphinxcontrib: rebuild for Python 3.11 --- 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 d95bfd2e3208..6c94870b31f0 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=6 +revision=7 create_wrksrc=yes hostmakedepends="python3-setuptools" depends="python3-setuptools" From 1110160e6ba479d124ac77996ae8c87d7b5444fc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:06 -0400 Subject: [PATCH 0285/1420] python3-zope.exceptions: rebuild for Python 3.11 --- 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 76f238c25c28..6c415fa3687c 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=3 +revision=4 wrksrc="zope.exceptions-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-repoze.sphinx.autointerface From f170fbaf8d6e60a5d009aad2baa4e7dda420bd9f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:06 -0400 Subject: [PATCH 0286/1420] python3-oauthlib: rebuild for Python 3.11 --- 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 f7101af7bc5f..1b8fd5e04751 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=5 +revision=6 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a546aab1e122b7cd1934168f87e5e5d02315d444 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:06 -0400 Subject: [PATCH 0287/1420] python3-lz4: rebuild for Python 3.11 --- 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 f48085f375be..8b5d31f49e7e 100644 --- a/srcpkgs/python3-lz4/template +++ b/srcpkgs/python3-lz4/template @@ -1,7 +1,7 @@ # Template file for 'python3-lz4' pkgname=python3-lz4 version=3.1.3 -revision=2 +revision=3 wrksrc="lz4-${version}" build_style=python3-module hostmakedepends="pkg-config python3-setuptools_scm python3-pkgconfig" From 41c8bfb5b1dfad2be81763f7470eb298fb0ff5fa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:06 -0400 Subject: [PATCH 0288/1420] python3-priority: rebuild for Python 3.11 --- 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 8772bb6fc739..dcdb782c516c 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=2 +revision=3 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From c83dff867e9a282c022574f2ada768cef9e00eed Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:06 -0400 Subject: [PATCH 0289/1420] python3-wsproto: rebuild for Python 3.11 --- 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 4098570177e2..c1a367ef49db 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.0.0 -revision=2 +revision=3 wrksrc="wsproto-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 88797c6309eee487398484fc7961fea044ed43f0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:06 -0400 Subject: [PATCH 0290/1420] python3-EasyProcess: rebuild for Python 3.11 --- 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 454fdaa59349..e795c5357523 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=1 +revision=2 wrksrc=EasyProcess-${version} build_style=python3-module hostmakedepends="python3-setuptools" From c23439b7e418172dd4844a5e7aa99daaeba9fc3e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:07 -0400 Subject: [PATCH 0291/1420] python3-Brotli: rebuild for Python 3.11 --- 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 3f4cfafc3f7d..93825789de12 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.0.9 -revision=1 +revision=2 wrksrc="brotli-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b3ecea0d133e0d4dd1e0cd281d3db51db1e6b387 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:07 -0400 Subject: [PATCH 0292/1420] python3-blinker: rebuild for Python 3.11 --- 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 df629b7e55c2..118dda7df106 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.5 -revision=1 +revision=2 wrksrc="blinker-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b568ee539153107398ff493f15f5b5bcc512857e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:07 -0400 Subject: [PATCH 0293/1420] python3-raven: rebuild for Python 3.11 --- 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 243b2c5aefb7..174affe2b0b9 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=6 +revision=7 wrksrc="raven-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 7b5761b9605f562eedecc19451a91908f4849d67 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:07 -0400 Subject: [PATCH 0294/1420] python3-mccabe: rebuild for Python 3.11 --- 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 ba9d01c49cf2..c765669977c2 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=1 +revision=2 wrksrc="mccabe-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 61b5ef8e6e30a2392e69eb72b8c201f9efc96127 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:07 -0400 Subject: [PATCH 0295/1420] python3-pycodestyle: rebuild for Python 3.11 --- 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 58d0c3d4f8f1..1f21685ce9f4 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.9.1 -revision=1 +revision=2 wrksrc="pycodestyle-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 552f5ed67f17f1c1bfcf8ad5854b4a86adffa564 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:07 -0400 Subject: [PATCH 0296/1420] python3-pyflakes: rebuild for Python 3.11 --- 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 b5f27fca7b91..bb7ced140cab 100644 --- a/srcpkgs/python3-pyflakes/template +++ b/srcpkgs/python3-pyflakes/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyflakes' pkgname=python3-pyflakes version=2.5.0 -revision=1 +revision=2 wrksrc="pyflakes-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From c92d2be9ef3d7c173be6c5d31c7ffe4dffbe99f1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:07 -0400 Subject: [PATCH 0297/1420] python3-pyqt6-sip: rebuild for Python 3.11 --- 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 8d85178c4c3a..200c1eb692fe 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.4.0 -revision=1 +revision=2 wrksrc="PyQt6_sip-$version" build_style=python3-module hostmakedepends="python3-devel python3-setuptools sip" From 67af752382179f39ce9b45bc943f5d760f76e880 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:07 -0400 Subject: [PATCH 0298/1420] python3-requests-ntlm: rebuild for Python 3.11 --- 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 87c03bd6bade..f13d81f571fc 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.1.0 -revision=3 +revision=4 wrksrc="requests-ntlm-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 0fdfd74192c610da3b6879e85f50ccd7b37353f1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:07 -0400 Subject: [PATCH 0299/1420] python3-xmltodict: rebuild for Python 3.11 --- 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 70a5e0e6068d..623d0c58d853 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.12.0 -revision=5 +revision=6 wrksrc="xmltodict-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a2d387e4c4e45bdc92fafe582af6ed5b897f9a31 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:07 -0400 Subject: [PATCH 0300/1420] python3-sortedcontainers: rebuild for Python 3.11 --- 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 595b0c87f9b5..f8e36186e541 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=3 +revision=4 wrksrc="sortedcontainers-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 54c8797e01c688e0ec04e19ef22903c8c076b02b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:07 -0400 Subject: [PATCH 0301/1420] capstone: rebuild for Python 3.11 --- srcpkgs/capstone/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/capstone/template b/srcpkgs/capstone/template index ed69d7811da8..99c20894520b 100644 --- a/srcpkgs/capstone/template +++ b/srcpkgs/capstone/template @@ -1,7 +1,7 @@ # Template file for 'capstone' pkgname=capstone version=4.0.2 -revision=4 +revision=5 build_style=gnu-makefile make_use_env=yes hostmakedepends="python3-setuptools" From b0230792892b9b181a8e6e4c6bdc9c5f28cb70bd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:08 -0400 Subject: [PATCH 0302/1420] python3-ultrajson: rebuild for Python 3.11 --- 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 aadbbe8d3731..c640e31ec12e 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.5.0 -revision=1 +revision=2 wrksrc="ujson-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From 579f45ea568868f0c8b9240767a8bf4274076491 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:08 -0400 Subject: [PATCH 0303/1420] python3-paramiko: rebuild for Python 3.11 --- 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 540b71e78dc1..dd2ef84404a8 100644 --- a/srcpkgs/python3-paramiko/template +++ b/srcpkgs/python3-paramiko/template @@ -1,7 +1,7 @@ # Template file for 'python3-paramiko' pkgname=python3-paramiko version=2.11.0 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 3ef8d0be08372cd3b19832b1f8aa8b2ad0e5b1c6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:08 -0400 Subject: [PATCH 0304/1420] python3-pystache: rebuild for Python 3.11 --- 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 f603b38cf2c1..d72bee7e3c8e 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.5.4 -revision=6 +revision=7 wrksrc="pystache-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a4fc4772d4d02944ab5767034a349fe273129064 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:08 -0400 Subject: [PATCH 0305/1420] python3-resolvelib: rebuild for Python 3.11 --- 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 9223fe4c5259..f96cc39da01e 100644 --- a/srcpkgs/python3-resolvelib/template +++ b/srcpkgs/python3-resolvelib/template @@ -1,7 +1,7 @@ # Template file for 'python3-resolvelib' pkgname=python3-resolvelib version=0.8.1 -revision=1 +revision=2 wrksrc="${pkgname/python3-/}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 614a588e503887c03073ed8ee55c580422e00247 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:08 -0400 Subject: [PATCH 0306/1420] python3-straight.plugin: rebuild for Python 3.11 --- 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 97d226d31133..791cc46f1b37 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=1 +revision=2 wrksrc="${pkgname/python3-/}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 7ea7a432c39a3dec787f2bb9f93429ee8b92ea0f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:08 -0400 Subject: [PATCH 0307/1420] python3-subprocess-tee: rebuild for Python 3.11 --- 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 e14060d2bffa..d6f81757f460 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.3.5 -revision=1 +revision=2 wrksrc="${pkgname/python3-/}-${version}" build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" From fbe6584e7ad94045dbdebdd590169ae2acb6e93f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:08 -0400 Subject: [PATCH 0308/1420] python3-typeguard: rebuild for Python 3.11 --- 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 21ed2af0bb80..0fbb833b0da0 100644 --- a/srcpkgs/python3-typeguard/template +++ b/srcpkgs/python3-typeguard/template @@ -1,7 +1,7 @@ # Template file for 'python3-typeguard' pkgname=python3-typeguard version=2.13.3 -revision=1 +revision=2 wrksrc="${pkgname/python3-/}-${version}" build_style=python3-module # mypy checks seem to require that the module be installed From 91f726701ae8ad61d8cc2603a1768aa62599df5d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:08 -0400 Subject: [PATCH 0309/1420] python3-bracex: rebuild for Python 3.11 --- 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 89025d991378..7c55d921bc92 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=1 +revision=2 wrksrc="${pkgname/python3-/}-${version}" build_style=python3-pep517 hostmakedepends="hatchling" From 6474f8fc6465b6f7ceb6bb4f3bcdbddd265123aa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:08 -0400 Subject: [PATCH 0310/1420] python3-smmap: rebuild for Python 3.11 --- 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 1c32f8252c05..197ac5799a52 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=1 +revision=2 wrksrc="smmap-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 8be9e65f5ff3b393ce9fc77bbe054f38a8e91460 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:08 -0400 Subject: [PATCH 0311/1420] python-SQLAlchemy: rebuild for Python 3.11 --- srcpkgs/python-SQLAlchemy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-SQLAlchemy/template b/srcpkgs/python-SQLAlchemy/template index e037cc375ba5..aa3744f088fc 100644 --- a/srcpkgs/python-SQLAlchemy/template +++ b/srcpkgs/python-SQLAlchemy/template @@ -1,7 +1,7 @@ # Template file for 'python-SQLAlchemy' pkgname=python-SQLAlchemy version=1.3.18 -revision=4 +revision=5 wrksrc="SQLAlchemy-${version}" build_style=python-module hostmakedepends="python-setuptools python3-setuptools" From f4685659323f756c48bae9a02146372e6fe9ed2f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:09 -0400 Subject: [PATCH 0312/1420] python3-WTForms: rebuild for Python 3.11 --- 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 a3eb0e15e0e6..8117b05f14e2 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.0.1 -revision=1 +revision=2 wrksrc="WTForms-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-wheel python3-Babel" From dab95271c85a7e51bc70620a48f4cd56c9b5dd6b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:09 -0400 Subject: [PATCH 0313/1420] python3-lazy-object-proxy: rebuild for Python 3.11 --- 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 b11ee5175297..d7784d1f5d70 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.7.1 -revision=1 +revision=2 wrksrc="lazy-object-proxy-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From 279df920445c120f5fc4fc4de9c235531e0e4d2f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:09 -0400 Subject: [PATCH 0314/1420] python3-aiodns: rebuild for Python 3.11 --- 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 fb82199d201f..e0980af26037 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=3 +revision=4 wrksrc="aiodns-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 3f9745ca2d5a78af21bf3dd030c3cc7d5e2732f0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:09 -0400 Subject: [PATCH 0315/1420] python3-configobj: rebuild for Python 3.11 --- 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 86d364862af8..b4d006c83c6b 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.6 -revision=9 +revision=10 wrksrc="configobj-${version}" build_style=python3-module hostmakedepends="python3-devel" From 9777c44fdb3af3dcf6c1f1f4dbabff6106da4c40 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:09 -0400 Subject: [PATCH 0316/1420] python3-tabulate: rebuild for Python 3.11 --- 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 3068d508f89e..72321f305a5b 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.8.10 -revision=1 +revision=2 wrksrc="tabulate-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 2ade2ac7455c8438df8c76441471eb72e7df1780 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:09 -0400 Subject: [PATCH 0317/1420] python3-pytzdata: rebuild for Python 3.11 --- srcpkgs/python3-pytzdata/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytzdata/template b/srcpkgs/python3-pytzdata/template index 3dc8265fd394..9e12e59f5db2 100644 --- a/srcpkgs/python3-pytzdata/template +++ b/srcpkgs/python3-pytzdata/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytzdata' pkgname=python3-pytzdata version=2020.1 -revision=2 +revision=3 wrksrc="pytzdata-${version}" build_style=python3-pep517 hostmakedepends="python3-poetry-core" From b6ad825a61587fb6162a0cd6660c7f6648269bfd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:09 -0400 Subject: [PATCH 0318/1420] python-sqlparse: rebuild for Python 3.11 --- srcpkgs/python-sqlparse/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-sqlparse/template b/srcpkgs/python-sqlparse/template index 45224c6c879f..91c12f847b6d 100644 --- a/srcpkgs/python-sqlparse/template +++ b/srcpkgs/python-sqlparse/template @@ -1,7 +1,7 @@ # Template file for 'python-sqlparse' pkgname=python-sqlparse version=0.3.0 -revision=5 +revision=6 wrksrc="sqlparse-${version}" build_style=python-module pycompile_module="sqlparse" From 2565411e765f6428bee769a769f30da1d926926a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:09 -0400 Subject: [PATCH 0319/1420] python3-psycopg: rebuild for Python 3.11 --- 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 817af9ad72df..bdc0a1fe72ae 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.1.3 -revision=1 +revision=2 wrksrc="psycopg-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 207425b62d87d734d5b4d1ffba56cb0f8e37b9d3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:09 -0400 Subject: [PATCH 0320/1420] python3-colorclass: rebuild for Python 3.11 --- 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 6ec7c01fc15c..8cc903c971cd 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=6 +revision=7 wrksrc="colorclass-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d91ea797c9a61db02d406d708db462c8aea43cc7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:10 -0400 Subject: [PATCH 0321/1420] python3-easygui: rebuild for Python 3.11 --- 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 87188a537d51..f9bd2e400ec6 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=1 +revision=2 wrksrc="easygui-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From f618f526c3e9dc78a679830a2130d2b80d39422d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:10 -0400 Subject: [PATCH 0322/1420] python3-msoffcrypto-tool: rebuild for Python 3.11 --- 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 fa80ef343248..6a64c40b41a7 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.0.0 -revision=2 +revision=3 wrksrc="msoffcrypto-tool-${version}" build_style=python3-pep517 hostmakedepends="python3-poetry-core" From c2f523eb76446dccb3ffd6e0e08355952f728da2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:10 -0400 Subject: [PATCH 0323/1420] python3-pcodedmp: rebuild for Python 3.11 --- 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 93e95677079e..18cb5b4bd06a 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=4 +revision=5 wrksrc="pcodedmp-${version}" build_style=python3-module pycompile_module="pcodedmp" From dc98b97d8cd5567fb7e8081765a44dcbcfed594d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:10 -0400 Subject: [PATCH 0324/1420] python3-construct: rebuild for Python 3.11 --- 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 8c35a517e09d..8d91e2355b8a 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.54 -revision=2 +revision=3 wrksrc="construct-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From be3d928e7dcc567bfc4fdcb63eef4e10362a24a5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:10 -0400 Subject: [PATCH 0325/1420] python3-pycryptodomex: rebuild for Python 3.11 --- 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 622501a2e2ab..8fcf367edc3b 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.15.0 -revision=1 +revision=2 wrksrc="pycryptodomex-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 200c7ca9b448c72b08b17704a97d3ab0cb328d35 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:10 -0400 Subject: [PATCH 0326/1420] python3-Unidecode: rebuild for Python 3.11 --- 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 b10d37f92007..eef0d180300f 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.6 -revision=1 +revision=2 wrksrc="Unidecode-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b818b9919d982ceb52add0d70aaeecdda05b60a3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:10 -0400 Subject: [PATCH 0327/1420] python3-text-unidecode: rebuild for Python 3.11 --- 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 1769601f2f3f..ca2b8ae4e89e 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=1 +revision=2 wrksrc="text-unidecode-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 72a8e59b6d6e0f5287bb44cada9b40703a3f9172 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:10 -0400 Subject: [PATCH 0328/1420] olm-python3: rebuild for Python 3.11 --- 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 48049cb2efd4..b4fa5ca6e7fc 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.8 -revision=1 +revision=2 wrksrc="olm-${version}" build_wrksrc=python build_style=python3-module From 69411916d7b2ee607d702953ac536dd4611ce170 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:10 -0400 Subject: [PATCH 0329/1420] python3-aiofiles: rebuild for Python 3.11 --- 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 521888de247b..24cda7c28b3a 100644 --- a/srcpkgs/python3-aiofiles/template +++ b/srcpkgs/python3-aiofiles/template @@ -1,7 +1,7 @@ # Template file for 'python3-aiofiles' pkgname=python3-aiofiles version=22.1.0 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-pep517 hostmakedepends="python3-poetry-core" From 6777ce5bc20727a6004ea01eb4c48a3ebc6ff8ea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Thu, 6 Oct 2022 14:35:59 -0400 Subject: [PATCH 0330/1420] python3-atomicwrites: update to 1.4.1. --- srcpkgs/python3-atomicwrites/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-atomicwrites/template b/srcpkgs/python3-atomicwrites/template index 8e7c323662ff..14ee397fb34b 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.0 -revision=3 +version=1.4.1 +revision=1 wrksrc="atomicwrites-${version}" build_style=python3-module hostmakedepends="python3-setuptools" @@ -11,7 +11,7 @@ maintainer="Orphaned " license="MIT" homepage="https://github.com/untitaker/python-atomicwrites" distfiles="${PYPI_SITE}/a/atomicwrites/atomicwrites-${version}.tar.gz" -checksum=ae70396ad1a434f9c7046fd2dd196fc04b12f9e91ffb859164193be8b6168a7a +checksum=81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11 post_install() { vlicense LICENSE From 333453f992030a0376165216bbe5e55cd475b2c8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:11 -0400 Subject: [PATCH 0331/1420] python3-logbook: rebuild for Python 3.11 --- 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 2a15b679e2ef..696416a32c8f 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.5.3 -revision=4 +revision=5 wrksrc="logbook-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-devel python3-Cython" From 3e68773570fc73cf674e85e7abb3e69d18a54e69 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:11 -0400 Subject: [PATCH 0332/1420] python3-peewee: rebuild for Python 3.11 --- 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 eca1cab896d3..d8a5460c36f3 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.14.4 -revision=3 +revision=4 wrksrc="peewee-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" From f63fde8e9ea766f99481f42feec63f5335be1d8c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:11 -0400 Subject: [PATCH 0333/1420] python3-pycryptodome: rebuild for Python 3.11 --- 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 26c377cd52d1..c5afac04cf50 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.9.7 -revision=4 +revision=5 wrksrc="pycryptodome-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From f63564c7969da45ea63a4ea209837cfa2124d67e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:11 -0400 Subject: [PATCH 0334/1420] python3-msgpack: rebuild for Python 3.11 --- 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 f3ff6db5e3ed..b46befc65e3e 100644 --- a/srcpkgs/python3-msgpack/template +++ b/srcpkgs/python3-msgpack/template @@ -1,7 +1,7 @@ # Template file for 'python3-msgpack' pkgname=python3-msgpack version=1.0.4 -revision=1 +revision=2 wrksrc="msgpack-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From edfabbe20a8477d8e6a955efd302914ee7f0419d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:11 -0400 Subject: [PATCH 0335/1420] nemo: rebuild for Python 3.11 --- srcpkgs/nemo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nemo/template b/srcpkgs/nemo/template index 9851bc4fae26..ea514cda3354 100644 --- a/srcpkgs/nemo/template +++ b/srcpkgs/nemo/template @@ -1,7 +1,7 @@ # Template file for 'nemo' pkgname=nemo version=5.4.3 -revision=1 +revision=2 build_style=meson build_helper=gir pycompile_dirs="/usr/share/nemo/actions/myaction.py" From 4ade9aa3ca389247a785bac5b813980248d81eeb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:11 -0400 Subject: [PATCH 0336/1420] python3-distro: rebuild for Python 3.11 --- 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 12554d77cfb4..b32117a26daf 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.7.0 -revision=1 +revision=2 wrksrc=distro-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 417de8040ee5671776353d8a2b4c391c8cefd506 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:11 -0400 Subject: [PATCH 0337/1420] python-pyserial: rebuild for Python 3.11 --- srcpkgs/python-pyserial/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-pyserial/template b/srcpkgs/python-pyserial/template index 4fba5dbb640e..937f36e081fe 100644 --- a/srcpkgs/python-pyserial/template +++ b/srcpkgs/python-pyserial/template @@ -1,7 +1,7 @@ # Template file for 'python-pyserial' pkgname=python-pyserial version=3.4 -revision=6 +revision=7 wrksrc="pyserial-${version}" build_style=python-module hostmakedepends="python-setuptools python3-setuptools" From 8ec73f8024725c9cc29f088e920e05aa48c8a304 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:11 -0400 Subject: [PATCH 0338/1420] scons: rebuild for Python 3.11 --- srcpkgs/scons/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/scons/template b/srcpkgs/scons/template index 3cf4d75bb5f6..49013cd8144b 100644 --- a/srcpkgs/scons/template +++ b/srcpkgs/scons/template @@ -1,7 +1,7 @@ # Template file for 'scons' pkgname=scons version=4.4.0 -revision=1 +revision=2 wrksrc="SCons-${version}" build_style="python3-module" make_install_args="--install-data=/usr/share/man/man1/" From 92bf3539eb7d701d690e3a36637eceabc7e54922 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Thu, 6 Oct 2022 14:41:24 -0400 Subject: [PATCH 0339/1420] python3-pathlib2: rebuild for Python 3.11 --- 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 9f284c9cd9b5..4cca11afabfe 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=8 +revision=9 wrksrc="pathlib2-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 5d190afb4739d9526e61b5d7eb092156bfe151a7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:11 -0400 Subject: [PATCH 0340/1420] python3-serpent: rebuild for Python 3.11 --- 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 9bae48df0965..c5236c4c447f 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=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 52a07430e45c4a9ec31dcc650402a4782c8ee614 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:11 -0400 Subject: [PATCH 0341/1420] youtube-dl: rebuild for Python 3.11 --- srcpkgs/youtube-dl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/youtube-dl/template b/srcpkgs/youtube-dl/template index 2480fd6557b8..55f177e998e9 100644 --- a/srcpkgs/youtube-dl/template +++ b/srcpkgs/youtube-dl/template @@ -1,7 +1,7 @@ # Template file for 'youtube-dl' pkgname=youtube-dl version=2021.12.17 -revision=1 +revision=2 wrksrc="$pkgname" build_style=python3-module hostmakedepends="python3-setuptools" From 3e0438eaece080921b60ee3729a013aad06855c5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:12 -0400 Subject: [PATCH 0342/1420] gst1-python3: rebuild for Python 3.11 --- 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 3936929447a7..636bad004340 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.20.3 -revision=1 +revision=2 wrksrc="gst-python-${version}" build_style=meson hostmakedepends="pkg-config python3" From 4eee8e5c0724304e996bd644074ef832ff854e1c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:12 -0400 Subject: [PATCH 0343/1420] python3-pykka: rebuild for Python 3.11 --- 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 7c3d8acc3340..0e01cfd2d773 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=4 +revision=5 wrksrc="Pykka-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 84d3df0062aecd39d150efcd9cba34ac3472f9dc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:12 -0400 Subject: [PATCH 0344/1420] python3-casttube: rebuild for Python 3.11 --- 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 74187dad714b..28a8386c16dc 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=4 +revision=5 wrksrc="casttube-${version}" build_style=python3-module pycompile_module="casttube" From 01d5c907d3e73f0bed8e15d91417458affd3c1f4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:12 -0400 Subject: [PATCH 0345/1420] python3-zeroconf: rebuild for Python 3.11 --- 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 3c45e53515c1..4fbda258fb61 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=1 +revision=2 wrksrc="python-zeroconf-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 423f06406d809ae443f4ff2f59a2bdd0dafba02b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:12 -0400 Subject: [PATCH 0346/1420] libcap-ng: rebuild for Python 3.11 --- 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 e89322fdb30b..0941a87d5440 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.3 -revision=1 +revision=2 build_style=gnu-configure configure_args="--without-python --without-python3" short_desc="Alternate POSIX capabilities library" From 95d061180031fc687e6d20bccde02d07787b0fd5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:12 -0400 Subject: [PATCH 0347/1420] python3-xdg: rebuild for Python 3.11 --- 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 fe13e8feae09..0d3a55a53fc6 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=1 +revision=2 wrksrc="pyxdg-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 0b8e3db0d9f7744a2a730c559a4ffb44584928c0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:12 -0400 Subject: [PATCH 0348/1420] python3-txaio: rebuild for Python 3.11 --- 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 3f2b6657f512..4684b07b380a 100644 --- a/srcpkgs/python3-txaio/template +++ b/srcpkgs/python3-txaio/template @@ -1,7 +1,7 @@ # Template file for 'python3-txaio' pkgname=python3-txaio version=21.2.1 -revision=4 +revision=5 wrksrc="txaio-${version}" build_style=python3-module hostmakedepends="python3 python3-setuptools" From 49cdf8e338f881cbc0c2a667d7510fcf2db3df2d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:12 -0400 Subject: [PATCH 0349/1420] python3-hkdf: rebuild for Python 3.11 --- 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 f11c8ef90710..697e55df29b5 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=6 +revision=7 wrksrc="hkdf-${version}" build_style=python3-module hostmakedepends="python3 python3-setuptools" From becfaeb38d1ddfe28b555450d2bd42fef7c9e652 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:12 -0400 Subject: [PATCH 0350/1420] libixion: rebuild for Python 3.11 --- srcpkgs/libixion/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libixion/template b/srcpkgs/libixion/template index ef1a00100f53..d756081b0255 100644 --- a/srcpkgs/libixion/template +++ b/srcpkgs/libixion/template @@ -1,7 +1,7 @@ # Template file for 'libixion' pkgname=libixion version=0.17.0 -revision=2 +revision=3 build_style=gnu-configure hostmakedepends="pkg-config python3" makedepends="boost-devel fmt-devel mdds python3-devel spdlog" From 27613d3f8ea92694e0d60d6deefd214fbf1b11ba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:12 -0400 Subject: [PATCH 0351/1420] python3-json5: rebuild for Python 3.11 --- 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 934e8151d7a5..d087061bfbf2 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.9.6 -revision=3 +revision=4 wrksrc=pyjson5-${version} build_style=python3-module hostmakedepends="python3-setuptools" From c03a14bb28205ab8700931dd7484bd7dbcaa817d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:13 -0400 Subject: [PATCH 0352/1420] python3-jupyter_server: rebuild for Python 3.11 --- 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 4e6d8a6fe52a..afa55f2ac353 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=1.13.4 -revision=1 +revision=2 wrksrc="jupyter_server-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 84960d9046a46f16dc6116e6339a78aabebaf946 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:13 -0400 Subject: [PATCH 0353/1420] python3-ldap3: rebuild for Python 3.11 --- 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 ca9d7e828c95..3e2154215403 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=2 +revision=3 wrksrc="ldap3-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 39b802ee271a1cfc3ea7def5183038cc5b6f806b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:13 -0400 Subject: [PATCH 0354/1420] python3-deprecation: rebuild for Python 3.11 --- 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 52f8401576a4..25bde437c23b 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=3 +revision=4 wrksrc="deprecation-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From e2296ec70cf91fb9e7454213369b66eedce039de Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:13 -0400 Subject: [PATCH 0355/1420] python3-filetype: rebuild for Python 3.11 --- 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 97170f1398b1..47ff34afd156 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.0.5 -revision=5 +revision=6 wrksrc="filetype-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 0a5bcf87b8174951015b8dac60ac0e4fd5e08173 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:13 -0400 Subject: [PATCH 0356/1420] python3-pylast: rebuild for Python 3.11 --- 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 76e57a27f4cf..c957ec347fef 100644 --- a/srcpkgs/python3-pylast/template +++ b/srcpkgs/python3-pylast/template @@ -1,7 +1,7 @@ # Template file for 'python3-pylast' pkgname=python3-pylast version=4.1.0 -revision=4 +revision=5 wrksrc="pylast-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From b4b02ac58addd273efd769b95dcab2d86e3f9785 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:13 -0400 Subject: [PATCH 0357/1420] SoapySDR: rebuild for Python 3.11 --- srcpkgs/SoapySDR/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/SoapySDR/template b/srcpkgs/SoapySDR/template index 005ecf78a939..091905fa9022 100644 --- a/srcpkgs/SoapySDR/template +++ b/srcpkgs/SoapySDR/template @@ -1,7 +1,7 @@ # Template file for 'SoapySDR' pkgname=SoapySDR version=0.8.1 -revision=1 +revision=2 wrksrc="${pkgname}-soapy-sdr-${version}" build_style=cmake configure_args="-DPYTHON_EXECUTABLE=/usr/bin/python3" From 43ce0b48806ff20e53a740f98722e33a4d07f501 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:13 -0400 Subject: [PATCH 0358/1420] libiio: rebuild for Python 3.11 --- srcpkgs/libiio/template | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/srcpkgs/libiio/template b/srcpkgs/libiio/template index 70e3407d432a..a99334661a6f 100644 --- a/srcpkgs/libiio/template +++ b/srcpkgs/libiio/template @@ -1,11 +1,12 @@ # Template file for 'libiio' pkgname=libiio version=0.24 -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" -hostmakedepends="bison flex doxygen pkg-config python3 python3-Sphinx python3-sphinx_rtd_theme" +hostmakedepends="bison flex doxygen pkg-config + python3-setuptools python3-Sphinx python3-sphinx_rtd_theme" makedepends="avahi-libs-devel libaio-devel libserialport-devel libusb-devel libxml2-devel" short_desc="Library for interfacing with local and remote Linux IIO devices" maintainer="Evgeny Ermakov " From 39536d5cad0af4f2d4071a7197f29923759c47f4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:13 -0400 Subject: [PATCH 0359/1420] python3-matplotlib: update to 3.6.2. --- srcpkgs/python3-matplotlib/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template index 752ef542b6a6..54ea9c669be5 100644 --- a/srcpkgs/python3-matplotlib/template +++ b/srcpkgs/python3-matplotlib/template @@ -1,6 +1,6 @@ # Template file for 'python3-matplotlib' pkgname=python3-matplotlib -version=3.6.1 +version=3.6.2 revision=1 wrksrc="matplotlib-${version}" build_style=python3-module @@ -15,7 +15,7 @@ maintainer="Andrew J. Hesford " license="custom:matplotlib, BSD-3-Clause, MIT" homepage="https://matplotlib.org/" distfiles="${PYPI_SITE}/m/matplotlib/matplotlib-${version}.tar.gz" -checksum=e2d1b7225666f7e1bcc94c0bc9c587a82e3e8691da4757e357e5c2515222ee37 +checksum=b03fd10a1709d0101c054883b550f7c4c5e974f751e2680318759af005964990 replaces="python3-matplotlib-data>=0" # Comparison of images is too frail for validation make_check="no" From 1570457dc70e510baf428c97e4401200270105b7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:13 -0400 Subject: [PATCH 0360/1420] python3-pygccxml: rebuild for Python 3.11 --- 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 29ca21526eee..a541c662b09a 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=1 +revision=2 wrksrc="pygccxml-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Sphinx python3-sphinx_rtd_theme" From 2352ee2021e234e82c5a5f4fb95cb0758e384286 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:13 -0400 Subject: [PATCH 0361/1420] python3-pyqtgraph: rebuild for Python 3.11 --- 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 ac1a599fb6d9..102ea5d18bed 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.11.1 -revision=2 +revision=3 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}" build_style=python3-module make_install_args="--no-compile" From c3c4781d474eae503872f82a658622a8fbcdc6e7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:14 -0400 Subject: [PATCH 0362/1420] python3-scipy: update to 1.9.3. --- srcpkgs/python3-scipy/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-scipy/template b/srcpkgs/python3-scipy/template index 7623163daaf9..49d2bce6beaf 100644 --- a/srcpkgs/python3-scipy/template +++ b/srcpkgs/python3-scipy/template @@ -1,6 +1,6 @@ # Template file for 'python3-scipy' pkgname=python3-scipy -version=1.9.2 +version=1.9.3 revision=1 wrksrc="scipy-${version}" build_style=python3-module @@ -17,7 +17,7 @@ maintainer="Andrew J. Hesford " license="BSD-3-Clause" homepage="https://scipy.org/scipylib/" distfiles="https://github.com/scipy/scipy/releases/download/v${version}/scipy-${version}.tar.gz" -checksum=99e7720caefb8bca6ebf05c7d96078ed202881f61e0c68bd9e0f3e8097d6f794 +checksum=fbc5c05c85c1a02be77b1ff591087c83bc44579c6d2bd9fb798bb64ea5e1a027 build_options="openblas" From d9e63ceaed15e1f39cb91a3960ac26a176ce1d79 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:14 -0400 Subject: [PATCH 0363/1420] volk: rebuild for Python 3.11 --- srcpkgs/volk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/volk/template b/srcpkgs/volk/template index 3de82331071b..9b526944cb7c 100644 --- a/srcpkgs/volk/template +++ b/srcpkgs/volk/template @@ -1,7 +1,7 @@ # Template file for 'volk' pkgname=volk version=2.5.2 -revision=1 +revision=2 _cpu_features_gitrev="188d0d3c383689cdb6bb70dc6da2469faec84f61" create_wrksrc=yes build_style=cmake From d43a5effb51ff667268a2d4e0ea1cfd2ead51330 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:14 -0400 Subject: [PATCH 0364/1420] zbar: rebuild for Python 3.11 --- srcpkgs/zbar/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/zbar/template b/srcpkgs/zbar/template index e8c8bdc28aab..76e922883c42 100644 --- a/srcpkgs/zbar/template +++ b/srcpkgs/zbar/template @@ -1,7 +1,7 @@ # Template file for 'zbar' pkgname=zbar version=0.23.1 -revision=5 +revision=6 build_style=gnu-configure build_helper=gir configure_args="$(vopt_with qt) --with-gir --with-python=python3" From 99c1abec9741cbe5c77dcb6ae127dd8ece1cb7cd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:14 -0400 Subject: [PATCH 0365/1420] python3-cssselect: rebuild for Python 3.11 --- 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 117fd099c314..fd168534fef1 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.1.0 -revision=6 +revision=7 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b43cf901208fe2799ece73a7890cb3c79a5c7ad0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:14 -0400 Subject: [PATCH 0366/1420] keystone: rebuild for Python 3.11 --- srcpkgs/keystone/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/keystone/template b/srcpkgs/keystone/template index 4bea14d5ca2e..8b81fa240175 100644 --- a/srcpkgs/keystone/template +++ b/srcpkgs/keystone/template @@ -1,7 +1,7 @@ # Template file for 'keystone' pkgname=keystone version=0.9.2 -revision=3 +revision=4 build_style=cmake configure_args='-DBUILD_SHARED_LIBS=ON -DLLVM_TARGETS_TO_BUILD=all' hostmakedepends="python3-setuptools" From 4c042b58bb8cef55aeb79fdd6fba36d8bfca5f22 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:14 -0400 Subject: [PATCH 0367/1420] python3-filebytes: rebuild for Python 3.11 --- srcpkgs/python3-filebytes/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-filebytes/template b/srcpkgs/python3-filebytes/template index d353e4d06adc..43d869f65843 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=4 +revision=5 wrksrc="filebytes-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a0d2526f48a9a0e39aa0f9ed0a5d7ead8462fb9f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:14 -0400 Subject: [PATCH 0368/1420] libpeas: rebuild for Python 3.11 --- srcpkgs/libpeas/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libpeas/template b/srcpkgs/libpeas/template index c09e5a62d1c1..f7eba85d8336 100644 --- a/srcpkgs/libpeas/template +++ b/srcpkgs/libpeas/template @@ -1,7 +1,7 @@ # Template file for 'libpeas' pkgname=libpeas version=1.34.0 -revision=1 +revision=2 build_style=meson build_helper="gir" configure_args="-Ddemos=false -Dvapi=true" From daec3ad5de1e98b49e0e6816df9eafb7fb65a0a3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:14 -0400 Subject: [PATCH 0369/1420] python3-rdflib: rebuild for Python 3.11 --- 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 d91fc64d1491..2cd1761189d6 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=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 73f0536590b3af297ec9c5466e68bdd1404a6a04 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:14 -0400 Subject: [PATCH 0370/1420] python3-css-parser: rebuild for Python 3.11 --- 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 65d87553c263..71b0ee4b3c21 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.4 -revision=6 +revision=7 wrksrc="css-parser-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 2dd54cecd0ad49f72d7c1cfeda110e4ef705305f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:15 -0400 Subject: [PATCH 0371/1420] python3-keyring: rebuild for Python 3.11 --- 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 908e160000ec..ed8f92db8145 100644 --- a/srcpkgs/python3-keyring/template +++ b/srcpkgs/python3-keyring/template @@ -1,7 +1,7 @@ # Template file for 'python3-keyring' pkgname=python3-keyring version=23.9.3 -revision=1 +revision=2 wrksrc="keyring-${version}" build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" From 9f3f40641b23cfb820c027ed9e2b4c37865401fc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:15 -0400 Subject: [PATCH 0372/1420] python3-nbxmpp: rebuild for Python 3.11 --- 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 8fecbfd76ec0..d70e81a09adf 100644 --- a/srcpkgs/python3-nbxmpp/template +++ b/srcpkgs/python3-nbxmpp/template @@ -1,7 +1,7 @@ # Template file for 'python3-nbxmpp' pkgname=python3-nbxmpp version=3.2.4 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a22bf719932927fca313225144b73c4f20c9dc98 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:15 -0400 Subject: [PATCH 0373/1420] python3-netifaces: rebuild for Python 3.11 --- srcpkgs/python3-netifaces/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-netifaces/template b/srcpkgs/python3-netifaces/template index 2f0888dbe938..3cc8372c09dd 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=3 +revision=4 wrksrc="netifaces-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 42225269a64e9552d430f35dc9ecf2fbc7fac345 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:15 -0400 Subject: [PATCH 0374/1420] python3-axolotl-curve25519: rebuild for Python 3.11 --- srcpkgs/python3-axolotl-curve25519/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-axolotl-curve25519/template b/srcpkgs/python3-axolotl-curve25519/template index 97f4409f2f87..00cd092377e1 100644 --- a/srcpkgs/python3-axolotl-curve25519/template +++ b/srcpkgs/python3-axolotl-curve25519/template @@ -2,7 +2,7 @@ pkgname=python3-axolotl-curve25519 _pkgname=${pkgname/3/} version=0.4.1.post2 -revision=6 +revision=7 wrksrc="$_pkgname-$version" build_style=python3-module hostmakedepends="python3-setuptools" From ee9feb9211451273cdf977031d50d2d52f9fe44e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:15 -0400 Subject: [PATCH 0375/1420] python3-bottle: rebuild for Python 3.11 --- 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 fa7856f3e4d7..3dff136dd768 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.12.23 -revision=1 +revision=2 wrksrc="bottle-${version}" build_style=python3-module make_check_args="--deselect test/test_sendfile.py::TestSendFile::test_invalid" From 2261262bbb165fd729495fee05402173138aca11 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:15 -0400 Subject: [PATCH 0376/1420] python3-google-api-python-client: rebuild for Python 3.11 --- 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 e2622c8c0b8b..65a8f1e5b5fd 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.0.2 -revision=2 +revision=3 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d4730d08cb61d3bece7bb1d6b49040b0d6dd83e4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:15 -0400 Subject: [PATCH 0377/1420] python3-magic: rebuild for Python 3.11 --- 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 36dc526660d3..2f150331dd82 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=1 +revision=2 wrksrc=python-magic-$version build_style=python3-module hostmakedepends="python3-setuptools" From ef550d7babbd584cb7f27282926f82b4fd8be6da Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:15 -0400 Subject: [PATCH 0378/1420] python3-oauth2client: rebuild for Python 3.11 --- 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 be259d7a3ff0..dff10dc0eefd 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=5 +revision=6 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 63fcc43274086c33cd47a224bb1938489ebe3b2f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:15 -0400 Subject: [PATCH 0379/1420] python3-asn1crypto: rebuild for Python 3.11 --- 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 2d54a69aaa21..a6a2626e90b4 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=2 +revision=3 wrksrc="asn1crypto-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 9beb281bf8b8b843e39a903cdf6d712a7841ceb3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:15 -0400 Subject: [PATCH 0380/1420] python3-furl: rebuild for Python 3.11 --- 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 58431b24b382..480d30fd5355 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=3 +revision=4 wrksrc="furl-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a4533ac95f83ff14b9a9c61435a583a1d2abf4ea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:16 -0400 Subject: [PATCH 0381/1420] python3-scrypt: rebuild for Python 3.11 --- 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 823b5526e7c2..d10f72c1f101 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=5 +revision=6 wrksrc="scrypt-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 06284056b02985e6687b4d8eabfcf7274e4c2611 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:16 -0400 Subject: [PATCH 0382/1420] python3-vobject: rebuild for Python 3.11 --- 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 6399df97093e..27ae244ff069 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=5 +revision=6 wrksrc="vobject-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 2aaaab8d46c802e4ee759c8f1e38686bdb85b267 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:16 -0400 Subject: [PATCH 0383/1420] python3-passlib: rebuild for Python 3.11 --- 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 78a24bbc0a8b..ea72375e67c5 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=1 +revision=2 wrksrc="passlib-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 653ea7a08066649e4aacc23313ea835fc7f02e6b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:16 -0400 Subject: [PATCH 0384/1420] python3-PyBrowserID: rebuild for Python 3.11 --- 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 1fd8d7f2f798..d66f85b84ead 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=5 +revision=6 wrksrc="PyBrowserID-${version}" build_style=python3-module pycompile_module="browserid" From 06b8e7d56c93f05cd1c62d996cb396b6f27425a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:16 -0400 Subject: [PATCH 0385/1420] python3-hawkauthlib: rebuild for Python 3.11 --- 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 33a035c87335..15642840be44 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=5 +revision=6 wrksrc="hawkauthlib-${version}" build_style=python3-module pycompile_module="hawkauthlib" From 8d6595f07f882d074244a8cd3eec64b2b84e8348 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:16 -0400 Subject: [PATCH 0386/1420] libArcus: rebuild for Python 3.11 --- srcpkgs/libArcus/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libArcus/template b/srcpkgs/libArcus/template index 3831feba9f8c..d6fedecc5599 100644 --- a/srcpkgs/libArcus/template +++ b/srcpkgs/libArcus/template @@ -1,7 +1,7 @@ # Template file for 'libArcus' pkgname=libArcus version=4.13.1 -revision=3 +revision=4 build_style=cmake configure_args="-DBUILD_EXAMPLES=OFF" hostmakedepends="protobuf python3-sip-devel" From ebe47d73cebc71c8a63cd1eb57d48b3710069bdd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:16 -0400 Subject: [PATCH 0387/1420] python3-numpy-stl: rebuild for Python 3.11 --- 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 b0e934c7d55a..4f50a61216e5 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=1 +revision=2 wrksrc="numpy-stl-${version}" build_style=python3-module build_helper="numpy" From b24bc550d1e54ce0f573a2dc79c64323cb691c5d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:16 -0400 Subject: [PATCH 0388/1420] python3-shapely: rebuild for Python 3.11 --- 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 84d90a5aab8a..61b5a07d0904 100644 --- a/srcpkgs/python3-shapely/template +++ b/srcpkgs/python3-shapely/template @@ -1,7 +1,7 @@ # Template file for 'python3-shapely' pkgname=python3-shapely version=1.8.4 -revision=1 +revision=2 wrksrc="shapely-${version}" build_style=python3-module build_helper=numpy From 18a6d11fa2656e0a9dc45685940ae37755dbe88a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:16 -0400 Subject: [PATCH 0389/1420] python3-networkx: rebuild for Python 3.11 --- 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 0eb1945428b8..9191f9cf47a0 100644 --- a/srcpkgs/python3-networkx/template +++ b/srcpkgs/python3-networkx/template @@ -1,7 +1,7 @@ # Template file for 'python3-networkx' pkgname=python3-networkx version=2.6.3 -revision=2 +revision=3 wrksrc="networkx-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 33e40f90bf50bbf92ce6c9ca692919a2633867bb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:16 -0400 Subject: [PATCH 0390/1420] python3-pycollada: rebuild for Python 3.11 --- 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 89e7c15a05b1..347f70ab1341 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.7.2 -revision=1 +revision=2 wrksrc="pycollada-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 06e8878257f1e1e5b9ea5b86b49b6e49994e9cd0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:16 -0400 Subject: [PATCH 0391/1420] python3-pyglet: rebuild for Python 3.11 --- 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 cb8333021997..bde1162b6eb6 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=4 +revision=5 wrksrc="pyglet-${version}" build_style=python3-module hostmakedepends="python3-setuptools unzip" From 4948ffe4d4d19b397eda9d2138d7d5affe05b980 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:17 -0400 Subject: [PATCH 0392/1420] python3-rtree: rebuild for Python 3.11 --- 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 26812e0af5f9..d17c6a7a5faa 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=1 +revision=2 wrksrc="rtree-${version}" build_style=python3-module make_check_target="tests" From 94e4c1c130cc8d29d2398f8f3f04547747bcc330 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:17 -0400 Subject: [PATCH 0393/1420] python3-svg.path: rebuild for Python 3.11 --- 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 703b0a4d5267..2156d83cd2ff 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=1 +revision=2 wrksrc="svg.path-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 189fa95a1e996cd590574fa170f1eed48b609a9a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:17 -0400 Subject: [PATCH 0394/1420] python3-sympy: rebuild for Python 3.11 --- 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 0f304e80dbbc..6c70745b616e 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.11.1 -revision=1 +revision=2 wrksrc="sympy-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 856ff7ffdb0a3b764f527a06292b62ab28eb15d2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:17 -0400 Subject: [PATCH 0395/1420] python3-atspi: rebuild for Python 3.11 --- 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 bc33709ddd88..be8d5a8ade59 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=4 +revision=5 wrksrc="pyatspi-${version}" build_style=gnu-configure hostmakedepends="pkg-config python3" From 1d9b22aaadadfbdc466893213041dbd5dc73b745 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:17 -0400 Subject: [PATCH 0396/1420] python3-setproctitle: rebuild for Python 3.11 --- 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 36148a426f97..13c20b7629a9 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.2.1 -revision=2 +revision=3 wrksrc="setproctitle-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 57ad5862fe2d0234329be377347d22989b295006 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:17 -0400 Subject: [PATCH 0397/1420] python3-xapp: rebuild for Python 3.11 --- 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 369bbfdd8b71..b9d7d46361ec 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.2.2 -revision=1 +revision=2 build_style=python3-module pycompile_module="xapp" hostmakedepends="python3-setuptools" From d586c55a51f41f6ae13efd5311efcc5632fc5dc5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:17 -0400 Subject: [PATCH 0398/1420] python3-ConfigArgParse: rebuild for Python 3.11 --- 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 c1db1f71924f..644fb5b836a0 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.4.1 -revision=2 +revision=3 wrksrc="ConfigArgParse-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 855f9e1e5f53bf492b11503102669e17b28ffcee Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:17 -0400 Subject: [PATCH 0399/1420] python3-acme: rebuild for Python 3.11 --- 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 8427f106d3fa..876cefc317e8 100644 --- a/srcpkgs/python3-acme/template +++ b/srcpkgs/python3-acme/template @@ -1,7 +1,7 @@ # Template file for 'python3-acme' pkgname=python3-acme version=1.31.0 -revision=1 +revision=2 wrksrc="acme-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 133db91c306bb0543a780611bd0ee7dc66814ca9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:17 -0400 Subject: [PATCH 0400/1420] python3-parsedatetime: rebuild for Python 3.11 --- 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 ec2a6262a10e..6e76be7e9388 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=3 +revision=4 wrksrc="parsedatetime-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 1a72903303ee1397260cd3fc3e39a78ed30b6797 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:17 -0400 Subject: [PATCH 0401/1420] python3-gevent: rebuild for Python 3.11 --- 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 5bb446a6959b..c8ed0839894a 100644 --- a/srcpkgs/python3-gevent/template +++ b/srcpkgs/python3-gevent/template @@ -1,7 +1,7 @@ # Template file for 'python3-gevent' pkgname=python3-gevent version=21.1.2 -revision=2 +revision=3 wrksrc="gevent-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" From 67fe0d0585e71ced2f8b77acf71c564e7f903e22 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:18 -0400 Subject: [PATCH 0402/1420] python3-feedparser: rebuild for Python 3.11 --- 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 0d4fe4a1931c..46715d94bad7 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.8 -revision=2 +revision=3 wrksrc="feedparser-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From bb88541322c72e0b6867b8a33db6c0cbc9c11d43 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:18 -0400 Subject: [PATCH 0403/1420] python3-html5lib: rebuild for Python 3.11 --- srcpkgs/python3-html5lib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-html5lib/template b/srcpkgs/python3-html5lib/template index f3df8e0f79e7..3455f22b5c4a 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=2 +revision=3 wrksrc="html5lib-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 78beaef4f322dd40642a60bbd588d2791430b11e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:18 -0400 Subject: [PATCH 0404/1420] python3-xlib: rebuild for Python 3.11 --- 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 f8cdd0c9c09b..4a0f88bc8982 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.30 -revision=2 +revision=3 wrksrc=python-xlib-${version} build_style=python3-module hostmakedepends="python3-setuptools_scm" From 04f5c56b7ca0a425eb3578b16b263a57052d3b1c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:18 -0400 Subject: [PATCH 0405/1420] python3-llfuse: rebuild for Python 3.11 --- 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 891d2882e221..f6a40a69465c 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.4.2 -revision=1 +revision=2 wrksrc="llfuse-${version}" build_style=python3-module hostmakedepends="python3-setuptools pkg-config" From e438a6fa0653f9e66723c3fb15d00e8ebc2ae4fb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:18 -0400 Subject: [PATCH 0406/1420] python3-mutagen: rebuild for Python 3.11 --- 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 2b9c7db39ba9..d4f42763a4db 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=1 +revision=2 wrksrc="mutagen-${version}" build_style=python3-module hostmakedepends="python3-devel python3-setuptools" From dcda469e5210f01e4e6c0f2f6cd52aac94df3606 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:18 -0400 Subject: [PATCH 0407/1420] python3-Arrow: rebuild for Python 3.11 --- 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 fe1334639f09..e1af7cabbfac 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=1 +revision=2 wrksrc="arrow-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 3bbcfd382e8d9a0f8cd26a7f048c5f099af372a1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:18 -0400 Subject: [PATCH 0408/1420] python3-logfury: rebuild for Python 3.11 --- 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 58e0b6592736..b9ff6c9cfa16 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=2 +revision=3 wrksrc="logfury-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From 0a03783d118fff62cac8021a742f773770e429c2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:18 -0400 Subject: [PATCH 0409/1420] python3-botocore: rebuild for Python 3.11 --- 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 f28f9298954a..7eca63d703a6 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.24.33 -revision=1 +revision=2 wrksrc="botocore-${version}" build_style=python3-module # integration tests want aws credentials From 930ee2be2dd4878522ffb98d2a45fcb70c70c966 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:18 -0400 Subject: [PATCH 0410/1420] python3-authres: rebuild for Python 3.11 --- 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 69bb2ee980a3..4591f56465b3 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=5 +revision=6 wrksrc="authres-${version}" build_style=python3-module pycompile_module=authres From 3015ad03d180665425dc9b9231de9618366e3ce2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:18 -0400 Subject: [PATCH 0411/1420] python3-markdown-math: rebuild for Python 3.11 --- 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 d707e9c3ca70..b64180ac195c 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=2 +revision=3 wrksrc=python-markdown-math-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 256c2ac7d0dd2613e78e093d04b7279ebf3b520a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:19 -0400 Subject: [PATCH 0412/1420] python3-QtPy: rebuild for Python 3.11 --- 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 92c0b509dec6..dfc5a99cdfcd 100644 --- a/srcpkgs/python3-QtPy/template +++ b/srcpkgs/python3-QtPy/template @@ -1,7 +1,7 @@ # Template file for 'python3-QtPy' pkgname=python3-QtPy version=1.9.0 -revision=4 +revision=5 wrksrc=QtPy-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 7c8ebd3c170208043c72e9a0e659cd29ad7c64a6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:19 -0400 Subject: [PATCH 0413/1420] python3-editor: rebuild for Python 3.11 --- 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 baae71755b3e..b83d09885828 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=5 +revision=6 wrksrc="python-editor-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 482267c3c2a6364f759e165f3a6fd1c1b05a1570 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:19 -0400 Subject: [PATCH 0414/1420] python3-regex: rebuild for Python 3.11 --- 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 ca9184626b31..9fa4cec4606b 100644 --- a/srcpkgs/python3-regex/template +++ b/srcpkgs/python3-regex/template @@ -1,7 +1,7 @@ # Template file for 'python3-regex' pkgname=python3-regex version=2022.9.13 -revision=1 +revision=2 wrksrc="regex-${version}" build_style=python3-module hostmakedepends="python3-devel python3-setuptools" From cb5f3520b901c0fbaae86cbcabbc2d6cd160c4ef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:19 -0400 Subject: [PATCH 0415/1420] python3-fido2: rebuild for Python 3.11 --- 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 3655c957da90..3d0068625f2c 100644 --- a/srcpkgs/python3-fido2/template +++ b/srcpkgs/python3-fido2/template @@ -2,7 +2,7 @@ pkgname=python3-fido2 _pkgname=fido2 version=0.9.3 -revision=1 +revision=2 wrksrc="${_pkgname}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 93c9127d7cffdddbf0be3e8d3d930a07d642b982 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:19 -0400 Subject: [PATCH 0416/1420] downloader-cli: rebuild for Python 3.11 --- 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 a7be8744ea34..bc39bdee9173 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.3 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-urllib3 python3-downloader-cli" From 608f85a52d1d3c51577c7d6de9a38f0f4072bd7b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:19 -0400 Subject: [PATCH 0417/1420] python3-ffmpeg-python: rebuild for Python 3.11 --- 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 b0073d3774ed..90c06d70f637 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=4 +revision=5 wrksrc="ffmpeg-python-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a7a52ef17d357ddb3fa1d95ed6b5e58fe7c1b097 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:19 -0400 Subject: [PATCH 0418/1420] python3-itunespy: rebuild for Python 3.11 --- 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 c9d49fed524d..5e98adfddf3e 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 -revision=3 +revision=4 wrksrc="itunespy-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 16cfb3f88ae0ff1d13bd5353d7de40ef30af680f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:19 -0400 Subject: [PATCH 0419/1420] python3-musicbrainzngs: rebuild for Python 3.11 --- 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 69c5e4a29586..436027b1c49d 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=2 +revision=3 wrksrc="musicbrainzngs-${version}" build_style="python3-module" hostmakedepends="python3-setuptools" From 6130bc1c6abc90609d9696d4b56be9d9651b22b9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:19 -0400 Subject: [PATCH 0420/1420] python3-pyDes: rebuild for Python 3.11 --- 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 b7f647fdcba2..54d9828d1649 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=3 +revision=4 wrksrc="pyDes-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 11cbff95e45a4805ebec932b4e0947f373d9ed4c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:19 -0400 Subject: [PATCH 0421/1420] python3-pysocks: rebuild for Python 3.11 --- 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 7c7430bf34bf..48d8680e8d43 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=4 +revision=5 wrksrc="PySocks-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a50796097f11e0142faae2bf214a3e75db172e78 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:20 -0400 Subject: [PATCH 0422/1420] python3-simber: rebuild for Python 3.11 --- 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 20d06df337b7..1859cfcf00bd 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.4 -revision=1 +revision=2 wrksrc="simber-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 3de709dfe945dc2d9c2f093ba06e2c9c68a936e3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:20 -0400 Subject: [PATCH 0423/1420] python3-spotipy: rebuild for Python 3.11 --- 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 1132f7ca36ae..411b4d11d252 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.20.0 -revision=2 +revision=3 wrksrc="spotipy-${version}" build_style=python3-module hostmakedepends="pkg-config python3-setuptools" From ad02e00306aacd15d020e1a56132904a1908d55b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:20 -0400 Subject: [PATCH 0424/1420] python3-youtube-search: rebuild for Python 3.11 --- 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 a9f1b5a9f7a5..0bb10c0174da 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=1 +revision=2 wrksrc="youtube-search-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From f4f054c713a4dff8c4f0620fc65d059af48f6ea8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:20 -0400 Subject: [PATCH 0425/1420] python3-youtubesearch: rebuild for Python 3.11 --- 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 34b0fbfd7a88..a8952d7115c9 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=1 +revision=2 wrksrc="youtube-search-python-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From cf710bb40cf986e7652e085d80a5c8421a2e6136 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:20 -0400 Subject: [PATCH 0426/1420] python3-ytmusicapi: rebuild for Python 3.11 --- 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 4b3cd0e5483a..3edc6e32c5cd 100644 --- a/srcpkgs/python3-ytmusicapi/template +++ b/srcpkgs/python3-ytmusicapi/template @@ -1,7 +1,7 @@ # Template file for 'python3-ytmusicapi' pkgname=python3-ytmusicapi version=0.24.0 -revision=1 +revision=2 wrksrc="ytmusicapi-${version}" build_style=python3-pep517 make_install_target="ytmusicapi-*.*.*-*-*-*.whl" From 92f823295bea281f4b77ed1a968881ea453e1456 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:20 -0400 Subject: [PATCH 0427/1420] yt-dlp: rebuild for Python 3.11 --- 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 22ab525add6c..6016d928962a 100644 --- a/srcpkgs/yt-dlp/template +++ b/srcpkgs/yt-dlp/template @@ -1,7 +1,7 @@ # Template file for 'yt-dlp' pkgname=yt-dlp version=2022.10.04 -revision=1 +revision=2 wrksrc="$pkgname" build_style=python3-module hostmakedepends="python3-setuptools" From f49d60a92c6f8048b3fbde679864f4028f6fd08b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:20 -0400 Subject: [PATCH 0428/1420] opencv: rebuild for Python 3.11 --- srcpkgs/opencv/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/opencv/template b/srcpkgs/opencv/template index a46cf9d79a78..1709747d9656 100644 --- a/srcpkgs/opencv/template +++ b/srcpkgs/opencv/template @@ -1,7 +1,7 @@ # Template file for 'opencv' pkgname=opencv version=4.6.0 -revision=1 +revision=2 create_wrksrc=yes build_wrksrc=${pkgname}-${version} build_style=cmake From b33bc46a0a36b9703f6fcb2adf1bfa6bee046a96 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:20 -0400 Subject: [PATCH 0429/1420] python3-PyOpenGL-accelerate: rebuild for Python 3.11 --- 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 8ecd4c8052eb..ecd851055924 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.5 -revision=3 +revision=4 wrksrc="PyOpenGL-accelerate-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" From 5e29c7be4adbdcb8470b8701a641d17d5daf0fe1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:20 -0400 Subject: [PATCH 0430/1420] python3-cups: rebuild for Python 3.11 --- 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 fe4b571bfec9..7c8559b60538 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.1 -revision=3 +revision=4 wrksrc="pycups-${version}" build_style=python3-module hostmakedepends="python3-devel" From 5a58352c7fb2498a5e27546f4b3eab9547b28378 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:21 -0400 Subject: [PATCH 0431/1420] python3-rencode: rebuild for Python 3.11 --- 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 ade6eed37c37..cbab11167127 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.6 -revision=8 +revision=9 wrksrc="rencode-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython python3-wheel" From ced8b468160004673f95270c5a392a2a084b9940 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:21 -0400 Subject: [PATCH 0432/1420] pywal: rebuild for Python 3.11 --- srcpkgs/pywal/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template index 0935cb659810..11ce0b9a806b 100644 --- a/srcpkgs/pywal/template +++ b/srcpkgs/pywal/template @@ -1,7 +1,7 @@ # Template file for 'pywal' pkgname=pywal version=3.3.0 -revision=4 +revision=5 build_style=python3-module pycompile_module="pywal" hostmakedepends="python3-setuptools" From 22f7e01bf267f7a1e211f306248974a474bdcfae Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:21 -0400 Subject: [PATCH 0433/1420] python3-discid: rebuild for Python 3.11 --- 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 2d573eefc6c0..db8f7cd48830 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=5 +revision=6 wrksrc="discid-${version}" build_style=python3-module pycompile_module=discid From d3a1a61f39723cc519ddd892a068f5ca21726eae Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:21 -0400 Subject: [PATCH 0434/1420] python3-pycdio: rebuild for Python 3.11 --- 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 3c5f0188bd84..05e737493789 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.0 -revision=4 +revision=5 wrksrc=pycdio-${version} build_style=python3-module hostmakedepends="python3-setuptools pkg-config swig" From b73483c35d775fa45ffa432990673dbd6526d085 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:21 -0400 Subject: [PATCH 0435/1420] python3-ruamel.yaml: rebuild for Python 3.11 --- srcpkgs/python3-ruamel.yaml/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ruamel.yaml/template b/srcpkgs/python3-ruamel.yaml/template index 4f9dadaa0006..6a3116380877 100644 --- a/srcpkgs/python3-ruamel.yaml/template +++ b/srcpkgs/python3-ruamel.yaml/template @@ -1,7 +1,7 @@ # Template file for 'python3-ruamel.yaml' pkgname=python3-ruamel.yaml version=0.17.21 -revision=1 +revision=2 wrksrc="ruamel.yaml-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a94414ec885f26241487c89c6356d4d21f49d0ed Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:21 -0400 Subject: [PATCH 0436/1420] python3-curl: rebuild for Python 3.11 --- 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 7a728a5ff62d..c001cafdfa20 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.1 -revision=1 +revision=2 wrksrc="pycurl-${version}" build_style=python3-module hostmakedepends="python3-devel" From 34e45d519d56230e28362315d50329027b19ab6f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:21 -0400 Subject: [PATCH 0437/1420] python3-parse: rebuild for Python 3.11 --- 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 f25df45287ce..190a1ea78aeb 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.19.0 -revision=1 +revision=2 wrksrc="parse-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 5c6669aaed24b6c48c3fbcaca4cb26dfd2f2f81d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:21 -0400 Subject: [PATCH 0438/1420] python3-shodan: rebuild for Python 3.11 --- 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 ca8653d9b4d1..003cf0fa6920 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=1 +revision=2 wrksrc="shodan-python-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 4aa02f81ebf17eace6845b9ec9cef1e330c27b9b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:21 -0400 Subject: [PATCH 0439/1420] gbinder-python: rebuild for Python 3.11 --- srcpkgs/gbinder-python/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gbinder-python/template b/srcpkgs/gbinder-python/template index 6a2bbf71f849..61f60323adb1 100644 --- a/srcpkgs/gbinder-python/template +++ b/srcpkgs/gbinder-python/template @@ -1,7 +1,7 @@ # Template file for 'gbinder-python' pkgname=gbinder-python version=1.1.1 -revision=1 +revision=2 build_style=python3-module make_build_args="--cython" hostmakedepends="python3-Cython pkg-config" From 4e1f232b5eec4279aaaa3acfe8b463b248a728e5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:21 -0400 Subject: [PATCH 0440/1420] nftables: rebuild for Python 3.11 --- srcpkgs/nftables/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nftables/template b/srcpkgs/nftables/template index 6530e522f20f..fca24969c1c5 100644 --- a/srcpkgs/nftables/template +++ b/srcpkgs/nftables/template @@ -1,7 +1,7 @@ # Template file for 'nftables' pkgname=nftables version=1.0.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 46d1555f3f70ec98d8e9dd83e7b47d113142143d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:22 -0400 Subject: [PATCH 0441/1420] python3-Flask-RESTful: rebuild for Python 3.11 --- 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 fbaec115ddbf..fecb337f6947 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.9 -revision=2 +revision=3 wrksrc="flask-restful-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 9a5d73c1c201e0291b4cc00d6f0b3e732012ce36 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:22 -0400 Subject: [PATCH 0442/1420] python3-blessed: rebuild for Python 3.11 --- 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 34cea897ac34..522a0c830598 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.19.1 -revision=1 +revision=2 wrksrc="blessed-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 60f6bb215cb55a593d9e048b0cda2ac5a66ebd15 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:22 -0400 Subject: [PATCH 0443/1420] python3-pysigset: rebuild for Python 3.11 --- 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 52454f9bc251..4f41ff1c2b5b 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=2 +revision=3 wrksrc="pysigset-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 3ae8df766ed2919ee2c8f0884f7bbb21ea876713 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:22 -0400 Subject: [PATCH 0444/1420] python3-requests-unixsocket: rebuild for Python 3.11 --- 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 12e599d203f7..f918a4221ee7 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.3.0 -revision=1 +revision=2 wrksrc="requests-unixsocket-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-pbr" From 19693efb18f911f0678807e7c35eca016c6c7ba9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:22 -0400 Subject: [PATCH 0445/1420] python3-scruffy: rebuild for Python 3.11 --- srcpkgs/python3-scruffy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-scruffy/template b/srcpkgs/python3-scruffy/template index a89249695d9a..61a477c3608e 100644 --- a/srcpkgs/python3-scruffy/template +++ b/srcpkgs/python3-scruffy/template @@ -1,7 +1,7 @@ # Template file for 'python3-scruffy' pkgname=python3-scruffy version=0.3.8.2 -revision=3 +revision=4 wrksrc="scruffy-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 81b7e99b66887c3308cc467547fc89b7ef17adbe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:22 -0400 Subject: [PATCH 0446/1420] python3-pulsectl: rebuild for Python 3.11 --- 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 2c2a985b0b39..ec9e940ed2b0 100644 --- a/srcpkgs/python3-pulsectl/template +++ b/srcpkgs/python3-pulsectl/template @@ -1,7 +1,7 @@ # Template file for 'python3-pulsectl' pkgname=python3-pulsectl version=22.1.3 -revision=1 +revision=2 wrksrc="pulsectl-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 75538cba96b98757aa83289d9e98ee8af00a8201 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:22 -0400 Subject: [PATCH 0447/1420] python3-tasklib: rebuild for Python 3.11 --- 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 6a843cd148d7..27c53ad1fd69 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.4.3 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module make_check_target="tasklib/tests.py" From 18f9ffd5e17f2a5a3467e8a824c771cf25c0bfa9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:22 -0400 Subject: [PATCH 0448/1420] python3-stevedore: rebuild for Python 3.11 --- 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 8c4a4c8c9a39..a827842b7184 100644 --- a/srcpkgs/python3-stevedore/template +++ b/srcpkgs/python3-stevedore/template @@ -1,7 +1,7 @@ # Template file for 'python3-stevedore' pkgname=python3-stevedore version=3.2.0 -revision=3 +revision=4 wrksrc="stevedore-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-pbr" From 3d7ac178d6782a3392a76f0093c1e9b5227faee8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:22 -0400 Subject: [PATCH 0449/1420] python3-virtualenv: rebuild for Python 3.11 --- 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 ce3721e75092..4f567ad1afe6 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.16.3 -revision=1 +revision=2 wrksrc="virtualenv-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From 65734606d8823f710381e3baa71b9bf86649244b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:22 -0400 Subject: [PATCH 0450/1420] python3-virtualenv-clone: rebuild for Python 3.11 --- 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 307b80b7fb8e..06a8683a7f39 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=3 +revision=4 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b70b5e2b9ddf4002ab7721583b5fe144ad4f52fe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:23 -0400 Subject: [PATCH 0451/1420] libvirt-python3: rebuild for Python 3.11 --- srcpkgs/libvirt-python3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libvirt-python3/template b/srcpkgs/libvirt-python3/template index b8b2dc289c52..00afb9765b2b 100644 --- a/srcpkgs/libvirt-python3/template +++ b/srcpkgs/libvirt-python3/template @@ -1,7 +1,7 @@ # Template file for 'libvirt-python3' pkgname=libvirt-python3 version=8.8.0 -revision=1 +revision=2 wrksrc="libvirt-python-${version}" build_style=python3-module hostmakedepends="pkg-config python3-devel python3-setuptools libvirt-devel From d4605cc727f07c8a9db76a4d89a64fe24151d7d7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:23 -0400 Subject: [PATCH 0452/1420] python3-click-log: rebuild for Python 3.11 --- 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 58f90cdee7bb..c04df7e63a89 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.3.2 -revision=5 +revision=6 wrksrc="click-log-${version}" build_style="python3-module" hostmakedepends="python3-setuptools" From 893dc12d21ecb0d5bb7e1ddba59715ab47398478 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:23 -0400 Subject: [PATCH 0453/1420] python3-click-threading: rebuild for Python 3.11 --- 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 cbaca79c791f..605a6ff0a3d1 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=1 +revision=2 wrksrc="click-threading-${version}" build_style="python3-module" hostmakedepends="python3-setuptools" From 8df8ed02cb2a79d4db8ccfdb3269f9227a59509e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:23 -0400 Subject: [PATCH 0454/1420] libgexiv2: rebuild for Python 3.11 --- srcpkgs/libgexiv2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libgexiv2/template b/srcpkgs/libgexiv2/template index b432e466d746..8a8d2a869677 100644 --- a/srcpkgs/libgexiv2/template +++ b/srcpkgs/libgexiv2/template @@ -1,7 +1,7 @@ # Template file for 'libgexiv2' pkgname=libgexiv2 version=0.14.0 -revision=1 +revision=2 wrksrc="${pkgname/lib/}-${version}" build_style=meson build_helper="gir" From d4899a47d041b9b822a465ee5ac520795df83122 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:23 -0400 Subject: [PATCH 0455/1420] python3-distutils-extra: rebuild for Python 3.11 --- 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 fbdcf97f8527..3a8859f1451a 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=8 +revision=9 wrksrc="python-distutils-extra-$version" build_style=python3-module hostmakedepends="intltool python3-setuptools" From 2e66ba38406ffe35e232762b4a5307cb479f498f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:23 -0400 Subject: [PATCH 0456/1420] python3-minidb: rebuild for Python 3.11 --- 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 f901265dbc39..e97fd4afa1fe 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.6 -revision=1 +revision=2 wrksrc="minidb-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d52e49fd15bf6c3f696f60ca5c336ed19d57180c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:23 -0400 Subject: [PATCH 0457/1420] fifengine: rebuild for Python 3.11 --- srcpkgs/fifengine/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/fifengine/template b/srcpkgs/fifengine/template index 24d2f8521c8d..83195767f2b5 100644 --- a/srcpkgs/fifengine/template +++ b/srcpkgs/fifengine/template @@ -1,7 +1,7 @@ # Template file for 'fifengine' pkgname=fifengine version=0.4.2 -revision=9 +revision=10 build_style=cmake hostmakedepends="swig python3" makedepends="SDL2-devel SDL2_image-devel SDL2_ttf-devel boost-devel From 9f423dce0afa718570fef06e113bfa8d03b26a3b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:23 -0400 Subject: [PATCH 0458/1420] python3-Levenshtein: rebuild for Python 3.11 --- srcpkgs/python3-Levenshtein/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Levenshtein/template b/srcpkgs/python3-Levenshtein/template index d69f49a80e0b..136c5ed37232 100644 --- a/srcpkgs/python3-Levenshtein/template +++ b/srcpkgs/python3-Levenshtein/template @@ -1,7 +1,7 @@ # Template file for 'python3-Levenshtein' pkgname=python3-Levenshtein version=0.12.0 -revision=7 +revision=8 wrksrc=python-Levenshtein-$version build_style=python3-module hostmakedepends="python3-devel python3-setuptools" From 84fb325e7e2fccb7eb577203922fb60c24ce73c7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:23 -0400 Subject: [PATCH 0459/1420] python3-docopt: rebuild for Python 3.11 --- 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 e96fb179b7ca..d6cb5114408c 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=8 +revision=9 wrksrc="docopt-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 97b3ce6eb477b2d3227b6de8c80c3366036d56e1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:23 -0400 Subject: [PATCH 0460/1420] python3-pillow-simd: rebuild for Python 3.11 --- 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 66d332e789be..3692f0a06266 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=7.1.2 -revision=4 +revision=5 archs="x86_64*" wrksrc="pillow-simd-${version}" build_style=python3-module From 88664efe4e898e94d1b768320aebb095e3ece41e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:24 -0400 Subject: [PATCH 0461/1420] python3-keyutils: rebuild for Python 3.11 --- 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 21d5d99f9244..366d09fa0854 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=7 +revision=8 wrksrc=python-keyutils-$version build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" From 0cdb6549cad3a19966a913860f8ed006b96086ea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:24 -0400 Subject: [PATCH 0462/1420] python3-kitchen: rebuild for Python 3.11 --- 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 e766db6be6ef..0c4d5ff10255 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=6 +revision=7 wrksrc="kitchen-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 5d11b07469aeacfb3f7df3b241a64ff80d4c769d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:24 -0400 Subject: [PATCH 0463/1420] python3-gpg: rebuild for Python 3.11 --- srcpkgs/python3-gpg/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-gpg/template b/srcpkgs/python3-gpg/template index 85c88687e0b2..c1b3f9cea641 100644 --- a/srcpkgs/python3-gpg/template +++ b/srcpkgs/python3-gpg/template @@ -1,7 +1,7 @@ # Template file for 'python3-gpg' pkgname=python3-gpg version=1.10.0 -revision=8 +revision=9 wrksrc="gpg-${version}" build_style=python3-module hostmakedepends="swig gpgme-devel python3-devel" From cab737c00272e533c9e5dd3be8c6512cc2219926 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:24 -0400 Subject: [PATCH 0464/1420] python3-click-repl: rebuild for Python 3.11 --- 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 d4c78ba72332..69c42b01a45e 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=3 +revision=4 wrksrc="click-repl-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 75f0c2007952d50979a0d436cc146be3078a9455 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:24 -0400 Subject: [PATCH 0465/1420] python3-humanize: rebuild for Python 3.11 --- 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 3fda21f52955..12c6b7bef9d9 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.3.0 -revision=1 +revision=2 wrksrc="humanize-${version}" build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-wheel" From 84a64561325705275b85251cdb0454c2b52428c5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:24 -0400 Subject: [PATCH 0466/1420] python3-icalendar: rebuild for Python 3.11 --- 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 d5ee7e0996d6..e1500e977986 100644 --- a/srcpkgs/python3-icalendar/template +++ b/srcpkgs/python3-icalendar/template @@ -1,7 +1,7 @@ # Template file for 'python3-icalendar' pkgname=python3-icalendar version=4.0.7 -revision=2 +revision=3 wrksrc="icalendar-${version}" build_style=python3-module make_check_target=src/icalendar/tests From 97f58c29b6bc59a07dcb6c1dcc185d9e93d461c9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:24 -0400 Subject: [PATCH 0467/1420] python3-pyte: rebuild for Python 3.11 --- 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 ff0cb97d6696..87a49aa4c671 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=6 +revision=7 wrksrc="pyte-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 1f0311eda2da951a79c4fcfa688316651bba9b32 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:24 -0400 Subject: [PATCH 0468/1420] python3-pyfiglet: rebuild for Python 3.11 --- 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 7a4ad9eedeb6..06cc8bd704f0 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=4 +revision=5 wrksrc="pyfiglet-${version}" build_style="python3-module" pycompile_module="pyfiglet" From dccfcf4bff469bbd796c825977f77638853a3782 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:24 -0400 Subject: [PATCH 0469/1420] python3-telegram: rebuild for Python 3.11 --- 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 13b971bbd6b9..dd72409ba0ff 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.15.0 -revision=1 +revision=2 wrksrc=python-telegram-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 05c5bde74e6f79f4badeb1611fc73e817878a31c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:24 -0400 Subject: [PATCH 0470/1420] configshell-fb: rebuild for Python 3.11 --- 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 7a79e3b6935b..b78564365b3a 100644 --- a/srcpkgs/configshell-fb/template +++ b/srcpkgs/configshell-fb/template @@ -1,7 +1,7 @@ # Template file for 'configshell-fb' pkgname=configshell-fb version=1.1.29 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-six python3-urwid python3-parsing" From 59063122543dc63736096d8a0d8a6108c0e83801 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:25 -0400 Subject: [PATCH 0471/1420] rtslib-fb: rebuild for Python 3.11 --- 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 7efd3670d4a9..3795fb04afa7 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.1.74 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-six python3-pyudev" From fea7ecab3c442a35b1be6200e14ee4ec75b56eb7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:25 -0400 Subject: [PATCH 0472/1420] python3-smbc: rebuild for Python 3.11 --- 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 0fab4466cfa9..5727836a59a8 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.23 -revision=3 +revision=4 wrksrc="pysmbc-${version}" build_style=python3-module hostmakedepends="pkg-config python3-devel python3-setuptools" From b9691ab6fbb1e9dc89c06b60fe95ba88fb03e8e4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:25 -0400 Subject: [PATCH 0473/1420] python3-pyside2: rebuild for Python 3.11 --- .../python3-pyside2/patches/python3.11.patch | 211 ++++++++++++++++++ srcpkgs/python3-pyside2/template | 2 +- 2 files changed, 212 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/python3-pyside2/patches/python3.11.patch diff --git a/srcpkgs/python3-pyside2/patches/python3.11.patch b/srcpkgs/python3-pyside2/patches/python3.11.patch new file mode 100644 index 000000000000..3522f4e817e0 --- /dev/null +++ b/srcpkgs/python3-pyside2/patches/python3.11.patch @@ -0,0 +1,211 @@ +From b64ad27d8dfeeecaaa8a98051252a32c9d998df4 Mon Sep 17 00:00:00 2001 +From: Friedemann Kleint +Date: Thu, 9 Jun 2022 16:50:41 +0200 +Subject: [PATCH] libshiboken: Fix a crash in Shiboken::Object::isValid() for + Python 3.11 + +The function is passed type objects for class methods, which caused +it to crash. + +The first clause did not catch this, and so it was cast to SbkObject +below. + +Add a type check to prevent this. + +Pick-to: 6.3 6.2 5.15 +Task-number: PYSIDE-1960 +Change-Id: Icfdd6fefb7156ac5961444bd5395109849a1d66e +Reviewed-by: Christian Tismer +Reviewed-by: Qt CI Bot +--- + sources/shiboken2/libshiboken/basewrapper.cpp | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/sources/shiboken2/libshiboken/basewrapper.cpp b/sources/shiboken2/libshiboken/basewrapper.cpp +index d866d13..19418c8 100644 +--- a/sources/shiboken2/libshiboken/basewrapper.cpp ++++ b/sources/shiboken2/libshiboken/basewrapper.cpp +@@ -1468,6 +1468,7 @@ bool setCppPointer(SbkObject *sbkObj, PyTypeObject *desiredType, void *cptr) + bool isValid(PyObject *pyObj) + { + if (!pyObj || pyObj == Py_None ++ || PyType_Check(pyObj) != 0 + || Py_TYPE(Py_TYPE(pyObj)) != SbkObjectType_TypeF()) { + return true; + } +-- +2.35.3 + +From 77fdd690ca14e97b4c800c4127362ca0c83a716a Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= +Date: Thu, 9 Jun 2022 13:45:07 +0200 +Subject: [PATCH] Fix usage of Py_TYPE() for Python 3.11 + +The macro was changed to a function, no longer allowing for assignment. +--- + sources/pyside2/libpyside/pysideqflags.cpp | 2 +- + sources/pyside2/libpyside/pysidesignal.cpp | 2 +- + sources/pyside2/libpyside/pysideweakref.cpp | 2 +- + sources/shiboken2/libshiboken/basewrapper.cpp | 4 ++-- + sources/shiboken2/libshiboken/sbkenum.cpp | 2 +- + 5 files changed, 6 insertions(+), 6 deletions(-) + +diff --git a/sources/pyside2/libpyside/pysideqflags.cpp b/sources/pyside2/libpyside/pysideqflags.cpp +index b141ce1..ef0c8f4 100644 +--- a/sources/pyside2/libpyside/pysideqflags.cpp ++++ b/sources/pyside2/libpyside/pysideqflags.cpp +@@ -187,7 +187,7 @@ namespace QFlags + } + newspec.slots = SbkNewQFlagsType_spec.slots; + PyTypeObject *type = (PyTypeObject *)SbkType_FromSpec(&newspec); +- Py_TYPE(type) = &PyType_Type; ++ Py_SET_TYPE(type, &PyType_Type); + + PySideQFlagsType *flagsType = reinterpret_cast(type); + PepType_PFTP(flagsType)->converterPtr = &PepType_PFTP(flagsType)->converter; +diff --git a/sources/pyside2/libpyside/pysidesignal.cpp b/sources/pyside2/libpyside/pysidesignal.cpp +index 5c03031..5e42dba 100644 +--- a/sources/pyside2/libpyside/pysidesignal.cpp ++++ b/sources/pyside2/libpyside/pysidesignal.cpp +@@ -162,7 +162,7 @@ PyTypeObject *PySideSignalTypeF(void) + if (!type) { + type = reinterpret_cast(SbkType_FromSpec(&PySideSignalType_spec)); + PyTypeObject *hold = Py_TYPE(type); +- Py_TYPE(type) = PySideMetaSignalTypeF(); ++ Py_SET_TYPE(type, PySideMetaSignalTypeF()); + Py_INCREF(Py_TYPE(type)); + Py_DECREF(hold); + } +diff --git a/sources/pyside2/libpyside/pysideweakref.cpp b/sources/pyside2/libpyside/pysideweakref.cpp +index cd90634..730990f 100644 +--- a/sources/pyside2/libpyside/pysideweakref.cpp ++++ b/sources/pyside2/libpyside/pysideweakref.cpp +@@ -90,7 +90,7 @@ PyObject *create(PyObject *obj, PySideWeakRefFunction func, void *userData) + + if (Py_TYPE(PySideCallableObjectTypeF()) == 0) + { +- Py_TYPE(PySideCallableObjectTypeF()) = &PyType_Type; ++ Py_SET_TYPE(PySideCallableObjectTypeF(), &PyType_Type); + PyType_Ready(PySideCallableObjectTypeF()); + } + +diff --git a/sources/shiboken2/libshiboken/basewrapper.cpp b/sources/shiboken2/libshiboken/basewrapper.cpp +index 19418c8..0cc6fad 100644 +--- a/sources/shiboken2/libshiboken/basewrapper.cpp ++++ b/sources/shiboken2/libshiboken/basewrapper.cpp +@@ -366,7 +366,7 @@ SbkObjectType *SbkObject_TypeF(void) + static PyTypeObject *type = nullptr; + if (!type) { + type = reinterpret_cast(SbkType_FromSpec(&SbkObject_Type_spec)); +- Py_TYPE(type) = SbkObjectType_TypeF(); ++ Py_SET_TYPE(type, SbkObjectType_TypeF()); + Py_INCREF(Py_TYPE(type)); + type->tp_weaklistoffset = offsetof(SbkObject, weakreflist); + type->tp_dictoffset = offsetof(SbkObject, ob_dict); +@@ -1110,7 +1110,7 @@ introduceWrapperType(PyObject *enclosingObject, + typeSpec->slots[0].pfunc = reinterpret_cast(baseType ? baseType : SbkObject_TypeF()); + + PyObject *heaptype = SbkType_FromSpecWithBases(typeSpec, baseTypes); +- Py_TYPE(heaptype) = SbkObjectType_TypeF(); ++ Py_SET_TYPE(heaptype, SbkObjectType_TypeF()); + Py_INCREF(Py_TYPE(heaptype)); + auto *type = reinterpret_cast(heaptype); + #if PY_VERSION_HEX < 0x03000000 +diff --git a/sources/shiboken2/libshiboken/sbkenum.cpp b/sources/shiboken2/libshiboken/sbkenum.cpp +index 369b264..edcdc16 100644 +--- a/sources/shiboken2/libshiboken/sbkenum.cpp ++++ b/sources/shiboken2/libshiboken/sbkenum.cpp +@@ -753,7 +753,7 @@ + PyTuple_SetItem(bases, 0, reinterpret_cast(basetype)); + auto *type = reinterpret_cast(SbkType_FromSpecWithBases(&newspec, bases)); + PyErr_Print(); +- Py_TYPE(type) = SbkEnumType_TypeF(); ++ Py_SET_TYPE(type, SbkEnumType_TypeF()); + + auto *enumType = reinterpret_cast(type); + PepType_SETP(enumType)->cppName = cppName; +-- +2.35.3 + +From a09a1db8391243e6bb290ee66bb6e3afbb114c61 Mon Sep 17 00:00:00 2001 +From: Friedemann Kleint +Date: Fri, 24 Jun 2022 09:22:01 +0200 +Subject: libshiboken: Fix crashes with static strings in Python 3.11 + +In Python 3.11, some strings come with a refcount above decimal +1000000000, apparently indicating that they are interned. Replace the +mechanism by PyUnicode_InternFromString(). + +Task-number: PYSIDE-1960 +Pick-to: 6.3 6.2 5.15 +Change-Id: I6436afee351f89da5814b5d6bc76970b1b508168 +Reviewed-by: Qt CI Bot +Reviewed-by: Christian Tismer +Upstream: https://code.qt.io/cgit/pyside/pyside-setup.git/commit/?id=a09a1db8391243e6bb290ee66bb6e3afbb114c61 + +--- + sources/shiboken6/libshiboken/sbkstring.cpp | 19 +++++++++++++++++-- + 1 file changed, 17 insertions(+), 2 deletions(-) + +diff --git a/sources/shiboken6/libshiboken/sbkstring.cpp b/sources/shiboken6/libshiboken/sbkstring.cpp +index 7fd20173c..36fe50369 100644 +--- a/sources/shiboken2/libshiboken/sbkstring.cpp ++++ b/sources/shiboken2/libshiboken/sbkstring.cpp +@@ -5,8 +5,14 @@ + #include "sbkstaticstrings_p.h" + #include "autodecref.h" + +-#include +-#include ++#if PY_VERSION_HEX >= 0x030B0000 || defined(Py_LIMITED_API) ++# define USE_INTERN_STRINGS ++#endif ++ ++#ifndef USE_INTERN_STRINGS ++# include ++# include ++#endif + + namespace Shiboken + { +@@ -179,6 +185,13 @@ Py_ssize_t len(PyObject *str) + // PyObject *attr = PyObject_GetAttr(obj, name()); + // + ++#ifdef USE_INTERN_STRINGS ++PyObject *createStaticString(const char *str) ++{ ++ return PyUnicode_InternFromString(str); ++} ++#else ++ + using StaticStrings = std::unordered_set; + + static void finalizeStaticStrings(); // forward +@@ -225,6 +238,8 @@ PyObject *createStaticString(const char *str) + return result; + } + ++#endif // !USE_INTERN_STRINGS ++ + /////////////////////////////////////////////////////////////////////// + // + // PYSIDE-1019: Helper function for snake_case vs. camelCase names +-- +cgit v1.2.1 + +From 0000000000000000000000000000000000000000 Wed Jun 29 00:00:00 2022 +From: Petr Viktorin +Subject: Enable building for Python 3.11 + +diff -rU3 pyside-setup-opensource-src-5.15.2-orig/build_scripts/config.py pyside-setup-opensource-src-5.15.2/build_scripts/config.py +--- pyside-setup-opensource-src-5.15.2-orig/build_scripts/config.py 2022-01-05 14:26:23.000000000 +0100 ++++ pyside-setup-opensource-src-5.15.2/build_scripts/config.py 2022-06-29 14:38:24.918102384 +0200 +@@ -94,6 +94,7 @@ + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', ++ 'Programming Language :: Python :: 3.11', + ] + + self.setup_script_dir = None diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template index 971b77fe1ef8..068d4c984a2b 100644 --- a/srcpkgs/python3-pyside2/template +++ b/srcpkgs/python3-pyside2/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyside2' pkgname=python3-pyside2 version=5.15.5 -revision=1 +revision=2 _pkgname="pyside-setup-opensource-src-${version}" wrksrc="${_pkgname/%5.14.2.1/5.14.2}" build_wrksrc="sources/pyside2" From 887230d2c6a013ca91e81f28606c69f3957f3e2d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:25 -0400 Subject: [PATCH 0474/1420] python3-ijson: rebuild for Python 3.11 --- 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 0c310b0c22c7..8a1ecf4662f7 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.1.4 -revision=2 +revision=3 wrksrc="ijson-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From f4cda5353494fe060d5f39ce66bba8bf6691fe45 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:25 -0400 Subject: [PATCH 0475/1420] python3-macaroons: rebuild for Python 3.11 --- 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 4e3be864adcb..49d493539673 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=5 +revision=6 wrksrc="pymacaroons-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 538b6116151f80aa946ced167f8be03a3f08925c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:25 -0400 Subject: [PATCH 0476/1420] python3-matrix-common: rebuild for Python 3.11 --- 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 0f71657b1a53..939ddb475095 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=1 +revision=2 wrksrc="matrix-python-common-${version}" build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" From dc688e0fba1665476b6fb7f5e6f0843cc4cf007d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:25 -0400 Subject: [PATCH 0477/1420] python3-netaddr: rebuild for Python 3.11 --- 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 923951082db1..bdd7891fc7be 100644 --- a/srcpkgs/python3-netaddr/template +++ b/srcpkgs/python3-netaddr/template @@ -1,7 +1,7 @@ # Template file for 'python3-netaddr' pkgname=python3-netaddr version=0.8.0 -revision=2 +revision=3 wrksrc="netaddr-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 06d6340b5067b050e16d9628a778b420cc9a225c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:25 -0400 Subject: [PATCH 0478/1420] python3-phonenumbers: rebuild for Python 3.11 --- 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 dd6ddf92f928..ed37da36f3a0 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.12.57 -revision=1 +revision=2 wrksrc="phonenumbers-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 96f2edaf80682146b70a316de155157d17018aa7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:25 -0400 Subject: [PATCH 0479/1420] python3-psycopg2: rebuild for Python 3.11 --- 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 6e7d7ad9cb9d..1d3718589508 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.3 -revision=1 +revision=2 wrksrc="psycopg2-${version}" build_style=python3-module # Require postgresql-libs-devel to find executable: pg_config From b793a90bd1389b731e113f14054427a9756b414b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:25 -0400 Subject: [PATCH 0480/1420] python3-saml2: rebuild for Python 3.11 --- 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 9c12d9fd5a79..31b0b7b2eb85 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.2.1 -revision=1 +revision=2 wrksrc="pysaml2-${version}" build_style=python3-module make_check_args="--ignore=tests/test_36_mdbcache.py \ From 8042cee2e38176aa43abeaee9790dee476161a73 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:25 -0400 Subject: [PATCH 0481/1420] python3-signedjson: rebuild for Python 3.11 --- 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 8acbaa32ab11..0a942ed72be7 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=1 +revision=2 wrksrc="signedjson-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From 366ab8dabbe39c77875607150a8d1172b73ae68b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:26 -0400 Subject: [PATCH 0482/1420] python3-treq: rebuild for Python 3.11 --- 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 fae5807a5007..fab467b40d20 100644 --- a/srcpkgs/python3-treq/template +++ b/srcpkgs/python3-treq/template @@ -1,7 +1,7 @@ # Template file for 'python3-treq' pkgname=python3-treq version=22.2.0 -revision=1 +revision=2 wrksrc="treq-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-incremental" From 689f13db1b293756edf03e9994215829b301ab22 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:26 -0400 Subject: [PATCH 0483/1420] python3-dogpile.cache: rebuild for Python 3.11 --- 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 474444756f8a..971e88499de0 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=2 +revision=3 wrksrc="dogpile.cache-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 1ac7a1cfe0d65cf5ccec65385732bfb9455d8dab Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:26 -0400 Subject: [PATCH 0484/1420] python3-enzyme: rebuild for Python 3.11 --- 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 fd374ccac60e..4506cc58a2c5 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=5 +revision=6 wrksrc="enzyme-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From be90eb88988a7231fb0c37439825e467abc5a8a9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:26 -0400 Subject: [PATCH 0485/1420] python3-guessit: rebuild for Python 3.11 --- 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 9c9533ce479f..410ece2fd9cd 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=4 +revision=5 wrksrc="guessit-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From e5f037d4c34628ddab3c68e9751aa214611a17a1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:26 -0400 Subject: [PATCH 0486/1420] python3-pysrt: rebuild for Python 3.11 --- 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 175429082e85..251027b56c35 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=4 +revision=5 wrksrc="pysrt-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 7e44e1fea5034e703ba4e844fe95e20616890e2f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:26 -0400 Subject: [PATCH 0487/1420] python3-rarfile: rebuild for Python 3.11 --- 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 60d5d3e1bc6d..69f02a9be775 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=4 +revision=5 wrksrc="rarfile-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 032f93cc3969d224d43699b3e8b556cd2ddd9cf5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:26 -0400 Subject: [PATCH 0488/1420] python3-versioningit: rebuild for Python 3.11 --- srcpkgs/python3-versioningit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-versioningit/template b/srcpkgs/python3-versioningit/template index 4751d63ffa00..235efaf3f91d 100644 --- a/srcpkgs/python3-versioningit/template +++ b/srcpkgs/python3-versioningit/template @@ -1,7 +1,7 @@ # Template file for 'python3-versioningit' pkgname=python3-versioningit version=1.1.1 -revision=1 +revision=2 wrksrc="versioningit-$version" build_style=python3-pep517 hostmakedepends="python3-wheel" From 2e23e7ab706fc4b36621266c226b8dacc749b84a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:26 -0400 Subject: [PATCH 0489/1420] python3-aiohttp_socks: rebuild for Python 3.11 --- 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 e51b27df2e48..b19110f997e4 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.6.0 -revision=2 +revision=3 wrksrc="aiohttp_socks-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d9946c1d72c5e20a693d227157ff2e539676aec3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:26 -0400 Subject: [PATCH 0490/1420] python3-natsort: rebuild for Python 3.11 --- 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 64aaf872cb8f..496d52420264 100644 --- a/srcpkgs/python3-natsort/template +++ b/srcpkgs/python3-natsort/template @@ -1,7 +1,7 @@ # Template file for 'python3-natsort' pkgname=python3-natsort version=6.0.0 -revision=5 +revision=6 wrksrc="natsort-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 79c2a92f58317afde4b376c122fc2e1953d49eab Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:26 -0400 Subject: [PATCH 0491/1420] python3-urwidtrees: rebuild for Python 3.11 --- 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 20e9c4a508f8..1bf723661a1f 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=2 +revision=3 wrksrc="urwidtrees-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d03c60f54fea12b431474673eac57c8648df75c3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:27 -0400 Subject: [PATCH 0492/1420] python3-tqdm: rebuild for Python 3.11 --- 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 c4f5267576fc..f530f55b917c 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.48.2 -revision=4 +revision=5 wrksrc="tqdm-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 7b05bf51ad72feb21890dca184c86959dc2d3b15 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:27 -0400 Subject: [PATCH 0493/1420] python3-mpd2: rebuild for Python 3.11 --- 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 3661cfe47ce6..3cf3aa70ea13 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.0.4 -revision=2 +revision=3 wrksrc=python-mpd2-$version build_style=python3-module hostmakedepends="python3-setuptools" From d4680fbea26ea1089ee32cd4cf1ec532c45a0c76 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:27 -0400 Subject: [PATCH 0494/1420] python3-PyQt5-webengine: rebuild for Python 3.11 --- 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 7eeeeeb33abd..c092976dbf8b 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.6 -revision=1 +revision=2 wrksrc="PyQtWebEngine-${version}" build_style=sip-build build_helper="qmake" From 9d04d1692d0ebdf4124f80704cb377803a0e7d06 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:27 -0400 Subject: [PATCH 0495/1420] libsearpc: rebuild for Python 3.11 --- srcpkgs/libsearpc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template index 4541581e7737..86993ee52919 100644 --- a/srcpkgs/libsearpc/template +++ b/srcpkgs/libsearpc/template @@ -3,7 +3,7 @@ pkgname=libsearpc # floating tag 3.2-latest version=3.2.0.20220405 -revision=1 +revision=2 _gitrev=54145b03f4240222e336a9a2f402e93facefde65 wrksrc="${pkgname}-${_gitrev}" build_style=gnu-configure From 91ff1128be0917dfc0d61270125272988e75107e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:27 -0400 Subject: [PATCH 0496/1420] python3-reportlab: rebuild for Python 3.11 --- srcpkgs/python3-reportlab/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-reportlab/template b/srcpkgs/python3-reportlab/template index ce4d4f14d945..0d4c78851b6b 100644 --- a/srcpkgs/python3-reportlab/template +++ b/srcpkgs/python3-reportlab/template @@ -1,7 +1,7 @@ # Template file for 'python3-reportlab' pkgname=python3-reportlab version=3.6.11 -revision=2 +revision=3 wrksrc="reportlab-${version}" build_style=python3-module make_build_args="--use-system-libart" From 7e70afb9a934b806e4c4e925dffbd3958ab913b0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:27 -0400 Subject: [PATCH 0497/1420] python3-evdev: rebuild for Python 3.11 --- 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 4cb8835e340b..66b273302796 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.6.0 -revision=1 +revision=2 wrksrc="python-evdev-$version" build_style=python3-module hostmakedepends="python3-setuptools" From 7842db679f9bcfd8189c356de4609057595c4b41 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:27 -0400 Subject: [PATCH 0498/1420] python3-vdf: rebuild for Python 3.11 --- 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 dd2234a334fd..8450f1ae2297 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=2 +revision=3 wrksrc=vdf-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 8b91908e3f6a5e28b0e63a2c970bc273e078bbbb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:27 -0400 Subject: [PATCH 0499/1420] python3-M2Crypto: rebuild for Python 3.11 --- srcpkgs/python3-M2Crypto/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-M2Crypto/template b/srcpkgs/python3-M2Crypto/template index 999ec2d7cf77..e2560313b082 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.38.0 -revision=1 +revision=2 wrksrc="M2Crypto-${version}" build_style=python3-module hostmakedepends="python3-setuptools swig openssl-devel" From 2b7b7d1c2ce240afcf6065eb29698307372cf4c0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:27 -0400 Subject: [PATCH 0500/1420] python3-cypari2: rebuild for Python 3.11 --- 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 eacc14a9e8de..9ec1612ae45b 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.1.3 -revision=1 +revision=2 # This is precisely release 2.1.3 (Oct 3); but it's not tagged yet _githash=34198a78e86ba6ba684b25ae5ebb3e1a4e54c19f wrksrc=cypari2-${_githash} From 8cd550948ccb06b7c2c0fe3cbf992e3c5aff7229 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:27 -0400 Subject: [PATCH 0501/1420] python3-fpylll: rebuild for Python 3.11 --- 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 a6fb59a62266..c186c6f15901 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.5.7 -revision=1 +revision=2 wrksrc="fpylll-${version}" build_style=python3-module hostmakedepends="python3-Cython" From a9441218219672ff9d8aa37543065d6a842eddbe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:28 -0400 Subject: [PATCH 0502/1420] python3-jupyter_ipywidgets: rebuild for Python 3.11 --- srcpkgs/python3-jupyter_ipywidgets/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jupyter_ipywidgets/template b/srcpkgs/python3-jupyter_ipywidgets/template index d07272aeb3f0..babf6ecc55ca 100644 --- a/srcpkgs/python3-jupyter_ipywidgets/template +++ b/srcpkgs/python3-jupyter_ipywidgets/template @@ -1,7 +1,7 @@ # Template file for 'python3-jupyter_ipywidgets' pkgname=python3-jupyter_ipywidgets version=7.6.3 -revision=2 +revision=3 wrksrc="ipywidgets-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 8f118b516d99890d5f99ed0db2895bd36730b4c2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:28 -0400 Subject: [PATCH 0503/1420] python3-lrcalc: rebuild for Python 3.11 --- 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 9f335dac35dd..72096c436a6d 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=1 +revision=2 wrksrc=lrcalc-${version} build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" From c2039cbd52858d9abe6021a4ec184f5d6dff19a3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:28 -0400 Subject: [PATCH 0504/1420] python3-memory_allocator: rebuild for Python 3.11 --- 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 52e1590492fb..250d4b23de1f 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.3 -revision=1 +revision=2 wrksrc=memory_allocator-$version build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" From c4392896b40bb8c8d4768ee6116e2387ccc030ca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:28 -0400 Subject: [PATCH 0505/1420] python3-pplpy: rebuild for Python 3.11 --- 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 1cb69ffe6a07..d9c74b944094 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.7 -revision=1 +revision=2 wrksrc="pplpy-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" From 1162dcf13dbfb2d1d716bb496a531a838674a996 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:28 -0400 Subject: [PATCH 0506/1420] python3-primecountpy: rebuild for Python 3.11 --- 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 fecc774b3983..249cb46ed7c4 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.0 -revision=1 +revision=2 wrksrc=primecountpy-${version} build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" From 27a3856752b16fc10ad86922c3256ca36b8cb764 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:28 -0400 Subject: [PATCH 0507/1420] python3-CherryPy: rebuild for Python 3.11 --- 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 fd8e7b10f5c4..ca8ac2031093 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.8.0 -revision=1 +revision=2 wrksrc="CherryPy-${version}" build_style=python3-module make_check_args="--ignore cherrypy/test/test_session.py From adedfe730ee6ba37da596167df9e089df86f69d9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:28 -0400 Subject: [PATCH 0508/1420] python3-puremagic: rebuild for Python 3.11 --- 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 e1d5e656b306..7aa9137e82f6 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=1 +revision=2 wrksrc="puremagic-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d20df23973f078bd6d7fcfefacf5309326af4bfa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:28 -0400 Subject: [PATCH 0509/1420] python3-sabyenc3: rebuild for Python 3.11 --- srcpkgs/python3-sabyenc3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-sabyenc3/template b/srcpkgs/python3-sabyenc3/template index e0f10fd8b804..48f5c4930dde 100644 --- a/srcpkgs/python3-sabyenc3/template +++ b/srcpkgs/python3-sabyenc3/template @@ -1,7 +1,7 @@ # Template file for 'python3-sabyenc3' pkgname=python3-sabyenc3 version=4.0.2 -revision=3 +revision=4 wrksrc=sabyenc3-$version build_style=python3-module hostmakedepends="python3-setuptools" From 81fc3d62269c786b7e3422b2f5a349332c63f1a1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:28 -0400 Subject: [PATCH 0510/1420] python3-IPy: rebuild for Python 3.11 --- 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 3a5ed3dc60f1..9da5ee68be25 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=2 +revision=3 wrksrc="IPy-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From bd7714efbaee9644055cc58502261aa48f4a021c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:28 -0400 Subject: [PATCH 0511/1420] python3-ripe-atlas-cousteau: rebuild for Python 3.11 --- 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 3a49c6367f4e..2719605afd2e 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=5 +revision=6 wrksrc="ripe-atlas-cousteau-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 7e1dcdac4c35660e0ecdade511f9d1beb705779c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:29 -0400 Subject: [PATCH 0512/1420] python3-ripe-atlas-sagan: rebuild for Python 3.11 --- 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 5505d63a7f17..c971c9d3a34f 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=5 +revision=6 wrksrc="ripe.atlas.sagan-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From e6367f9feed16b81eaeff9e17ed2f132ff19a1f4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:29 -0400 Subject: [PATCH 0513/1420] avahi-discover: rebuild for Python 3.11 --- 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 669dc83bd472..f89e6536d963 100644 --- a/srcpkgs/avahi-discover/template +++ b/srcpkgs/avahi-discover/template @@ -5,7 +5,7 @@ # pkgname=avahi-discover version=0.8 -revision=4 +revision=5 wrksrc="avahi-${version}" build_style=gnu-configure build_helper="gir" From c174d4c2be0042a376b2b74933bba0dc0e058b10 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:29 -0400 Subject: [PATCH 0514/1420] python3-binaryornot: rebuild for Python 3.11 --- 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 d84f85eb17b5..f094e6e295b2 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=2 +revision=3 wrksrc="binaryornot-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 609d13ceea4d05444caad5270ab061036df937ad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:29 -0400 Subject: [PATCH 0515/1420] python3-debian: rebuild for Python 3.11 --- 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 64b081d0a3e5..c40da78591fe 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.40 -revision=2 +revision=3 wrksrc="python-debian-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 50a4dcd96381342546aad314a3ce10180e9d2886 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:29 -0400 Subject: [PATCH 0516/1420] python3-license-expression: rebuild for Python 3.11 --- 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 d658dbd185b7..677b3827b874 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=2 +revision=3 wrksrc="license-expression-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-setuptools_scm" From 441b99e2485e70960a140f6a05542b54a35a8461 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:29 -0400 Subject: [PATCH 0517/1420] python3-xdg-variables: rebuild for Python 3.11 --- srcpkgs/python3-xdg-variables/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-xdg-variables/template b/srcpkgs/python3-xdg-variables/template index 865bfb7fa867..033bcc30c9b8 100644 --- a/srcpkgs/python3-xdg-variables/template +++ b/srcpkgs/python3-xdg-variables/template @@ -1,7 +1,7 @@ # Template file for 'python3-xdg-variables' pkgname=python3-xdg-variables version=4.0.1 -revision=3 +revision=4 wrksrc="xdg-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From ced3aae244dd735ce47bfc1f6f2c30d0c82ee363 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:29 -0400 Subject: [PATCH 0518/1420] python3-enchant: rebuild for Python 3.11 --- 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 a679aba7a2db..a2b82d39801b 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.0 -revision=3 +revision=4 wrksrc="pyenchant-${version}" build_style=python3-module hostmakedepends="python3-setuptools enchant2-devel" From 9d22fb7051bd928ab6cdc7d41e9e07219dd83748 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:29 -0400 Subject: [PATCH 0519/1420] python3-pyxattr: rebuild for Python 3.11 --- 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 3e9d5fb2fc85..76af2f9ba4f9 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.7.2 -revision=2 +revision=3 wrksrc="pyxattr-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 741c9be331b256907784768b234ae2bbf8b6d3cd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:29 -0400 Subject: [PATCH 0520/1420] python3-cairocffi: rebuild for Python 3.11 --- 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 3443cbe3ad87..00460f94364a 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.3.0 -revision=1 +revision=2 wrksrc="cairocffi-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-cffi python3-wheel $(vopt_if xcb python3-xcffib)" From 28d7c3cf622d7f7265269359e899b37af8f09c1a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:29 -0400 Subject: [PATCH 0521/1420] python3-dotty-dict: rebuild for Python 3.11 --- 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 85956d6458ce..dd1895241047 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=1 +revision=2 wrksrc="dotty_dict-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 5e4a3ba35c5e1ace6682ac39e76f11ee6b3f1c67 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:30 -0400 Subject: [PATCH 0522/1420] python3-hid: rebuild for Python 3.11 --- 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 113cc5c62af7..7a0b0a38b011 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=1 +revision=2 wrksrc="pyhidapi-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From f328a4eca0bd2334ca29ef73ee2ae4f26e8614e7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:30 -0400 Subject: [PATCH 0523/1420] python3-hjson: rebuild for Python 3.11 --- 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 7aae774e54af..cddd6b819cad 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.0.1 -revision=3 +revision=4 wrksrc="hjson-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From ad9212796052d155039fd2eeb580e9d6b69e41f9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:30 -0400 Subject: [PATCH 0524/1420] python3-milc: rebuild for Python 3.11 --- 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 be56a326fb69..ac9902ab128a 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.6.5 -revision=1 +revision=2 wrksrc="milc-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d102949dd4fbfb5c7c75d863eadd7b06eab1c481 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:30 -0400 Subject: [PATCH 0525/1420] python3-nose2: rebuild for Python 3.11 --- 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 3f8c029ee795..7d4cb201e1b6 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.8.0 -revision=5 +revision=6 wrksrc="nose2-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From bfd2cc3410da52326346c0677fe2c016bcc51e62 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:30 -0400 Subject: [PATCH 0526/1420] python3-usb: rebuild for Python 3.11 --- 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 d76e7cda9f2c..8b2e9ab115a4 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.2.1 -revision=2 +revision=3 wrksrc="pyusb-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From ecc20a803e3957b652986930a3da9c3387a8ed66 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:30 -0400 Subject: [PATCH 0527/1420] python3-yapf: rebuild for Python 3.11 --- 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 c68b8c52c694..a9b9ed34adc8 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.32.0 -revision=1 +revision=2 wrksrc="yapf-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 8e0c5cce0b8f87f89e02165e9bede558da91da64 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:30 -0400 Subject: [PATCH 0528/1420] python3-zope.location: rebuild for Python 3.11 --- 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 91efa1487d8a..158b94efcfe5 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=5 +revision=6 wrksrc="zope.location-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-repoze.sphinx.autointerface From b7fac30a5133c649471cad64b289cdc0348e19da Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:30 -0400 Subject: [PATCH 0529/1420] python3-zope.testing: rebuild for Python 3.11 --- 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 899a501d08b3..26f047fbe8de 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=5 +revision=6 wrksrc="zope.testing-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 273a373d4855a5e98ab39230a9765ad5915772e8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:30 -0400 Subject: [PATCH 0530/1420] python3-zope.testrunner: rebuild for Python 3.11 --- 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 3c561f5a3c5b..c315772f2118 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=2 +revision=3 wrksrc="zope.testrunner-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Sphinx python3-sphinxcontrib" From bdab5b5a19dd6117ada6200ab7bb6ce1458ffc69 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:30 -0400 Subject: [PATCH 0531/1420] python3-argh: rebuild for Python 3.11 --- 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 48cf823f9f67..6ea902369db8 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=5 +revision=6 wrksrc="argh-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 6e5fd2281cfa28d5be7582e8f9a24f2e60d5160b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:31 -0400 Subject: [PATCH 0532/1420] python3-pathtools: rebuild for Python 3.11 --- 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 8ef09959edc4..55e9b27d00d5 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=5 +revision=6 wrksrc="pathtools-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 86dbd68fcfd5bb7603607539bdab4893b857aa2d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:31 -0400 Subject: [PATCH 0533/1420] python3-ansicolor: rebuild for Python 3.11 --- 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 f8e720e69361..905fbbc7ca87 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=6 +revision=7 wrksrc="ansicolor-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 35073531e9dbee8fca4f9201391e22268cea9011 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:31 -0400 Subject: [PATCH 0534/1420] python3-requests-oauthlib: rebuild for Python 3.11 --- 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 6c2265baa618..d2ce70efc418 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=5 +revision=6 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From c95adf749e8ddf9114c4ed9547e9a6cd143c92eb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:31 -0400 Subject: [PATCH 0535/1420] python3-outcome: rebuild for Python 3.11 --- 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 6894bb392146..2c573e739dc6 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.1.0 -revision=2 +revision=3 wrksrc="outcome-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 61d8967b8dacb9fbc38f6185db1c20f7bb74d48a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:31 -0400 Subject: [PATCH 0536/1420] python3-kaptan: rebuild for Python 3.11 --- 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 d5fc872e8bfb..bf8c9ebad1aa 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=5 +revision=6 wrksrc="kaptan-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 41cfb13be32f7f3d2206285314402ba4224e80a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:31 -0400 Subject: [PATCH 0537/1420] python3-libtmux: rebuild for Python 3.11 --- 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 e4f3736977de..5878a8ce7616 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.11.0 -revision=1 +revision=2 wrksrc="libtmux-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 0e7a5b1a5b8ca37d31048c964911db974afe4777 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:31 -0400 Subject: [PATCH 0538/1420] python3-requests-file: rebuild for Python 3.11 --- 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 a3add73a029e..7d145241d2b7 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=3 +revision=4 wrksrc="requests-file-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From cd2a9864f29cb55dda3ddd373ae159635255c3d7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:31 -0400 Subject: [PATCH 0539/1420] python3-numexpr: rebuild for Python 3.11 --- 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 79edf913658f..8016a4cbcfad 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.8.3 -revision=1 +revision=2 wrksrc="numexpr-${version}" build_style=python3-module build_helper=numpy From dc62ed6c9b4818faa60e4decefca824bfb2244e0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:31 -0400 Subject: [PATCH 0540/1420] python3-testtools: rebuild for Python 3.11 --- 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 b6f37942d94e..05c8de1bc56b 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=5 +revision=6 wrksrc="testtools-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-pbr" From 4811caebdf0275ac995c1097029566771e849de0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:31 -0400 Subject: [PATCH 0541/1420] python3-pandas: update to 1.5.1. --- srcpkgs/python3-pandas/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-pandas/template b/srcpkgs/python3-pandas/template index b498f2d64493..a232806588b6 100644 --- a/srcpkgs/python3-pandas/template +++ b/srcpkgs/python3-pandas/template @@ -1,7 +1,7 @@ # Template file for 'python3-pandas' pkgname=python3-pandas -version=1.5.0 -revision=2 +version=1.5.1 +revision=1 wrksrc="pandas-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython python3-numpy" @@ -14,7 +14,7 @@ license="BSD-3-Clause" homepage="https://pandas.pydata.org/" changelog="https://pandas.pydata.org/pandas-docs/stable/whatsnew/index.html" distfiles="https://github.com/pandas-dev/pandas/archive/v${version}.tar.gz" -checksum=ab23595e2105e2595b14c37f5e88a24d065eb60432e9f45c78f8613ba956eacd +checksum=b539bae7def51908a6ac90ce36e66e8e04ff26dd14b9422caedffebf08c98abc # Builds seem to sometimes have missing symbol problems; # the intermittent nature suggests this might be a race disable_parallel_build=yes From a6e028c0a06e79645795eb3e6e6743df406c654b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:32 -0400 Subject: [PATCH 0542/1420] python3-joblib: rebuild for Python 3.11 --- 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 2294e969abfd..034298adb159 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.0.1 -revision=2 +revision=3 wrksrc="joblib-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 5366fa5d199f50155c08bbffdfad98331984a8e3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:32 -0400 Subject: [PATCH 0543/1420] python3-threadpoolctl: rebuild for Python 3.11 --- 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 7856b9481fcd..f8dc566e7770 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.1.0 -revision=1 +revision=2 wrksrc="threadpoolctl-${version}" build_style=python3-pep517 hostmakedepends="python3-flit_core" From dcf118c5b8798a2e033de007968486046a1edc63 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:32 -0400 Subject: [PATCH 0544/1420] python3-imageio: update to 2.22.3. --- srcpkgs/python3-imageio/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-imageio/template b/srcpkgs/python3-imageio/template index d701c2b0da50..7c98d9389f23 100644 --- a/srcpkgs/python3-imageio/template +++ b/srcpkgs/python3-imageio/template @@ -1,13 +1,13 @@ # Template file for 'python3-imageio' pkgname=python3-imageio -version=2.22.1 +version=2.22.3 revision=1 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module # Ignored tests have unpackaged dependencies or require missing data files make_check_args="--ignore=tests/test_pillow.py --ignore=tests/test_ffmpeg.py --ignore=tests/test_ffmpeg_info.py --ignore=tests/test_freeimage.py - -k not((test_format_manager)or(test_preferring_arbitrary))" + -k not((test_format_manager)or(test_preferring_arbitrary)or(test_missing_format))" hostmakedepends="python3-setuptools" depends="python3-numpy python3-Pillow" checkdepends="python3-pytest python3-tifffile python3-psutil @@ -17,7 +17,7 @@ maintainer="Andrew J. Hesford " license="BSD-2-Clause" homepage="https://github.com/imageio/imageio" distfiles="${homepage}/archive/v${version}.tar.gz" -checksum=c9a7a0a89d7fc43f4b1d1bcb4ce2ed53d10df2890fa0e6ae6cccdc85533c0c0d +checksum=8c44d683482e61f9c6b288d53f157a5362ba93639f1fc55000998d1c36446e03 post_install() { vlicense LICENSE From 3df9aa519e3d6020cb190d6a94d1fe52b9af7af8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:32 -0400 Subject: [PATCH 0545/1420] python3-pywt: rebuild for Python 3.11 --- 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 0a694f01a0b4..30b7ca35a000 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.4.1 -revision=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module build_helper="numpy" From 60dc3326344187844d70d0b24ae8c1b11bd7b961 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:32 -0400 Subject: [PATCH 0546/1420] python3-tifffile: rebuild for Python 3.11 --- 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 8393e0924b72..18ed4b66fd92 100644 --- a/srcpkgs/python3-tifffile/template +++ b/srcpkgs/python3-tifffile/template @@ -1,7 +1,7 @@ # Template file for 'python3-tifffile' pkgname=python3-tifffile version=2022.10.10 -revision=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b853580c822539babe7372e567a47014351312eb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:32 -0400 Subject: [PATCH 0547/1420] python3-html2text: rebuild for Python 3.11 --- 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 59e847fc5d12..ea1700bf51df 100644 --- a/srcpkgs/python3-html2text/template +++ b/srcpkgs/python3-html2text/template @@ -1,7 +1,7 @@ # Template file for 'python3-html2text' pkgname=python3-html2text version=2020.1.16 -revision=4 +revision=5 wrksrc="${pkgname#*-}-${version}" build_style=python3-module pycompile_module="html2text" From 155f2d5851830d2a4e4f5afaba1bf10a1d392b1f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:32 -0400 Subject: [PATCH 0548/1420] python3-hypercorn: rebuild for Python 3.11 --- srcpkgs/python3-hypercorn/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-hypercorn/template b/srcpkgs/python3-hypercorn/template index 05ceb3a2e0d4..383a4076cafd 100644 --- a/srcpkgs/python3-hypercorn/template +++ b/srcpkgs/python3-hypercorn/template @@ -1,7 +1,7 @@ # Template file for 'python3-hypercorn' pkgname=python3-hypercorn version=0.14.3 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-pep517 hostmakedepends="python3-poetry-core" From 830f6c52d7aaf2a85f80ff951948e71649743114 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:32 -0400 Subject: [PATCH 0549/1420] python3-PyVirtualDisplay: rebuild for Python 3.11 --- 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 2e44847e5219..3ce00a0c1d26 100644 --- a/srcpkgs/python3-PyVirtualDisplay/template +++ b/srcpkgs/python3-PyVirtualDisplay/template @@ -1,7 +1,7 @@ # Template file for 'python3-PyVirtualDisplay' pkgname=python3-PyVirtualDisplay version=2.2 -revision=2 +revision=3 wrksrc=PyVirtualDisplay-${version} build_style=python3-module hostmakedepends="python3-setuptools" From b25e56daad09455d958da8f2a37d428242dd90f7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:32 -0400 Subject: [PATCH 0550/1420] python3-execnet: rebuild for Python 3.11 --- 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 0b3e869180fe..d30e9893f146 100644 --- a/srcpkgs/python3-execnet/template +++ b/srcpkgs/python3-execnet/template @@ -1,7 +1,7 @@ # Template file for 'python3-execnet' pkgname=python3-execnet version=1.9.0 -revision=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-setuptools_scm" From 4a8da34d6d2c7d7e712ff676ead1f76f26a6de7e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:32 -0400 Subject: [PATCH 0551/1420] python3-pytest-forked: rebuild for Python 3.11 --- 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 df82db9de161..22ffe8f05306 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.4.0 -revision=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-setuptools_scm" From 90c6a4e352fa938a70b930d7452bb19600922060 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:33 -0400 Subject: [PATCH 0552/1420] python3-httpbin: rebuild for Python 3.11 --- 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 36f42326bedd..527dd7eeba2e 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.7.0 -revision=1 +revision=2 wrksrc="httpbin-$version" build_style=python3-module hostmakedepends="python3-setuptools" From a477b21a2c4e3bfa67f9ef5966c06c7b628afefa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:33 -0400 Subject: [PATCH 0553/1420] flake8: rebuild for Python 3.11 --- srcpkgs/flake8/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template index 549c3cbf027d..c38f2bb41551 100644 --- a/srcpkgs/flake8/template +++ b/srcpkgs/flake8/template @@ -1,7 +1,7 @@ # Template file for 'flake8' pkgname=flake8 version=5.0.4 -revision=1 +revision=2 build_style=python3-module make_check_args="--deselect=tests/unit/plugins/pycodestyle_test.py" hostmakedepends="python3-setuptools" From d35209b65c6ef5d8144de86b99f478e3cce026de Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:33 -0400 Subject: [PATCH 0554/1420] python3-pytest-asyncio: update to 0.19.0. --- srcpkgs/python3-pytest-asyncio/template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template index 850b48bc683c..c55d53a8c52b 100644 --- a/srcpkgs/python3-pytest-asyncio/template +++ b/srcpkgs/python3-pytest-asyncio/template @@ -1,10 +1,10 @@ # Template file for 'python3-pytest-asyncio' pkgname=python3-pytest-asyncio -version=0.18.3 +version=0.19.0 revision=1 wrksrc="pytest-asyncio-${version}" -build_style=python3-module -hostmakedepends="python3-setuptools_scm" +build_style=python3-pep517 +hostmakedepends="python3-setuptools_scm python3-wheel" depends="python3-pytest" checkdepends="$depends python3-hypothesis" short_desc="Pytest support for asyncio" @@ -12,7 +12,7 @@ maintainer="Orphaned " license="Apache-2.0" homepage="https://github.com/pytest-dev/pytest-asyncio" distfiles="${PYPI_SITE}/p/pytest-asyncio/pytest-asyncio-${version}.tar.gz" -checksum=7659bdb0a9eb9c6e3ef992eef11a2b3e69697800ad02fb06374a210d85b29f91 +checksum=ac4ebf3b6207259750bc32f4c1d8fcd7e79739edbc67ad0c58dd150b1d072fed do_check() { local skiptests="test_auto_mode_cmdline or \ From 0932ccbbc65dbff9833ba5aa8b2393f948c0a5d2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:33 -0400 Subject: [PATCH 0555/1420] python3-pyqt6: rebuild for Python 3.11 --- 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 d9c4b139d7de..a11db2865853 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.3.1 -revision=1 +revision=2 wrksrc=PyQt6-$version build_style=sip-build build_helper=qemu From c2340eeebd1b4431d10ba1573bd859571d17ca41 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:33 -0400 Subject: [PATCH 0556/1420] python3-pytools: rebuild for Python 3.11 --- 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 5c2ed5c5e1f8..5680e407e485 100644 --- a/srcpkgs/python3-pytools/template +++ b/srcpkgs/python3-pytools/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytools' pkgname=python3-pytools version=2022.1.12 -revision=1 +revision=2 wrksrc=${pkgname#*-}-${version} build_style=python3-module hostmakedepends="python3-setuptools" From e14b41fa4fb34ee83503dfde6d3b1d3f31477ae4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:33 -0400 Subject: [PATCH 0557/1420] python3-pywinrm: rebuild for Python 3.11 --- 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 642166e13b6e..d911b2c5f5be 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.4.3 -revision=1 +revision=2 wrksrc="pywinrm-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 4fb61a5b56d6bbf3460b79098279b2e48dfc47c6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:33 -0400 Subject: [PATCH 0558/1420] python3-audioread: rebuild for Python 3.11 --- 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 58ab0f1f3a6e..1251f56d642e 100644 --- a/srcpkgs/python3-audioread/template +++ b/srcpkgs/python3-audioread/template @@ -1,7 +1,7 @@ # Template file for 'python3-audioread' pkgname=python3-audioread version=2.1.9 -revision=1 +revision=2 wrksrc="audioread-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 20d1170b7143b3bfb37cafcc292d8897acbc14ee Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:33 -0400 Subject: [PATCH 0559/1420] python3-inflate64: rebuild for Python 3.11 --- 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 c4baefb6de36..260cb4148d4b 100644 --- a/srcpkgs/python3-inflate64/template +++ b/srcpkgs/python3-inflate64/template @@ -1,7 +1,7 @@ # Template file for 'python3-inflate64' pkgname=python3-inflate64 version=0.3.0 -revision=1 +revision=2 wrksrc="inflate64-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 5342f9b3e225db8c85f6d790e24bd28c02645086 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:33 -0400 Subject: [PATCH 0560/1420] python3-multivolumefile: rebuild for Python 3.11 --- 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 4aa4ee9c4577..23c15b506ff3 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=1 +revision=2 wrksrc="multivolumefile-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From ff2efddeb6f5511a4c9dbc1626ffed504e78cd09 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:34 -0400 Subject: [PATCH 0561/1420] python3-pybcj: rebuild for Python 3.11 --- 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 420b7ce605de..f254f54aafed 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.1 -revision=1 +revision=2 wrksrc="pybcj-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From 7580a838e3a75b1898f6c44a8c84d4666a7c9dca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:34 -0400 Subject: [PATCH 0562/1420] python3-pyppmd: rebuild for Python 3.11 --- 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 353358d46d74..6e45b7f4ca34 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.0.0 -revision=1 +revision=2 wrksrc="pyppmd-${version}" build_style=python3-module make_check_args="--noconftest --ignore=tests/test_benchmark.py" From e8983911d2cf6326f2f4940d053175d39957e0c4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:34 -0400 Subject: [PATCH 0563/1420] python3-pyzstd: rebuild for Python 3.11 --- 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 758ef737250e..e9136e9045e9 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.15.3 -revision=1 +revision=2 wrksrc="pyzstd-${version}" build_style=python3-module make_build_args="--dynamic-link-zstd" From 914afd1c3f77898ca67f44f011dd04d94f2ce278 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:34 -0400 Subject: [PATCH 0564/1420] python3-texttable: rebuild for Python 3.11 --- 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 c0f9e8b84ea7..026370987f48 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=1 +revision=2 wrksrc="texttable-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From da748b7659908f28d43baedcffbb26eb84e123db Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:34 -0400 Subject: [PATCH 0565/1420] python3-colored-traceback: rebuild for Python 3.11 --- 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 a19732803bcc..018019eb5920 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.3.0 -revision=1 +revision=2 wrksrc="colored-traceback-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From faf520db7d1554e2b8572c70718548791a141288 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:34 -0400 Subject: [PATCH 0566/1420] python3-intervaltree: rebuild for Python 3.11 --- 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 94091ac4d81d..9a5f7255fa6b 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=2 +revision=3 wrksrc="intervaltree-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From ad193c158d42f480e758193b18ee30a8bb5d205f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:34 -0400 Subject: [PATCH 0567/1420] python3-pyelftools: rebuild for Python 3.11 --- 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 de446f9da947..09dbb3c2371c 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.29 -revision=1 +revision=2 wrksrc="pyelftools-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 2832e3e26e417f07de4f564513ffcfe2164e6cde Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:34 -0400 Subject: [PATCH 0568/1420] python3-ropgadget: rebuild for Python 3.11 --- 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 429eabe45863..42578cae09dd 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.1 -revision=1 +revision=2 wrksrc="ROPGadget-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From c20c41af77c1b560e6699104f3dc9e2826b10896 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:34 -0400 Subject: [PATCH 0569/1420] python3-userpath: rebuild for Python 3.11 --- 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 41390afabaad..a08d889e99f3 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.8.0 -revision=1 +revision=2 wrksrc="userpath-${version}" build_style=python3-pep517 hostmakedepends="hatchling python3-wheel" From b837edd9cdccaed61967c60609c3be4110b8cf15 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:34 -0400 Subject: [PATCH 0570/1420] python3-pygame: rebuild for Python 3.11 --- 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 276efd77c088..941d5c6ed885 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.1.2 -revision=1 +revision=2 wrksrc="pygame-${version}" build_style=python3-module make_build_args="cython" From 23192a0a0ef806cb9566a7be004225eb24736bc3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:35 -0400 Subject: [PATCH 0571/1420] python3-Arpeggio: rebuild for Python 3.11 --- 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 941fe2b4fdf1..fe6050ba2a8f 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=1 +revision=2 wrksrc="Arpeggio-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-wheel" From 92d08a9abac77229bad37e535346b7480fbdcded Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:35 -0400 Subject: [PATCH 0572/1420] python3-geojson: rebuild for Python 3.11 --- 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 26cb68bea1fa..8dbdb5487e89 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=4 +revision=5 wrksrc="geojson-${version}" build_style=python3-module pycompile_module="geojson" From ccee48d01b740d3963a8aecd56970aa76684dc2e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:35 -0400 Subject: [PATCH 0573/1420] python3-nose: rebuild for Python 3.11 --- srcpkgs/python3-nose/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-nose/template b/srcpkgs/python3-nose/template index 58a676fd9f32..87557bbc8c1b 100644 --- a/srcpkgs/python3-nose/template +++ b/srcpkgs/python3-nose/template @@ -1,7 +1,7 @@ # Template file for 'python3-nose' pkgname=python3-nose version=1.3.7 -revision=8 +revision=9 wrksrc="nose-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 865ee62aab3605b26304e5f32d9a7f7c0e9cdfcc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:35 -0400 Subject: [PATCH 0574/1420] python3-mypy_extensions: rebuild for Python 3.11 --- 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 f3b420936d6c..ccdec860a471 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=0.4.3 -revision=4 +revision=5 wrksrc="mypy_extensions-${version}" build_style=python3-module pycompile_module="mypy_extensions.py" From f3fd8b8394e40188f6feeacc3210701c9855888a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:35 -0400 Subject: [PATCH 0575/1420] python3-typed-ast: rebuild for Python 3.11 --- srcpkgs/python3-typed-ast/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-typed-ast/template b/srcpkgs/python3-typed-ast/template index 647b2c22973c..5f8a69e37e7e 100644 --- a/srcpkgs/python3-typed-ast/template +++ b/srcpkgs/python3-typed-ast/template @@ -1,7 +1,7 @@ # Template file for 'python3-typed-ast' pkgname=python3-typed-ast version=1.5.4 -revision=1 +revision=2 wrksrc="typed_ast-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 104849e63ab7ad0693f8b2f7fcda925faea13d65 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:35 -0400 Subject: [PATCH 0576/1420] python3-cjkwrap: rebuild for Python 3.11 --- 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 fdc4296e36e3..6e64c710e0d6 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=5 +revision=6 wrksrc="cjkwrap-v${version}" build_style=python3-module pycompile_module="cjkwrap.py" From 40efb061cf17315198c58507fc736dd0d0a6f210 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:35 -0400 Subject: [PATCH 0577/1420] python3-mistune2: rebuild for Python 3.11 --- 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 7be37071593f..ab2c26d33586 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.0rc1 -revision=1 +revision=2 wrksrc="mistune-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From bf4d4f506ccd9c20b88d111e9a40c6e876c60524 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:35 -0400 Subject: [PATCH 0578/1420] python3-altgraph: rebuild for Python 3.11 --- 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 d340010e5b85..76519d44cdf2 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=2 +revision=3 wrksrc="altgraph-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From bdd8874e651d178beb6fb06123c5045331eaefa6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:35 -0400 Subject: [PATCH 0579/1420] python3-lsp-jsonrpc: rebuild for Python 3.11 --- 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 395f776c40a6..1cd9bc846263 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.0.0 -revision=2 +revision=3 wrksrc="${pkgname/3}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 6c57295aa4bb90c738d8a3872bffeb3a46e706e4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:35 -0400 Subject: [PATCH 0580/1420] python3-jupyter_console: rebuild for Python 3.11 --- 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 3124f3854a19..2971b9fe92c5 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.4.0 -revision=2 +revision=3 wrksrc="jupyter_console-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 0ba4f2731a31b02b4b342e43ba09b91a506e8ed1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:36 -0400 Subject: [PATCH 0581/1420] python3-jaraco.logging: rebuild for Python 3.11 --- 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 f74e8eab5e22..faec0cac69da 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.1.2 -revision=1 +revision=2 wrksrc="jaraco.logging-${version}" build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" From 0bbd7108f373f263d9144885583fd307ceb1a958 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:36 -0400 Subject: [PATCH 0582/1420] python3-jaraco.stream: rebuild for Python 3.11 --- 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 e9a919ecc788..9dfb036ba281 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.3 -revision=1 +revision=2 wrksrc="jaraco.stream-${version}" build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" From 6047e63e56df07b3dfefc4aeb468e39702eb63c9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:36 -0400 Subject: [PATCH 0583/1420] python3-grpcio: rebuild for Python 3.11 --- 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 10779ba330ca..e8385a91a62e 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.49.1 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-six python3-Cython" From c6d8fcbb05d7a8338d89d5ccf56b2e2000c2eac1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:36 -0400 Subject: [PATCH 0584/1420] python3-PyJWT: rebuild for Python 3.11 --- 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 5fe1a162b370..c9dae9584b56 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.1.0 -revision=2 +revision=3 wrksrc="pyjwt-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b4422648cf0b081916ab8b657e41603da4d1bb78 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:36 -0400 Subject: [PATCH 0585/1420] python3-boltons: rebuild for Python 3.11 --- 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 4637d296b390..66e0bde8c01b 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=2 +revision=3 wrksrc="boltons-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b119e5a126d039e4de8ccbe5496b9587af3ee7c4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:36 -0400 Subject: [PATCH 0586/1420] libkdumpfile: rebuild for Python 3.11 --- srcpkgs/libkdumpfile/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libkdumpfile/template b/srcpkgs/libkdumpfile/template index 1884f3fcac99..a2d6417a2055 100644 --- a/srcpkgs/libkdumpfile/template +++ b/srcpkgs/libkdumpfile/template @@ -1,7 +1,7 @@ # Template file for 'libkdumpfile' pkgname=libkdumpfile version=0.5.0 -revision=1 +revision=2 build_style=gnu-configure configure_args="PYTHON=python3" hostmakedepends="automake pkg-config libtool" From 4ab337f4cd3b812c59ea4aaf0fdd37480b72b758 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:36 -0400 Subject: [PATCH 0587/1420] python3-docker: rebuild for Python 3.11 --- 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 86fb5827fb35..b148cc6e6eb1 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=2 +revision=3 wrksrc="docker-${version}" build_style=python3-module make_check_target="tests/unit" # other tests fail due to needing a running docker daemon From ee3ad7c5fd3a4c30816fb6114668323f2b61397f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:36 -0400 Subject: [PATCH 0588/1420] python3-blessings: rebuild for Python 3.11 --- 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 48765b336b09..ba4a31a34141 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=5 +revision=6 wrksrc="blessings-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 9873b6bce3d0fbb5b499d234102c7fdd80447908 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:36 -0400 Subject: [PATCH 0589/1420] python3-snakeoil: rebuild for Python 3.11 --- 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 f547107ebec7..c8d9aa3d75ef 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.8.8 -revision=3 +revision=4 wrksrc="snakeoil-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" From f475f37c4ba6e60b55efcd99a7be19bde42ee73e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:36 -0400 Subject: [PATCH 0590/1420] python3-gitchangelog: rebuild for Python 3.11 --- srcpkgs/python3-gitchangelog/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-gitchangelog/template b/srcpkgs/python3-gitchangelog/template index 865258ec883c..0b78cf3a97e2 100644 --- a/srcpkgs/python3-gitchangelog/template +++ b/srcpkgs/python3-gitchangelog/template @@ -1,7 +1,7 @@ # Template file for 'python3-gitchangelog' pkgname=python3-gitchangelog version=3.0.4 -revision=5 +revision=6 wrksrc="gitchangelog-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From 98cf8592d6b621ca1a9580c957f4636e8a478240 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:37 -0400 Subject: [PATCH 0591/1420] python3-validators: rebuild for Python 3.11 --- 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 87275771403f..a786dcb8c437 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=3 +revision=4 wrksrc="validators-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From acfeb8c135da651447fa3830fc330a88310091ba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:37 -0400 Subject: [PATCH 0592/1420] python3-sh: rebuild for Python 3.11 --- 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 440c03cee0cc..037b43a6898c 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.2 -revision=3 +revision=4 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 0dcc3e1bfea6a7c04e3f91cc37566537c71076d3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:37 -0400 Subject: [PATCH 0593/1420] python3-betamax: rebuild for Python 3.11 --- 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 442cd6107794..9d95b482941f 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=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From f1a17fbf452cc06bebc0c8abf004aea5670e4b10 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:37 -0400 Subject: [PATCH 0594/1420] ansible-core: rebuild for Python 3.11 --- srcpkgs/ansible-core/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ansible-core/template b/srcpkgs/ansible-core/template index 3a016aeb874c..b0f6f3a6d8c5 100644 --- a/srcpkgs/ansible-core/template +++ b/srcpkgs/ansible-core/template @@ -1,7 +1,7 @@ # Template file for 'ansible-core' pkgname=ansible-core version=2.13.4 -revision=1 +revision=2 hostmakedepends="python3-setuptools python3-wheel python3-packaging python3-straight.plugin python3-docutils python3-Jinja2 python3-yaml" depends="python3-cryptography python3-Jinja2 python3-paramiko python3-yaml From 3edd000039e65d734fa06906fba70427da1b69bf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:37 -0400 Subject: [PATCH 0595/1420] python3-ansible-compat: rebuild for Python 3.11 --- srcpkgs/python3-ansible-compat/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ansible-compat/template b/srcpkgs/python3-ansible-compat/template index 12900c050122..0ada1d01ded3 100644 --- a/srcpkgs/python3-ansible-compat/template +++ b/srcpkgs/python3-ansible-compat/template @@ -1,7 +1,7 @@ # Template file for 'python3-ansible-compat' pkgname=python3-ansible-compat version=2.2.1 -revision=1 +revision=2 wrksrc="${pkgname/python3-/}-${version}" build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" From 37997c1a6f6bb6436945f0a495de5346395e6471 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:37 -0400 Subject: [PATCH 0596/1420] python3-enrich: rebuild for Python 3.11 --- 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 2810a8a43e53..1ca30fc432a6 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=1 +revision=2 wrksrc="${pkgname/python3-/}-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm python3-wheel python3-rich" From 2c14a4bf19ee7f4512d88cd88acd1383f4c628fb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:37 -0400 Subject: [PATCH 0597/1420] python3-tenacity: rebuild for Python 3.11 --- 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 cb4257c28d84..1cee95a0cb3d 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.1.0 -revision=1 +revision=2 wrksrc="${pkgname/python3-/}-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm python3-wheel" From 3c8b6d4e8c2ae23b318922c615ddd5c335fcbff5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:37 -0400 Subject: [PATCH 0598/1420] python3-wcmatch: rebuild for Python 3.11 --- 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 6f912f8bff41..88283ab24919 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.4.1 -revision=1 +revision=2 wrksrc="${pkgname/python3-/}-${version}" build_style=python3-pep517 hostmakedepends="hatchling" From aa44e9cb4949479bca8829755d8873b80947f160 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:37 -0400 Subject: [PATCH 0599/1420] python3-yamllint: rebuild for Python 3.11 --- 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 24544b67001f..cf39046039e6 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.28.0 -revision=1 +revision=2 wrksrc="${pkgname/python3-/}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d456ebaac02cf675881e8d130a2c67c76d2d47eb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:38 -0400 Subject: [PATCH 0600/1420] python3-ciso8601: rebuild for Python 3.11 --- 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 e10fd942e3ce..560a79d52df3 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.2.0 -revision=2 +revision=3 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 1f7e92dde7f622d73ed32bf3ba24f670a050d37e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:38 -0400 Subject: [PATCH 0601/1420] python3-pamqp: rebuild for Python 3.11 --- 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 c99315539461..12e7635af148 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.2.1 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 359cce2529a48bc7b438d347ac2b3726542671a7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:38 -0400 Subject: [PATCH 0602/1420] maturin: rebuild for Python 3.11 --- srcpkgs/maturin/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/maturin/template b/srcpkgs/maturin/template index 79aa1f62d9b8..d2aeea0281e2 100644 --- a/srcpkgs/maturin/template +++ b/srcpkgs/maturin/template @@ -1,7 +1,7 @@ # Template file for 'maturin' pkgname=maturin version=0.13.6 -revision=1 +revision=2 create_wrksrc=yes build_style=python3-module build_helper="qemu rust" From 6b6871791d2c3c9031c7b6048d94d4e73972d184 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:38 -0400 Subject: [PATCH 0603/1420] python3-pyaes: rebuild for Python 3.11 --- 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 f4d237d75d94..2954c193e560 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=6 +revision=7 wrksrc="pyaes-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a8242c14603c99b7a732f1efd5ce778ecaefa825 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:38 -0400 Subject: [PATCH 0604/1420] python3-gitdb: rebuild for Python 3.11 --- 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 73eb021cb0f9..bba5b08935ab 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.9 -revision=1 +revision=2 wrksrc="gitdb-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 9433e6b483879eb37d5d3d9878f7bcaa9a8f2118 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:38 -0400 Subject: [PATCH 0605/1420] python3-Flask-Babel: rebuild for Python 3.11 --- 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 8fa42cfce1f3..643e302c7af4 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=2.0.0 -revision=4 +revision=5 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From aed2b800b3d98d53e6ceab90fb0449156ea32d4f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:38 -0400 Subject: [PATCH 0606/1420] python3-Flask-Login: rebuild for Python 3.11 --- 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 77b8d699cbbe..585b7a2b0548 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=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From ad0ebfd447d859212986a71442d0cd91271e0ad2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:38 -0400 Subject: [PATCH 0607/1420] python3-Flask-Mail: rebuild for Python 3.11 --- srcpkgs/python3-Flask-Mail/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Flask-Mail/template b/srcpkgs/python3-Flask-Mail/template index 52b408c131ca..3f3f6a24e096 100644 --- a/srcpkgs/python3-Flask-Mail/template +++ b/srcpkgs/python3-Flask-Mail/template @@ -1,7 +1,7 @@ # Template file for 'python3-Flask-Mail' pkgname=python3-Flask-Mail version=0.9.1 -revision=3 +revision=4 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b45493a99a08ab71cd7d829a70f4d71571ed94cd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:38 -0400 Subject: [PATCH 0608/1420] python3-Flask-SQLAlchemy: rebuild for Python 3.11 --- srcpkgs/python3-Flask-SQLAlchemy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Flask-SQLAlchemy/template b/srcpkgs/python3-Flask-SQLAlchemy/template index b1da228a9193..76fef6b3e5e3 100644 --- a/srcpkgs/python3-Flask-SQLAlchemy/template +++ b/srcpkgs/python3-Flask-SQLAlchemy/template @@ -1,7 +1,7 @@ # Template file for 'python3-Flask-SQLAlchemy' pkgname=python3-Flask-SQLAlchemy version=2.5.1 -revision=2 +revision=3 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 38856780e5b71c00bebf34c09ff657914f975c50 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:38 -0400 Subject: [PATCH 0609/1420] python3-Flask-WTF: rebuild for Python 3.11 --- 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 032fbeb5bd01..c76ef8da62e6 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.0.1 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 4f5acd96ce83bd1a51ea2bd42a48d1a3d75b8e94 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:39 -0400 Subject: [PATCH 0610/1420] python3-webassets: rebuild for Python 3.11 --- 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 061bbbd0247d..18601366096a 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=6 +revision=7 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 0e81f3a1fec939d3b7c117dabf29b7ba2de41b40 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:39 -0400 Subject: [PATCH 0611/1420] python-tempita: rebuild for Python 3.11 --- srcpkgs/python-tempita/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-tempita/template b/srcpkgs/python-tempita/template index ab6b7710c5de..8a8f46461da4 100644 --- a/srcpkgs/python-tempita/template +++ b/srcpkgs/python-tempita/template @@ -1,7 +1,7 @@ # Template file for 'python-tempita' pkgname=python-tempita version=0.5.2 -revision=7 +revision=8 wrksrc="Tempita-${version}" build_style=python-module hostmakedepends="python-setuptools python3-setuptools" From 11aeb612eb910c730db15f3943669980521e5241 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:39 -0400 Subject: [PATCH 0612/1420] python3-pysol_cards: rebuild for Python 3.11 --- 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 778f0035136c..9ad41b4c5bf9 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.2 -revision=1 +revision=2 wrksrc="pysol_cards-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-pbr" From 5e225edd068da5e358052686d25eb4a8ebc9c8ff Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:39 -0400 Subject: [PATCH 0613/1420] python3-random2: rebuild for Python 3.11 --- 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 e8853196fe6a..a0938dc7e478 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=7 +revision=8 wrksrc="random2-${version}" build_style=python3-module hostmakedepends="python3-setuptools unzip" From e06d80c91daa20c5d373e5c51eba628a77316617 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:39 -0400 Subject: [PATCH 0614/1420] python3-pmw: rebuild for Python 3.11 --- 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 e14d5b6ded9e..0ec4261e31b6 100644 --- a/srcpkgs/python3-pmw/template +++ b/srcpkgs/python3-pmw/template @@ -1,7 +1,7 @@ # Template for python-pmw pkgname=python3-pmw version=2.0.1 -revision=4 +revision=5 short_desc="Python 3 Tkinter widget toolkit" homepage="http://pmw.sourceforge.net/" license="MIT" From 339c1c22ed4961f8d7646377dc69008ba23cce5d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:39 -0400 Subject: [PATCH 0615/1420] python3-astroid: rebuild for Python 3.11 --- 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 943431fb53ea..6716dd511ef2 100644 --- a/srcpkgs/python3-astroid/template +++ b/srcpkgs/python3-astroid/template @@ -1,7 +1,7 @@ # Template file for 'python3-astroid' pkgname=python3-astroid version=2.11.6 -revision=1 +revision=2 wrksrc="astroid-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 0e993987749a8bbd0de605062b182206df9dff04 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:39 -0400 Subject: [PATCH 0616/1420] python3-dill: rebuild for Python 3.11 --- 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 045c86d3714c..b8fd5c30438b 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.3.5.1 -revision=1 +revision=2 wrksrc="dill-$version" build_style=python3-module hostmakedepends="python3-setuptools" From ce9fa1f7821a7ca5eb6968cd59ba137add46dfe3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:39 -0400 Subject: [PATCH 0617/1420] python3-isort: rebuild for Python 3.11 --- 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 fac655ae70ba..eb1ab5dc9c27 100644 --- a/srcpkgs/python3-isort/template +++ b/srcpkgs/python3-isort/template @@ -1,7 +1,7 @@ # Template file for 'python3-isort' pkgname=python3-isort version=5.10.1 -revision=1 +revision=2 wrksrc="isort-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 5b921cc28ebdec377eb949e69f235dc9ff73f69f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:39 -0400 Subject: [PATCH 0618/1420] python3-tomlkit: rebuild for Python 3.11 --- 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 098a5534efb8..412281be95df 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.11.4 -revision=1 +revision=2 wrksrc="tomlkit-$version" build_style=python3-module hostmakedepends="python3-setuptools" From 69b3d4708d75b4d188641b992c4f0d99c7142178 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:40 -0400 Subject: [PATCH 0619/1420] python3-websockets: update to 10.4. --- srcpkgs/python3-websockets/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-websockets/template b/srcpkgs/python3-websockets/template index 7c02b7ec8ed7..2608546923ba 100644 --- a/srcpkgs/python3-websockets/template +++ b/srcpkgs/python3-websockets/template @@ -1,6 +1,6 @@ # Template file for 'python3-websockets' pkgname=python3-websockets -version=10.3 +version=10.4 revision=1 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module @@ -13,7 +13,7 @@ license="BSD-3-Clause" homepage="https://websockets.readthedocs.io/en/stable/" changelog="https://websockets.readthedocs.io/en/stable/project/changelog.html" distfiles="${PYPI_SITE}/w/websockets/websockets-${version}.tar.gz" -checksum=fc06cc8073c8e87072138ba1e431300e2d408f054b27047d047b549455066ff4 +checksum=eef610b23933c54d5d921c92578ae5f89813438fded840c2e9809d378dc765d3 # Package ships no tests make_check=no From c684e91eaefafff0524a8daea990d81521728186 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:40 -0400 Subject: [PATCH 0620/1420] python3-pythondialog: rebuild for Python 3.11 --- 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 2c6e259f2a36..d7c94d206baa 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.1 -revision=3 +revision=4 wrksrc="pythondialog-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 39a20bb77af39f86843d44f563c289a82f29a179 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:40 -0400 Subject: [PATCH 0621/1420] nodeenv: rebuild for Python 3.11 --- srcpkgs/nodeenv/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nodeenv/template b/srcpkgs/nodeenv/template index 6f2bb2e709b8..d8dc3617920f 100644 --- a/srcpkgs/nodeenv/template +++ b/srcpkgs/nodeenv/template @@ -1,7 +1,7 @@ # Template file for 'nodeenv' pkgname=nodeenv version=1.6.0 -revision=1 +revision=2 wrksrc="nodeenv-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 98973b0a5047396452da879c7ad8d7c59887054b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:40 -0400 Subject: [PATCH 0622/1420] python3-cfgv: rebuild for Python 3.11 --- 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 9e1e97e20659..e1d538f32b2d 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=1 +revision=2 wrksrc="cfgv-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d875718e86b4033e25678d63ed2e2cd06c939666 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:40 -0400 Subject: [PATCH 0623/1420] python3-identify: rebuild for Python 3.11 --- 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 7d2c231b6727..55a115b5b554 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=1 +revision=2 wrksrc="identify-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 605bd3895d74e8e56bd059450af3ba5fed872dcf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:40 -0400 Subject: [PATCH 0624/1420] python3-slixmpp: rebuild for Python 3.11 --- 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 71c312498a1b..6d429bb60e4e 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.5.2 -revision=3 +revision=4 wrksrc="slixmpp-${version}" build_style=python3-module hostmakedepends="pkg-config python3-setuptools python3-Cython" From f97868bd74769d18fc5f4f2e0a2d41fd5769d141 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:40 -0400 Subject: [PATCH 0625/1420] python3-dotenv: update to 0.21.0. --- srcpkgs/python3-dotenv/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-dotenv/template b/srcpkgs/python3-dotenv/template index de10357bf378..af27c8ff908a 100644 --- a/srcpkgs/python3-dotenv/template +++ b/srcpkgs/python3-dotenv/template @@ -1,7 +1,7 @@ # Template file for 'python3-dotenv' pkgname=python3-dotenv -version=0.19.0 -revision=2 +version=0.21.0 +revision=1 wrksrc="python-dotenv-${version}" build_style=python3-module # CLI tests and test_set_key_permission_error fail in xbps-src's build environment @@ -14,7 +14,7 @@ maintainer="Kartik Singh " license="BSD-3-Clause" homepage="https://github.com/theskumar/python-dotenv" distfiles="https://github.com/theskumar/python-dotenv/archive/v${version}.tar.gz" -checksum=4a85022352fbbc689f5ec95a2c61df2ed6ef5a51820832d6fdc32f9d29f11653 +checksum=6496ae52e472bfb1498a5ffe0112550d93dc92596a1f9e4d8356943fffc6cbe4 post_install() { vlicense LICENSE From a5eb25708e037044ea7abd94473a96a7ac96ffb0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:40 -0400 Subject: [PATCH 0626/1420] python3-marshmallow: rebuild for Python 3.11 --- 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 ee5f375647d6..33bace413f40 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.7.0 -revision=3 +revision=4 wrksrc="marshmallow-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d4f893c4df1ddad97d81934f4e94de2cf9322f76 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:40 -0400 Subject: [PATCH 0627/1420] python3-fasteners: rebuild for Python 3.11 --- 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 3c2c2b36d163..e87e07ec2d38 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.18 -revision=1 +revision=2 wrksrc="fasteners-${version}" build_style=python3-pep517 hostmakedepends="python3 python3-wheel" From c8ee9dd2466104b2a19bddcc94003a86e6ce7223 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:40 -0400 Subject: [PATCH 0628/1420] python3-cli_helpers: rebuild for Python 3.11 --- 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 aa084c626c76..334bd9e631b0 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.2.1 -revision=1 +revision=2 wrksrc="cli_helpers-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 477f24cf9bd908c88b390abe14f417d967949d55 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:41 -0400 Subject: [PATCH 0629/1420] python3-pendulum: rebuild for Python 3.11 --- srcpkgs/python3-pendulum/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pendulum/template b/srcpkgs/python3-pendulum/template index 09c9d405aae0..05096a13beaf 100644 --- a/srcpkgs/python3-pendulum/template +++ b/srcpkgs/python3-pendulum/template @@ -1,7 +1,7 @@ # Template file for 'python3-pendulum' pkgname=python3-pendulum version=2.1.2 -revision=1 +revision=2 wrksrc="pendulum-${version}" build_style=python3-pep517 hostmakedepends="python3-poetry-core" From 91d2d59a3984d1f74e36cecb3e121e2c2fb68140 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:41 -0400 Subject: [PATCH 0630/1420] python3-pgspecial: rebuild for Python 3.11 --- 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 f46230672db3..2acbba2cb682 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.0.1 -revision=1 +revision=2 wrksrc="pgspecial-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 7f870952cbee4c78ad6a0bb1ae91c651fea790a2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:41 -0400 Subject: [PATCH 0631/1420] mercurial: rebuild for Python 3.11 --- srcpkgs/mercurial/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mercurial/template b/srcpkgs/mercurial/template index 126f627d3876..364d142497d4 100644 --- a/srcpkgs/mercurial/template +++ b/srcpkgs/mercurial/template @@ -1,7 +1,7 @@ # Template file for 'mercurial' pkgname=mercurial version=6.2.3 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3 python3-setuptools python3-devel gettext" makedepends="python3-devel" From 2651be91e8b488f2f2766a2590c175f80e32bbd0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:41 -0400 Subject: [PATCH 0632/1420] python3-feedgenerator: rebuild for Python 3.11 --- 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 aa12bb77df9d..69189910e435 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=5 +revision=6 wrksrc="feedgenerator-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 91667407a6949546271320669dd1851bf3455031 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:41 -0400 Subject: [PATCH 0633/1420] python3-oletools: rebuild for Python 3.11 --- 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 9e09720167dd..c040c2426694 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.1 -revision=1 +revision=2 wrksrc="oletools-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From bace8e1b75162ceffe9bea871bfe2676723b9e03 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:41 -0400 Subject: [PATCH 0634/1420] python3-pefile: rebuild for Python 3.11 --- 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 1b52b12ba82c..f6c418f1d047 100644 --- a/srcpkgs/python3-pefile/template +++ b/srcpkgs/python3-pefile/template @@ -1,7 +1,7 @@ # Template file for 'python3-pefile' pkgname=python3-pefile version=2019.4.18 -revision=4 +revision=5 wrksrc="pefile-${version}" build_style=python3-module pycompile_module="pefile.py peutils.py ordlookup" From 17a9babac7533495e5146ef9efc1ed940d596af6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:41 -0400 Subject: [PATCH 0635/1420] python3-virustotal-api: rebuild for Python 3.11 --- 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 297a73582374..a4547710e15e 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=4 +revision=5 wrksrc="virustotal-api-${version}" build_style=python3-module pycompile_module="virus_total_apis" From d998237f3230af0d7a8458c9d3bd996aa504740a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:41 -0400 Subject: [PATCH 0636/1420] python3-yara: rebuild for Python 3.11 --- 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 e58128f03030..4a273a448b4e 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.2.3 -revision=1 +revision=2 wrksrc="yara-python-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a4c2702c4cc9c94ded5ca8eba0cc1e2eeec54394 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:41 -0400 Subject: [PATCH 0637/1420] python3-pykeepass: rebuild for Python 3.11 --- 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 5571c1a18dbe..287cd4d0c2c4 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.1 -revision=2 +revision=3 wrksrc="pykeepass-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b44027021c6ec003e4a95301468fbea2f44e3c97 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:41 -0400 Subject: [PATCH 0638/1420] python3-Whoosh: rebuild for Python 3.11 --- 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 60f58c7147e3..c37768026f54 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=5 +revision=6 wrksrc="Whoosh-${version}" build_style=python3-module hostmakedepends="python3-devel python3-setuptools" From 527d83a27540ab870f224d80e18ebd8411f9d2de Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:42 -0400 Subject: [PATCH 0639/1420] python3-arxiv2bib: rebuild for Python 3.11 --- 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 1459771c64de..d5d2d9fa64c3 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=6 +revision=7 wrksrc="arxiv2bib-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From e0b7bd4d903b6222f2fa9a6ce8e759b935b9af59 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:42 -0400 Subject: [PATCH 0640/1420] python3-bibtexparser: rebuild for Python 3.11 --- 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 aa6651428b66..ea3dc9e320b8 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=5 +revision=6 wrksrc="bibtexparser-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 1506697f57865cedd048cb66616b29b0785361bf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:42 -0400 Subject: [PATCH 0641/1420] python3-doi: rebuild for Python 3.11 --- 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 9d5f7c726926..03fe0ec8358e 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=3 +revision=4 wrksrc="python-doi-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From e6b05aa4b9d26e4bdece663e480d213ec949f262 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:42 -0400 Subject: [PATCH 0642/1420] python3-habanero: rebuild for Python 3.11 --- 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 e54990267ebd..35a0a87f1e44 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=5 +revision=6 wrksrc="habanero-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 506be3d571e4226d2baa5de74ff69a02f0e38214 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:42 -0400 Subject: [PATCH 0643/1420] python3-isbnlib: rebuild for Python 3.11 --- 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 5e9c0b1c12e5..3fcec7f55461 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=1 +revision=2 wrksrc="isbnlib-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 5ec8df1094c454631dcc5ee707871d49be731a2d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:42 -0400 Subject: [PATCH 0644/1420] python3-slugify: rebuild for Python 3.11 --- 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 8039388f776b..64e21fa3ca2f 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=1 +revision=2 wrksrc="python-slugify-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 757507d9e7e793fd55571664d4571a5294050187 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:42 -0400 Subject: [PATCH 0645/1420] python3-janus: rebuild for Python 3.11 --- 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 d0b4d0cf362c..0025bdb29a5e 100644 --- a/srcpkgs/python3-janus/template +++ b/srcpkgs/python3-janus/template @@ -1,7 +1,7 @@ # Template file for 'python3-janus' pkgname=python3-janus version=0.5.0 -revision=4 +revision=5 wrksrc="janus-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 26f8443b52ac7a2701b58c8c331dfdbfa786ac91 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:42 -0400 Subject: [PATCH 0646/1420] python3-matrix-nio: rebuild for Python 3.11 --- 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 39355ab99912..f24a9e052e13 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.15.1 -revision=3 +revision=4 wrksrc="matrix-nio-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 82e9fd0df247cc0a01e14f3273de8bd6e6d94364 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:42 -0400 Subject: [PATCH 0647/1420] python3-pydbus: rebuild for Python 3.11 --- 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 6e1a8b33559c..3a4e93394f1f 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=4 +revision=5 wrksrc="pydbus-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 3aab918a03f8e3cccab18bdc5a72bdfc08d3fd8c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:42 -0400 Subject: [PATCH 0648/1420] brltty: rebuild for Python 3.11 --- srcpkgs/brltty/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/brltty/template b/srcpkgs/brltty/template index cf7c198b5253..2ea4b17f1263 100644 --- a/srcpkgs/brltty/template +++ b/srcpkgs/brltty/template @@ -1,7 +1,7 @@ # Template file for 'brltty' pkgname=brltty version=6.4 -revision=6 +revision=7 build_style=gnu-configure build_helper=python3 configure_args="--enable-gpm --with-screen-driver=lx,sc From 585bed41332561fb5a53e19167a30e7b328e286f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:43 -0400 Subject: [PATCH 0649/1420] liblouis: rebuild for Python 3.11 --- srcpkgs/liblouis/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/liblouis/template b/srcpkgs/liblouis/template index e7fc54be187a..62aafcae1aac 100644 --- a/srcpkgs/liblouis/template +++ b/srcpkgs/liblouis/template @@ -1,7 +1,7 @@ # Template file for 'liblouis' pkgname=liblouis version=3.15.0 -revision=2 +revision=3 build_style=gnu-configure configure_args="--enable-ucs4" hostmakedepends="pkg-config help2man python3-devel" From 8ec3b785d72cede272400c0ae920f8b90c268001 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:43 -0400 Subject: [PATCH 0650/1420] speech-dispatcher: rebuild for Python 3.11 --- 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 d7d1e47c9b7f..d5df782ed423 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.10.2 -revision=2 +revision=3 wrksrc="speechd-${version}" build_style=gnu-configure # Disable support for sundry non-free TTS systems (said support causes From e238484e36f6550139eea4a98221d743fce7af4d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:43 -0400 Subject: [PATCH 0651/1420] libopenshot: rebuild for Python 3.11 --- srcpkgs/libopenshot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libopenshot/template b/srcpkgs/libopenshot/template index 71dff12b5d61..662a54758232 100644 --- a/srcpkgs/libopenshot/template +++ b/srcpkgs/libopenshot/template @@ -1,7 +1,7 @@ # Template file for 'libopenshot' pkgname=libopenshot version=0.2.7 -revision=1 +revision=2 build_style=cmake # Builds fail with Ruby-2.4.1 configure_args="-DENABLE_RUBY=OFF -DUSE_SYSTEM_JSONCPP=ON" From 028e497500c59d07b37410a64a538e8e9867b3d1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:43 -0400 Subject: [PATCH 0652/1420] python3-daemonize: rebuild for Python 3.11 --- 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 a815e51599de..f989869ebc7d 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=6 +revision=7 wrksrc="daemonize-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 7dabb524bbab2bd18d973bd4a7f4ce8d08b4d6f5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:43 -0400 Subject: [PATCH 0653/1420] vtk: rebuild for Python 3.11 --- srcpkgs/vtk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/vtk/template b/srcpkgs/vtk/template index 858aa31b9c03..553cf9198465 100644 --- a/srcpkgs/vtk/template +++ b/srcpkgs/vtk/template @@ -1,7 +1,7 @@ # Template file for 'vtk' pkgname=vtk version=9.0.1 -revision=7 +revision=8 wrksrc=VTK-${version} build_style=cmake # vtk can be huge, especially with -DVTK_BUILD_ALL_MODULES=ON" From cb5d67c83ec91f0ee946f1fb00c2d46afe13abb0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:43 -0400 Subject: [PATCH 0654/1420] python3-imaplib2: rebuild for Python 3.11 --- 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 7c7d7f4fe330..554e0d6e64b3 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=1 +revision=2 wrksrc=imaplib2-${version} build_style=python3-pep517 hostmakedepends="python3-setuptools python3-wheel" From 15b12c14dd00a6328232d362e993bd38516e8915 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:43 -0400 Subject: [PATCH 0655/1420] python3-rfc6555: rebuild for Python 3.11 --- 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 b195c55b676d..5716359c8877 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=1 +revision=2 wrksrc=rfc6555-${version} build_style=python3-module make_check_args="--deselect tests/test_ipv6.py::test_ipv6_available" # CI fail From 1b8f0ed43167fa9ec0466f9f26f3f67efd235036 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:43 -0400 Subject: [PATCH 0656/1420] python3-stem: rebuild for Python 3.11 --- 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 5b575e6a5ffc..7ff7daf950c3 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.0 -revision=4 +revision=5 wrksrc="stem-${version/b/}" build_style=python3-module hostmakedepends="python3-devel" From 81ced0bfda90c5a7d029b12c0d9f5bf1591deb1a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:43 -0400 Subject: [PATCH 0657/1420] python3-neovim: rebuild for Python 3.11 --- 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 38fc21f01780..754f15c4da29 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.4.3 -revision=2 +revision=3 wrksrc="pynvim-${version}" build_style="python3-module" hostmakedepends="python3-setuptools" From d96e6bfb65140aa4e4378feee27e92e85d107211 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:43 -0400 Subject: [PATCH 0658/1420] nemo-python: rebuild for Python 3.11 --- 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 f771e1e5fdcf..986dd93feccc 100644 --- a/srcpkgs/nemo-python/template +++ b/srcpkgs/nemo-python/template @@ -1,7 +1,7 @@ # Template file for 'nemo-python' pkgname=nemo-python version=5.4.1 -revision=1 +revision=2 wrksrc="nemo-extensions-${version}" build_wrksrc=nemo-python build_style=meson From e6eda8d92916b9d6ad6050cb3fd80adb312b3959 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:44 -0400 Subject: [PATCH 0659/1420] meld: rebuild for Python 3.11 --- srcpkgs/meld/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template index 39de83293bb4..aa24eb2715d8 100644 --- a/srcpkgs/meld/template +++ b/srcpkgs/meld/template @@ -1,7 +1,7 @@ # Template file for 'meld' pkgname=meld version=3.22.0 -revision=1 +revision=2 build_style=meson hostmakedepends="pkg-config intltool python3-distro itstool gtk-update-icon-cache libxml2-python3 glib-devel" From 8887d5c895b6358fa0602980dab0f0a8e4aa0495 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:44 -0400 Subject: [PATCH 0660/1420] gpsd: rebuild for Python 3.11 Also drop udev rule installation. It was never done right---the rule and helper polluted the masterdir and never made it into the package---and nobody has seemed to notice. --- srcpkgs/gpsd/template | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/srcpkgs/gpsd/template b/srcpkgs/gpsd/template index a8c0f118f6ce..3bcff0a7f1be 100644 --- a/srcpkgs/gpsd/template +++ b/srcpkgs/gpsd/template @@ -1,12 +1,11 @@ # Template file for 'gpsd' pkgname=gpsd version=3.24 -revision=1 +revision=2 build_style=scons -make_build_args="dbus_export=0 gpsd_user=gpsd gpsd_group=gpsd sbindir=/usr/bin - udevdir=/usr/lib/udev CC=${CC} qt_versioned=5" +make_build_args="dbus_export=0 gpsd_user=gpsd gpsd_group=gpsd + sbindir=/usr/bin CC=${CC} qt_versioned=5" make_install_args="$make_build_args" -make_install_target=udev-install hostmakedepends="pkg-config bc python3-pyserial libxslt xmlto asciidoc" makedepends="eudev-libudev-devel ntp libusb-devel ncurses-devel gtk+3-devel pps-tools-devel libcap-devel libbluetooth-devel qt5-devel" From c3d022d04aae8bd67072aeab9962491a0fddb639 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:44 -0400 Subject: [PATCH 0661/1420] wxPython4: rebuild for Python 3.11 --- srcpkgs/wxPython4/patches/python-3.11.patch | 36 +++++++++++++-------- srcpkgs/wxPython4/template | 4 +-- 2 files changed, 24 insertions(+), 16 deletions(-) diff --git a/srcpkgs/wxPython4/patches/python-3.11.patch b/srcpkgs/wxPython4/patches/python-3.11.patch index 904a398bedad..15496bdecbca 100644 --- a/srcpkgs/wxPython4/patches/python-3.11.patch +++ b/srcpkgs/wxPython4/patches/python-3.11.patch @@ -1,8 +1,7 @@ -Index: wxPython-4.0.7/bin/.waf3/waflib/ConfigSet.py -=================================================================== +diff -ur wxPython-4.0.7.orig/bin/.waf3/waflib/ConfigSet.py wxPython-4.0.7/bin/.waf3/waflib/ConfigSet.py --- wxPython-4.0.7.orig/bin/.waf3/waflib/ConfigSet.py +++ wxPython-4.0.7/bin/.waf3/waflib/ConfigSet.py -@@ -146,7 +146,7 @@ class ConfigSet(object): +@@ -146,7 +146,7 @@ Utils.writef(filename,''.join(buf)) def load(self,filename): tbl=self.table @@ -11,11 +10,10 @@ Index: wxPython-4.0.7/bin/.waf3/waflib/ConfigSet.py for m in re_imp.finditer(code): g=m.group tbl[g(2)]=eval(g(3)) -Index: wxPython-4.0.7/bin/.waf3/waflib/Context.py -=================================================================== +diff -ur wxPython-4.0.7.orig/bin/.waf3/waflib/Context.py wxPython-4.0.7/bin/.waf3/waflib/Context.py --- wxPython-4.0.7.orig/bin/.waf3/waflib/Context.py +++ wxPython-4.0.7/bin/.waf3/waflib/Context.py -@@ -106,7 +106,7 @@ class Context(ctx): +@@ -106,7 +106,7 @@ cache[node]=True self.pre_recurse(node) try: @@ -24,7 +22,7 @@ Index: wxPython-4.0.7/bin/.waf3/waflib/Context.py exec(compile(function_code,node.abspath(),'exec'),self.exec_dict) finally: self.post_recurse(node) -@@ -346,7 +346,7 @@ def load_module(path,encoding=None): +@@ -346,7 +346,7 @@ pass module=imp.new_module(WSCRIPT_FILE) try: @@ -33,11 +31,22 @@ Index: wxPython-4.0.7/bin/.waf3/waflib/Context.py except EnvironmentError: raise Errors.WafError('Could not read the file %r'%path) module_dir=os.path.dirname(path) -Index: wxPython-4.0.7/sip/siplib/sip.h -=================================================================== +diff -ur wxPython-4.0.7.orig/bin/.waf3/waflib/Tools/python.py wxPython-4.0.7/bin/.waf3/waflib/Tools/python.py +--- wxPython-4.0.7.orig/bin/.waf3/waflib/Tools/python.py ++++ wxPython-4.0.7/bin/.waf3/waflib/Tools/python.py +@@ -207,7 +207,7 @@ + x='MACOSX_DEPLOYMENT_TARGET' + if dct[x]: + env[x]=conf.environ[x]=dct[x] +- env.pyext_PATTERN='%s'+dct['SO'] ++ env.pyext_PATTERN='%s.so' + num='.'.join(env.PYTHON_VERSION.split('.')[:2]) + conf.find_program([''.join(pybin)+'-config','python%s-config'%num,'python-config-%s'%num,'python%sm-config'%num],var='PYTHON_CONFIG',msg="python-config",mandatory=False) + if env.PYTHON_CONFIG: +diff -ur wxPython-4.0.7.orig/sip/siplib/sip.h wxPython-4.0.7/sip/siplib/sip.h --- wxPython-4.0.7.orig/sip/siplib/sip.h +++ wxPython-4.0.7/sip/siplib/sip.h -@@ -1794,7 +1794,7 @@ typedef struct _sipAPIDef { +@@ -1794,7 +1794,7 @@ int (*api_get_time)(PyObject *, sipTimeDef *); PyObject *(*api_from_time)(const sipTimeDef *); int (*api_is_user_type)(const sipWrapperType *); @@ -46,11 +55,10 @@ Index: wxPython-4.0.7/sip/siplib/sip.h int (*api_check_plugin_for_type)(const sipTypeDef *, const char *); PyObject *(*api_unicode_new)(SIP_SSIZE_T, unsigned, int *, void **); void (*api_unicode_write)(int, void *, int, unsigned); -Index: wxPython-4.0.7/sip/siplib/siplib.c -=================================================================== +diff -ur wxPython-4.0.7.orig/sip/siplib/siplib.c wxPython-4.0.7/sip/siplib/siplib.c --- wxPython-4.0.7.orig/sip/siplib/siplib.c +++ wxPython-4.0.7/sip/siplib/siplib.c -@@ -439,7 +439,7 @@ static PyObject *sip_api_from_datetime(c +@@ -439,7 +439,7 @@ static int sip_api_get_time(PyObject *obj, sipTimeDef *time); static PyObject *sip_api_from_time(const sipTimeDef *time); static int sip_api_is_user_type(const sipWrapperType *wt); @@ -59,7 +67,7 @@ Index: wxPython-4.0.7/sip/siplib/siplib.c static int sip_api_check_plugin_for_type(const sipTypeDef *td, const char *name); static PyObject *sip_api_unicode_new(SIP_SSIZE_T len, unsigned maxchar, -@@ -13688,15 +13688,19 @@ static int sip_api_is_user_type(const si +@@ -13688,15 +13688,19 @@ /* * Return a frame from the execution stack. */ diff --git a/srcpkgs/wxPython4/template b/srcpkgs/wxPython4/template index 6fe82717aca2..996e363aa1e3 100644 --- a/srcpkgs/wxPython4/template +++ b/srcpkgs/wxPython4/template @@ -1,7 +1,7 @@ # Template file for 'wxPython4' pkgname=wxPython4 version=4.0.7 -revision=5 +revision=6 wrksrc="wxPython-${version}" build_style=python3-module make_build_args="--skip-build" @@ -21,7 +21,7 @@ if [ "$CROSS_BUILD" ]; then CFLAGS="-I${XBPS_CROSS_BASE}/${py3_inc} -I${XBPS_CROSS_BASE}/usr/include" fi -post_extract() { +pre_patch() { # need to patch for Python 3.11, extract them now. cd bin sed '/__name__.*__main__/i sys.exit(0)' waf-* >tmp-waf From 7821b0cdef895478a6330cc5ce5c0d19ece32d7e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:44 -0400 Subject: [PATCH 0662/1420] lilv: rebuild for Python 3.11 --- srcpkgs/lilv/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/lilv/template b/srcpkgs/lilv/template index e37a44777e5a..3d5909e5e042 100644 --- a/srcpkgs/lilv/template +++ b/srcpkgs/lilv/template @@ -1,7 +1,7 @@ # Template file for 'lilv' pkgname=lilv version=0.24.12 -revision=2 +revision=3 build_style=waf3 configure_args="--dyn-manifest" hostmakedepends="pkg-config" From f66f89c030cdef6708a4f4a729148354fac297e5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:44 -0400 Subject: [PATCH 0663/1420] python3-Pyro4: rebuild for Python 3.11 --- 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 401d2ce3046a..8c663e544409 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=4 +revision=5 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 0bbd42b049e630bb63d202d1723f1fb849eb2154 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:44 -0400 Subject: [PATCH 0664/1420] python3-pafy: rebuild for Python 3.11 --- srcpkgs/python3-pafy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pafy/template b/srcpkgs/python3-pafy/template index 1a4d17c9d204..14f9ee9fec6c 100644 --- a/srcpkgs/python3-pafy/template +++ b/srcpkgs/python3-pafy/template @@ -1,7 +1,7 @@ # Template file for 'python3-pafy' pkgname=python3-pafy version=0.5.5 -revision=4 +revision=5 wrksrc="pafy-${version}" build_style=python3-module hostmakedepends="python3-setuptools youtube-dl" From 9ce987b6699a7e8d755784cea8e0d4fe2a0b2250 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:44 -0400 Subject: [PATCH 0665/1420] python3-musicpd: rebuild for Python 3.11 --- 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 91ef69f441ab..4ed800c3e471 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=4 +revision=5 wrksrc="python-musicpd-${version}" build_style=python3-module pycompile_module="musicpd.py" From c5cc9aa9d23b0098b4582f0277918b6cc3344348 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:44 -0400 Subject: [PATCH 0666/1420] mopidy: rebuild for Python 3.11 --- srcpkgs/mopidy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mopidy/template b/srcpkgs/mopidy/template index 38b232696a91..d325a77e4204 100644 --- a/srcpkgs/mopidy/template +++ b/srcpkgs/mopidy/template @@ -1,7 +1,7 @@ # Template file for 'mopidy' pkgname=mopidy version=3.2.0 -revision=1 +revision=2 wrksrc="Mopidy-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Sphinx python3-sphinx_rtd_theme From 45954aa7c73c4f87eacaa179d8631d6ca41b0baf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:44 -0400 Subject: [PATCH 0667/1420] python3-pyspotify: rebuild for Python 3.11 --- srcpkgs/python3-pyspotify/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pyspotify/template b/srcpkgs/python3-pyspotify/template index 05c786364f11..ecbf3e81d1ac 100644 --- a/srcpkgs/python3-pyspotify/template +++ b/srcpkgs/python3-pyspotify/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyspotify' pkgname=python3-pyspotify version=2.1.3 -revision=3 +revision=4 wrksrc="pyspotify-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-cffi python3-pycparser" From 33ceb21364819e65656f62916c539192e9334f5e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:44 -0400 Subject: [PATCH 0668/1420] python3-uritools: rebuild for Python 3.11 --- 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 c4d37f1591f0..40adece8ffe4 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=3 +revision=4 wrksrc="uritools-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 8705b5c325867d660df5dbb1976d9069796e518a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:45 -0400 Subject: [PATCH 0669/1420] python3-SoCo: rebuild for Python 3.11 --- 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 adc9a66b713a..cc19a0a0c3ba 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.18.1 -revision=4 +revision=5 wrksrc="SoCo-${version}" build_style=python3-module pycompile_module="soco" From df07e470cb9a06445ff4870abf5d2ac0c789718c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:45 -0400 Subject: [PATCH 0670/1420] python3-chromecast: rebuild for Python 3.11 --- srcpkgs/python3-chromecast/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-chromecast/template b/srcpkgs/python3-chromecast/template index 72f891be6a1f..8bdefec55c1a 100644 --- a/srcpkgs/python3-chromecast/template +++ b/srcpkgs/python3-chromecast/template @@ -1,7 +1,7 @@ # Template file for 'python3-chromecast' pkgname=python3-chromecast version=10.3.0 -revision=1 +revision=2 wrksrc="pychromecast-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-protobuf python3-zeroconf python3-casttube" From d1935a35d17a5f2e9de80416af7f1c56220d2e7f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:45 -0400 Subject: [PATCH 0671/1420] python3-asgiref: rebuild for Python 3.11 --- 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 7e020e44c216..fd511e6188d1 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=1 +revision=2 wrksrc="asgiref-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 913d30af4e3775a888784233cac7cd7f7e9978ea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:45 -0400 Subject: [PATCH 0672/1420] python3-kaitaistruct: rebuild for Python 3.11 --- 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 54f5267763f9..db11ba564602 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=1 +revision=2 wrksrc="kaitai_struct_python_runtime-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-wheel" From ff1fe3974a55c91d0af2353948952a76111478f9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:45 -0400 Subject: [PATCH 0673/1420] python3-publicsuffix2: rebuild for Python 3.11 --- 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 1b5f2368a138..a281a730d285 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=1 +revision=2 wrksrc="python-publicsuffix2-release-2.${version//./-}" build_style=python3-module hostmakedepends="python3-setuptools python3-requests python3-wheel" From 57d2d5eee34fb759a608a2230cc63bf8d87ccd07 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:45 -0400 Subject: [PATCH 0674/1420] python3-pyperclip: rebuild for Python 3.11 --- 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 d18de13677d2..7204916825c4 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=1 +revision=2 wrksrc=pyperclip-${version} build_style=python3-module hostmakedepends="python3-setuptools" From a11ed5487bc7aa0fe9b50ac7f4822efb4e1ade22 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:45 -0400 Subject: [PATCH 0675/1420] python3-zstandard: rebuild for Python 3.11 --- 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 fde89844eb3f..e17fdc46f9c8 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.18.0 -revision=2 +revision=3 wrksrc="python-zstandard-${version}" build_style=python3-module make_build_args="--system-zstd" From 34bf8e37e84568f054729d4e966e8fa3b17e5cef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:45 -0400 Subject: [PATCH 0676/1420] openvswitch: rebuild for Python 3.11 --- srcpkgs/openvswitch/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/openvswitch/template b/srcpkgs/openvswitch/template index 71ff33fda5a2..d6477ecada11 100644 --- a/srcpkgs/openvswitch/template +++ b/srcpkgs/openvswitch/template @@ -1,7 +1,7 @@ # Template file for 'openvswitch' pkgname=openvswitch version=2.17.0 -revision=1 +revision=2 archs="i686* x86_64* ppc64*" build_style=gnu-configure configure_args="--with-rundir=/run/openvswitch" From 021194328c90723239b84b47684a9c129c8333ee Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:45 -0400 Subject: [PATCH 0677/1420] mailnag: rebuild for Python 3.11 --- srcpkgs/mailnag/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mailnag/template b/srcpkgs/mailnag/template index df5a5b834ad2..12d693cb47c3 100644 --- a/srcpkgs/mailnag/template +++ b/srcpkgs/mailnag/template @@ -1,7 +1,7 @@ # Template file for 'mailnag' pkgname=mailnag version=2.2.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3 gettext" depends="python3-gobject python3-dbus python3-xdg libsecret gtk+3" From 38f3fdcd77f6bd848f1a9abdf9e16570a013640f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:45 -0400 Subject: [PATCH 0678/1420] python3-autobahn: rebuild for Python 3.11 --- 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 6f75b304c880..d664b0190492 100644 --- a/srcpkgs/python3-autobahn/template +++ b/srcpkgs/python3-autobahn/template @@ -1,7 +1,7 @@ # Template file for 'python3-autobahn' pkgname=python3-autobahn version=21.3.1 -revision=3 +revision=4 wrksrc="autobahn-${version}" build_style=python3-module hostmakedepends="python3 python3-setuptools" From 381a61dee2eaf5557e09ba01d8031450029b1c46 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:46 -0400 Subject: [PATCH 0679/1420] python3-spake2: rebuild for Python 3.11 --- 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 38c6a472cb0e..d531f79e06f8 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=5 +revision=6 wrksrc="python-spake2-${version}" build_style=python3-module pycompile_module="spake2" From 9a114d06e6a23908f33666e5b454589cb99ac65e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:46 -0400 Subject: [PATCH 0680/1420] python3-txtorcon: rebuild for Python 3.11 --- 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 1d4806a1ab90..2a4c95745930 100644 --- a/srcpkgs/python3-txtorcon/template +++ b/srcpkgs/python3-txtorcon/template @@ -1,7 +1,7 @@ # Template file for 'python3-txtorcon' pkgname=python3-txtorcon version=21.1.0 -revision=3 +revision=4 wrksrc="txtorcon-${version}" build_style=python3-module hostmakedepends="python3 python3-setuptools" From fd27e36724929dfeeeed72f0e3a37e64bd0eba2d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:46 -0400 Subject: [PATCH 0681/1420] fontforge: rebuild for Python 3.11 --- srcpkgs/fontforge/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/fontforge/template b/srcpkgs/fontforge/template index f768483ba14c..85197b0d4ab4 100644 --- a/srcpkgs/fontforge/template +++ b/srcpkgs/fontforge/template @@ -1,7 +1,7 @@ # Template file for 'fontforge' pkgname=fontforge version=20220308 -revision=1 +revision=2 build_style=cmake hostmakedepends="automake ca-certificates gettext libltdl-devel libtool m4 pkg-config python3" From 23804b276aa5d5d31197012d84c7c879f69a0d26 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:46 -0400 Subject: [PATCH 0682/1420] liborcus: rebuild for Python 3.11 --- srcpkgs/liborcus/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/liborcus/template b/srcpkgs/liborcus/template index 7b6b21a26dca..cbe5690ab901 100644 --- a/srcpkgs/liborcus/template +++ b/srcpkgs/liborcus/template @@ -1,7 +1,7 @@ # Template file for 'liborcus' pkgname=liborcus version=0.17.2 -revision=2 +revision=3 build_style=gnu-configure hostmakedepends="automake libtool pkg-config python3" makedepends="boost-devel mdds libixion-devel python3-devel zlib-devel" From 5b1cb7857bf49f34d5cdf4a8e36125aed4711bce Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:46 -0400 Subject: [PATCH 0683/1420] libplist: rebuild for Python 3.11 --- srcpkgs/libplist/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libplist/template b/srcpkgs/libplist/template index 416314a9f631..3981de44a386 100644 --- a/srcpkgs/libplist/template +++ b/srcpkgs/libplist/template @@ -1,7 +1,7 @@ # Template file for 'libplist' pkgname=libplist version=2.2.0 -revision=2 +revision=3 build_style=gnu-configure configure_args="--disable-static" hostmakedepends="automake libtool pkgconf python3 python3-Cython" From 0684f97e0d15eb78184691c7a7d02eef54d78a83 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:46 -0400 Subject: [PATCH 0684/1420] libbytesize: rebuild for Python 3.11 --- srcpkgs/libbytesize/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template index ffe86cbda0ae..884bcb8918d8 100644 --- a/srcpkgs/libbytesize/template +++ b/srcpkgs/libbytesize/template @@ -1,7 +1,7 @@ # Template file for 'libbytesize' pkgname=libbytesize version=2.6 -revision=2 +revision=3 build_style=gnu-configure hostmakedepends="gettext python3" makedepends="mpfr-devel pcre2-devel" From 09eb3abe50795d91019ee540cd940e37436f22cd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:46 -0400 Subject: [PATCH 0685/1420] volume_key: rebuild for Python 3.11 --- 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 d96b08e1ae96..48ef4bb3eace 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=5 +revision=6 build_style=gnu-configure configure_args="--without-python" hostmakedepends="pkg-config python3" From 715b09219d3944909d68eced5dae5c02332188fd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:46 -0400 Subject: [PATCH 0686/1420] libcec: rebuild for Python 3.11 --- srcpkgs/libcec/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libcec/template b/srcpkgs/libcec/template index b247acf44974..31274900e18e 100644 --- a/srcpkgs/libcec/template +++ b/srcpkgs/libcec/template @@ -1,7 +1,7 @@ # Template file for 'libcec' pkgname=libcec version=6.0.2 -revision=2 +revision=3 wrksrc="${pkgname}-${pkgname}-${version}" build_style=cmake configure_args="Python_ADDITIONAL_VERSIONS=${py3_ver}" From 095d2a8b15ca3e256d31b0cceed725cf69f67a36 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:46 -0400 Subject: [PATCH 0687/1420] python3-jupyterlab_server: rebuild for Python 3.11 --- 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 a814eecebc3b..4e0415b0dc89 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.10.3 -revision=1 +revision=2 wrksrc="jupyterlab_server-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-jupyter_notebook python3-jupyter_server" From 495036b515b0d1d27cc474e7a7bc77c7a1ef2eb9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:47 -0400 Subject: [PATCH 0688/1420] python3-nbclassic: rebuild for Python 3.11 --- 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 066ce4adc96b..bc3162f4780d 100644 --- a/srcpkgs/python3-nbclassic/template +++ b/srcpkgs/python3-nbclassic/template @@ -1,7 +1,7 @@ # Template file for 'python3-nbclassic' pkgname=python3-nbclassic version=0.3.5 -revision=1 +revision=2 wrksrc=nbclassic-${version} build_style=python3-module hostmakedepends="python3-setuptools" From b40d43cea3cc4cf43e31852bf2cf62bd74bb09e7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:47 -0400 Subject: [PATCH 0689/1420] python3-ansiwrap: rebuild for Python 3.11 --- 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 158a865f4469..662f336eb93d 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=3 +revision=4 wrksrc=${pkgname#*-}-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 74a8ac128d1b2a27186b5aef4f56d41a09dbb819 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:47 -0400 Subject: [PATCH 0690/1420] ldapdomaindump: rebuild for Python 3.11 --- srcpkgs/ldapdomaindump/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ldapdomaindump/template b/srcpkgs/ldapdomaindump/template index 3952035d06f8..838d918cdf74 100644 --- a/srcpkgs/ldapdomaindump/template +++ b/srcpkgs/ldapdomaindump/template @@ -1,7 +1,7 @@ # Template file for 'ldapdomaindump' pkgname=ldapdomaindump version=0.9.3 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-future python3-ldap3 python3-dnspython" From eca0c8a4b64e057c3f1e9e72f873882d87e6f537 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:47 -0400 Subject: [PATCH 0691/1420] python3-pdfrw: rebuild for Python 3.11 --- 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 8b4fb96b7519..4e8757ebb6bf 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=6 +revision=7 wrksrc="pdfrw-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 2b8daff46267b659783f83ca4ad4015865e26dd2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:47 -0400 Subject: [PATCH 0692/1420] python3-pikepdf: rebuild for Python 3.11 --- 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 8e4190d62b35..c780d7eb3d6c 100644 --- a/srcpkgs/python3-pikepdf/template +++ b/srcpkgs/python3-pikepdf/template @@ -1,7 +1,7 @@ # Template file for 'python3-pikepdf' pkgname=python3-pikepdf version=6.2.0 -revision=1 +revision=2 wrksrc="pikepdf-${version}" build_style=python3-module hostmakedepends="python3-pybind11 python3-setuptools_scm python3-wheel" From 629796f1cec32dc87716d8713f0655f721691633 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:47 -0400 Subject: [PATCH 0693/1420] lensfun: rebuild for Python 3.11 --- srcpkgs/lensfun/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/lensfun/template b/srcpkgs/lensfun/template index e73b8e6626ff..9720f0219180 100644 --- a/srcpkgs/lensfun/template +++ b/srcpkgs/lensfun/template @@ -1,7 +1,7 @@ # Template file for 'lensfun' pkgname=lensfun version=0.3.3 -revision=1 +revision=2 build_style=cmake configure_args="-DINSTALL_HELPER_SCRIPTS=0" hostmakedepends="pkg-config python3" From 7e7e97ff47a6099a29133347796c94969dfec9e8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:47 -0400 Subject: [PATCH 0694/1420] python3-dulwich: rebuild for Python 3.11 --- 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 1cf072010b0c..246ab5ac96ce 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.20.44 -revision=1 +revision=2 wrksrc="dulwich-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From c39f7f99d5c230bb9791da8cf076212c811ef2ea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:14 -0400 Subject: [PATCH 0695/1420] python3-shellingham: rebuild for Python 3.11 --- 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 8d29b3f725c0..7a7b74ae2156 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.0 -revision=1 +revision=2 wrksrc=shellingham-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 914dd8d2a08bd56a90447830c39840585a9db464 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:47 -0400 Subject: [PATCH 0696/1420] python3-tomli-w: rebuild for Python 3.11 --- 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 6268e501aedf..98e74b916035 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=1 +revision=2 wrksrc="${pkgname/python3-/}-${version}" build_style=python3-pep517 hostmakedepends="python3-flit_core" From cfa9b05af1c30ed9ad912fe5a7608d546654eb81 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:47 -0400 Subject: [PATCH 0697/1420] python3-MechanicalSoup: rebuild for Python 3.11 --- 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 2fff0656397a..555a1dd7a95b 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=4 +revision=5 wrksrc=MechanicalSoup-${version} build_style=python3-module pycompile_module="mechanicalsoup" From 21852d874d9fec0627908541965ed4977a78aaef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:47 -0400 Subject: [PATCH 0698/1420] python3-ReParser: rebuild for Python 3.11 --- 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 8f0e2961881b..f537fcced542 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=4 +revision=5 wrksrc=ReParser-${version} build_style=python3-module pycompile_module="reparser.py" From 7e4aeb0620d990b8adb3056041ce8c7645ec1f17 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:48 -0400 Subject: [PATCH 0699/1420] python3-readlike: rebuild for Python 3.11 --- 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 5779c37ec31a..b50f2f699236 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=4 +revision=5 wrksrc=readlike-${version} build_style=python3-module pycompile_module="readlike.py" From e9a8df442d3091a40a9792d6917836eb3f589a8b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:48 -0400 Subject: [PATCH 0700/1420] python3-injector: rebuild for Python 3.11 --- 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 cde75620e4df..341b6a41a816 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=1 +revision=2 wrksrc="injector-${version}" build_style=python3-module hostmakedepends="python3-typing_extensions python3-setuptools" From 2fad5318971c19874b8d4200f205e0d74a21a9b2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:48 -0400 Subject: [PATCH 0701/1420] python3-nvml: rebuild for Python 3.11 --- 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 4aa7ea45a889..92ab6fffe09d 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=2 +revision=3 wrksrc="py3nvml-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 84df63fb2d9e95f02ce256e29a1864e89d7e847d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:48 -0400 Subject: [PATCH 0702/1420] python3-rx: rebuild for Python 3.11 --- 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 a91b6f56ec08..37b969b526fb 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=2 +revision=3 wrksrc="RxPY-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-pytest" From c9feeba4c3dfc53a1aa52ef9dd46467e2fbc0bc4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:48 -0400 Subject: [PATCH 0703/1420] ufw: rebuild for Python 3.11 --- srcpkgs/ufw/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template index 31470532739f..03b0b7b3a2ff 100644 --- a/srcpkgs/ufw/template +++ b/srcpkgs/ufw/template @@ -1,7 +1,7 @@ # Template file for 'ufw' pkgname=ufw version=0.36.1 -revision=2 +revision=3 _major_minor="${version%.*}" build_style=python3-module conf_files=" From e850bfa927d94c579b0f7980a0d4e2554ccec205 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:48 -0400 Subject: [PATCH 0704/1420] python3-path-and-address: rebuild for Python 3.11 --- 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 f1e26b42863c..88283f580888 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=4 +revision=5 wrksrc="path-and-address-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From e8627d9314060cb16b78c5faad4634410e210cc7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:48 -0400 Subject: [PATCH 0705/1420] python3-bsddb3: rebuild for Python 3.11 --- 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 d2ae90c37b2e..b2c705444755 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=3 +revision=4 wrksrc="bsddb3-${version}" build_style=python3-module make_build_args="--berkeley-db=${XBPS_CROSS_BASE}/usr" From 22e2ae1bca3701da1bc35df32fb938f5ad55ac64 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:48 -0400 Subject: [PATCH 0706/1420] eyeD3: rebuild for Python 3.11 --- srcpkgs/eyeD3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template index eb06072f66a4..c07d8244c5f8 100644 --- a/srcpkgs/eyeD3/template +++ b/srcpkgs/eyeD3/template @@ -1,7 +1,7 @@ # Template file for 'eyeD3' pkgname=eyeD3 version=0.9.6 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pylast python3-setuptools python3-deprecation python3-filetype" From df6e64658874667b8a0cf9de585b511c8088d254 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:48 -0400 Subject: [PATCH 0707/1420] python3-mygpoclient: rebuild for Python 3.11 --- 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 67844e56f371..ae0380498ed9 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=7 +revision=8 wrksrc="mygpoclient-${version}" build_style=python3-module hostmakedepends="python3-devel" From fc14a348564dbb7949697ff13847a4a13c8cb1ed Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:48 -0400 Subject: [PATCH 0708/1420] python3-podcastparser: rebuild for Python 3.11 --- 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 93a739bad440..9ede5b6b8e95 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.5 -revision=4 +revision=5 wrksrc="podcastparser-${version}" build_style=python3-module hostmakedepends="python3-devel" From db338eeed78b7b2880df9d0c2e972a87b04ba920 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:49 -0400 Subject: [PATCH 0709/1420] gnuradio: rebuild for Python 3.11 --- srcpkgs/gnuradio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnuradio/template b/srcpkgs/gnuradio/template index 13528d2af579..360a948b5d38 100644 --- a/srcpkgs/gnuradio/template +++ b/srcpkgs/gnuradio/template @@ -1,7 +1,7 @@ # Template file for 'gnuradio' pkgname=gnuradio version=3.10.3.0 -revision=4 +revision=5 build_style=cmake conf_files="/etc/gnuradio/conf.d/*" configure_args="-DMATHJAX2_USE_ROOT=/usr/share/mathjax From 04baeca57fca30727215423b6e1a30ea09bf0d7f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:49 -0400 Subject: [PATCH 0710/1420] ktoblzcheck: rebuild for Python 3.11 --- srcpkgs/ktoblzcheck/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ktoblzcheck/template b/srcpkgs/ktoblzcheck/template index f430c8925f8c..c06fa31d603f 100644 --- a/srcpkgs/ktoblzcheck/template +++ b/srcpkgs/ktoblzcheck/template @@ -1,7 +1,7 @@ # Template file for 'ktoblzcheck' pkgname=ktoblzcheck version=1.53 -revision=3 +revision=4 build_style=cmake configure_args="-DENABLE_BANKDATA_DOWNLOAD=NO" hostmakedepends="pkg-config python3" From fa155ff3ab3c0a667c6538456aa64fe62a86910b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:49 -0400 Subject: [PATCH 0711/1420] python3-aiohttp-cors: rebuild for Python 3.11 --- 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 5d0ad3380260..04707fcab13b 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=4 +revision=5 wrksrc="aiohttp-cors-${version}" build_style=python3-module pycompile_module="aiohttp_cors" From 04c5f0ef7bde5e48c97aa39ec754240109e36c33 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:49 -0400 Subject: [PATCH 0712/1420] python3-py-cpuinfo: rebuild for Python 3.11 --- 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 0aa61d61c251..bb494632036a 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=8.0.0 -revision=3 +revision=4 wrksrc="py-cpuinfo-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From c7d5efa8e4e7e6f7b215649a5083f04c5e6f0e34 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:49 -0400 Subject: [PATCH 0713/1420] gns3-net-converter: rebuild for Python 3.11 --- 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 157017bc444a..8d33f98d85a7 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=6 +revision=7 build_style=python3-module pycompile_module="gns3converter" hostmakedepends="python3-setuptools" From 05007e28e2ef47bb9a46a60cdb55e909fa28e336 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:49 -0400 Subject: [PATCH 0714/1420] libpwquality: rebuild for Python 3.11 --- srcpkgs/libpwquality/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libpwquality/template b/srcpkgs/libpwquality/template index 27cfd3e12c1c..c66f32af8c1e 100644 --- a/srcpkgs/libpwquality/template +++ b/srcpkgs/libpwquality/template @@ -1,7 +1,7 @@ # Template file for 'libpwquality' pkgname=libpwquality version=1.4.4 -revision=2 +revision=3 build_style=gnu-configure build_helper=python3 configure_args="--disable-static --enable-pam --with-securedir=/usr/lib/security" From bba3cf0cc62b8aa0540cf5dc4b9482c23d31c21b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:49 -0400 Subject: [PATCH 0715/1420] python3-pyotp: rebuild for Python 3.11 --- 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 4f6bac6d98ec..cf123fbedcdf 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=1 +revision=2 wrksrc="pyotp-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 1642de854b3962dd5656845eb051d925acb808bb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:49 -0400 Subject: [PATCH 0716/1420] libgit2-glib: rebuild for Python 3.11 --- 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 ae2b2539435e..7873e51a0b28 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.1.0 -revision=2 +revision=3 build_style=meson build_helper="gir" configure_args="-Dintrospection=$(vopt_if gir true false) From c9c32e67b690e65c7340356c3281270902237628 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:49 -0400 Subject: [PATCH 0717/1420] python3-pyfavicon: rebuild for Python 3.11 --- 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 d2437798b793..5daec3eabb1e 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=3 +revision=4 wrksrc=pyfavicon-$version build_style=python3-module hostmakedepends="python3-setuptools" From e514415ee90e3ffda24ea20985b1f7ab562cceef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:49 -0400 Subject: [PATCH 0718/1420] python3-pyzbar: rebuild for Python 3.11 --- 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 d342b7176b2a..cfb9282ea938 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.8 -revision=5 +revision=6 wrksrc="pyzbar-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d3f144b7dfa7b3f263bd76e86d5009754c1a872c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:50 -0400 Subject: [PATCH 0719/1420] python3-yoyo-migrations: rebuild for Python 3.11 --- srcpkgs/python3-yoyo-migrations/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-yoyo-migrations/template b/srcpkgs/python3-yoyo-migrations/template index 45c1764ede02..90a25c56eede 100644 --- a/srcpkgs/python3-yoyo-migrations/template +++ b/srcpkgs/python3-yoyo-migrations/template @@ -1,7 +1,7 @@ # Template file for 'python3-yoyo-migrations' pkgname=python3-yoyo-migrations version=7.3.2 -revision=2 +revision=3 wrksrc=yoyo-migrations-$version build_style=python3-module hostmakedepends="python3-setuptools" From 0219a3f6d1c9e987e8979dcab33b35891cc6dd90 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:50 -0400 Subject: [PATCH 0720/1420] python3-listparser: rebuild for Python 3.11 --- 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 55bcd24119af..23003668b9a2 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=2 +revision=3 wrksrc="listparser-$version" build_style=python3-module hostmakedepends="python3-setuptools" From d6e51187481119001d4bff951095782437679bd8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:50 -0400 Subject: [PATCH 0721/1420] python3-readability-lxml: rebuild for Python 3.11 --- 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 dfb4b0fb6b25..334ccce44db4 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=5 +revision=6 wrksrc="readability-lxml-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From cf48f4ec727cc5fbd28b05b7ab6ba06f01de7010 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:50 -0400 Subject: [PATCH 0722/1420] python3-Ropper: rebuild for Python 3.11 --- 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 d510b45f2ab5..1e0de1332403 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.8 -revision=1 +revision=2 wrksrc="Ropper-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 617d93c3eef0f8c0ae78a54da82790a37f3c8c0f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:50 -0400 Subject: [PATCH 0723/1420] unicorn: rebuild for Python 3.11 --- srcpkgs/unicorn/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/unicorn/template b/srcpkgs/unicorn/template index c0e7bf419b9e..9c2e3a64514a 100644 --- a/srcpkgs/unicorn/template +++ b/srcpkgs/unicorn/template @@ -1,7 +1,7 @@ # Template file for 'unicorn' pkgname=unicorn version=1.0.2 -revision=2 +revision=3 hostmakedepends="python3-devel python3-setuptools" short_desc="Lightweight multi-platform, multi-architecture CPU emulator framework" maintainer="Piraty " From 8553d57d68b879055ac406751e2b25fc0cc214ec Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:50 -0400 Subject: [PATCH 0724/1420] gedit: rebuild for Python 3.11 --- srcpkgs/gedit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gedit/template b/srcpkgs/gedit/template index 090f776b6384..8aad2f036e05 100644 --- a/srcpkgs/gedit/template +++ b/srcpkgs/gedit/template @@ -1,7 +1,7 @@ # Template file for 'gedit' pkgname=gedit version=42.2 -revision=1 +revision=2 build_helper="gir" build_style=meson pycompile_dirs="usr/lib/gedit/plugins" From f518a6ba949b75d094e8027b571fd7cdcc02a7bf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:50 -0400 Subject: [PATCH 0725/1420] zeitgeist: rebuild for Python 3.11 --- srcpkgs/zeitgeist/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/zeitgeist/template b/srcpkgs/zeitgeist/template index 29fb74f357ca..84e41dc12b99 100644 --- a/srcpkgs/zeitgeist/template +++ b/srcpkgs/zeitgeist/template @@ -1,7 +1,7 @@ # Template file for 'zeitgeist' pkgname=zeitgeist version=1.0.3 -revision=2 +revision=3 build_style=gnu-configure build_helper="gir" configure_args="--enable-fts --enable-datahub $(vopt_enable gir introspection)" From 445bc10b9cb93dd81c7a90241d5f2132ebb0a436 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:50 -0400 Subject: [PATCH 0726/1420] gajim: rebuild for Python 3.11 --- srcpkgs/gajim/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template index 49cd65cb4a4c..bf754cc4e0ad 100644 --- a/srcpkgs/gajim/template +++ b/srcpkgs/gajim/template @@ -1,7 +1,7 @@ # Template file for 'gajim' pkgname=gajim version=1.5.2 -revision=1 +revision=2 build_style=python3-module hostmakedepends="gettext python3-setuptools" depends="python3-gobject python3-setuptools python3-Pillow From 96d5ce37cd2eacfa82c01809e01258e96591e136 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:51 -0400 Subject: [PATCH 0727/1420] python3-axolotl: rebuild for Python 3.11 --- srcpkgs/python3-axolotl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-axolotl/template b/srcpkgs/python3-axolotl/template index d1b1f2e0fb98..13ad343e96af 100644 --- a/srcpkgs/python3-axolotl/template +++ b/srcpkgs/python3-axolotl/template @@ -2,7 +2,7 @@ pkgname=python3-axolotl _pkgname=${pkgname/3/} version=0.2.3 -revision=5 +revision=6 wrksrc=$_pkgname-$version build_style=python3-module hostmakedepends="python3-setuptools" From f4719829f464e1bf599aabbf943da53c0212ad81 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:51 -0400 Subject: [PATCH 0728/1420] python3-qrcode: rebuild for Python 3.11 --- 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 50a1966adb5b..62bf21e0ce9a 100644 --- a/srcpkgs/python3-qrcode/template +++ b/srcpkgs/python3-qrcode/template @@ -1,7 +1,7 @@ # Template file for 'python3-qrcode' pkgname=python3-qrcode version=6.1 -revision=5 +revision=6 wrksrc="qrcode-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 107f08c230a54e63d7ca830dfc66b975c8012c24 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:51 -0400 Subject: [PATCH 0729/1420] med: rebuild for Python 3.11 --- srcpkgs/med/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/med/template b/srcpkgs/med/template index 5bbbace2e1c8..9c76918c1e4a 100644 --- a/srcpkgs/med/template +++ b/srcpkgs/med/template @@ -1,7 +1,7 @@ # Template file for 'med' pkgname=med version=4.1.0 -revision=2 +revision=3 build_style=gnu-configure configure_args="--with-swig=yes --includedir=/usr/include/med" hostmakedepends="gcc-fortran swig" From 2325ee9153621cc75518fbb78855ebaeedfa047f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:51 -0400 Subject: [PATCH 0730/1420] python3-pivy: rebuild for Python 3.11 --- 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 b09865a03ec1..c4609c9f23f5 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.8 -revision=1 +revision=2 wrksrc="pivy-${version}" build_style=cmake hostmakedepends="python3-devel swig" From a430cb35e35446fcd7e135210b18b59e7110fb06 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:51 -0400 Subject: [PATCH 0731/1420] beancount: rebuild for Python 3.11 --- srcpkgs/beancount/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/beancount/template b/srcpkgs/beancount/template index 4b759dcc57bb..1292540c6e1a 100644 --- a/srcpkgs/beancount/template +++ b/srcpkgs/beancount/template @@ -1,7 +1,7 @@ # Template file for 'beancount' pkgname=beancount version=2.3.5 -revision=1 +revision=2 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 c0d382ebecb56479296ed816c222548d5bc5dde5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:51 -0400 Subject: [PATCH 0732/1420] python3-markdown2: rebuild for Python 3.11 --- 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 ca671a62f81f..23db404b27ca 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=3 +revision=4 wrksrc=python-markdown2-$version build_style=python3-module hostmakedepends="python3-setuptools" From ca4e8f606b97b5c2e6aed0095127cd81359197e7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Thu, 13 Oct 2022 16:42:10 -0400 Subject: [PATCH 0733/1420] python3-etebase: rebuild for Python 3.11 and fix --- .../python3-etebase/patches/no-rustfmt.patch | 13 ++++++++++++ srcpkgs/python3-etebase/template | 21 +++++++++++-------- 2 files changed, 25 insertions(+), 9 deletions(-) create mode 100644 srcpkgs/python3-etebase/patches/no-rustfmt.patch diff --git a/srcpkgs/python3-etebase/patches/no-rustfmt.patch b/srcpkgs/python3-etebase/patches/no-rustfmt.patch new file mode 100644 index 000000000000..f39ce94b1647 --- /dev/null +++ b/srcpkgs/python3-etebase/patches/no-rustfmt.patch @@ -0,0 +1,13 @@ +Void doesn't seem to ship rustfmt, so disable its bindings. + +--- a/build.rs ++++ b/build.rs +@@ -9,7 +9,7 @@ + + let python_cfg = PythonConfig::new("etebase_python".to_owned()); + let swig_gen = flapigen::Generator::new(LanguageConfig::PythonConfig(python_cfg)) +- .rustfmt_bindings(true); ++ .rustfmt_bindings(false); + swig_gen.expand("python bindings", &in_src, &out_src); + println!("cargo:rerun-if-changed={}", in_src.display()); + } diff --git a/srcpkgs/python3-etebase/template b/srcpkgs/python3-etebase/template index 04ac50ecf911..4d2e930cf38b 100644 --- a/srcpkgs/python3-etebase/template +++ b/srcpkgs/python3-etebase/template @@ -1,14 +1,13 @@ # Template file for 'python3-etebase' pkgname=python3-etebase version=0.31.5 -revision=1 +revision=2 wrksrc="etebase-py-${version}" build_style=python3-module build_helper="rust" -hostmakedepends="python3-setuptools python3-wheel python3-setuptools-rust cargo" -makedepends="libsodium libsodium-devel openssl-devel pkg-config rust-std" -depends="python3-msgpack openssl" -checkdepends="python3-pytest python3-pytest ${depends}" +hostmakedepends="python3-setuptools-rust python3-wheel cargo pkg-config" +makedepends="libsodium libsodium-devel openssl-devel" +depends="python3-msgpack" short_desc="Python library for Etebase" maintainer="DragonGhost7 " license="BSD-3-Clause" @@ -16,12 +15,16 @@ homepage="https://github.com/etesync/etebase-py/" changelog="https://raw.githubusercontent.com/etesync/etebase-py/master/ChangeLog.md" distfiles="https://github.com/etesync/etebase-py/archive/refs/tags/v${version}.tar.gz" checksum=3f372b18cc518e04788ca553fb05989f77f393d041688a44f69b7b5b56d71048 -make_check=no #checking requires starting the server on localhost -nocross=yes +# Tests require a locally running server +make_check=no + +if [ "$CROSS_BUILD" ]; then + makedepends+=" rust-std" +fi pre_build() { - vsed -i -e 's|.rustfmt_bindings(true);|.rustfmt_bindings(false);|' build.rs -#rustfmt binary is not present in the default cargo installation. + # fixes an indexmap error when cross compiling + cargo update --package autocfg:1.0.0 --precise 1.1.0 } post_install() { From 58a4a6d7a76b6198c85e1a41b6782f8ed41c672e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:51 -0400 Subject: [PATCH 0734/1420] python3-etesync: rebuild for Python 3.11 --- 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 0fb68728c047..79ed6c70f078 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=3 +revision=4 wrksrc="etesync-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From dd67a8ae557a65a693d47b0e7a3837c64dc28f41 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:51 -0400 Subject: [PATCH 0735/1420] radicale: rebuild for Python 3.11 --- srcpkgs/radicale/template | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/srcpkgs/radicale/template b/srcpkgs/radicale/template index 03828eb746dd..9c6a872c2423 100644 --- a/srcpkgs/radicale/template +++ b/srcpkgs/radicale/template @@ -1,7 +1,7 @@ # Template file for 'radicale' pkgname=radicale version=3.1.8 -revision=1 +revision=2 wrksrc="Radicale-${version}" build_style=python3-module hostmakedepends="python3-setuptools" @@ -32,10 +32,8 @@ replaces="radicale2<3.0.6" do_check() { # install the package to test_install directory for testing - python3 setup.py install --root="$PWD"/test_install - - PYTHONPATH="$PWD"/test_install/usr/lib/python3.10/site-packages \ - pytest -c /dev/null + python3 setup.py install --root="${PWD}/test_install" + PYTHONPATH="${PWD}/test_install/${py3_sitelib}" pytest -c /dev/null } post_install() { From ebf2ecc824c4a52aff6c46463eebf32886985f53 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:51 -0400 Subject: [PATCH 0736/1420] python3-bitstring: rebuild for Python 3.11 --- 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 305a26639f97..41b70e876e88 100644 --- a/srcpkgs/python3-bitstring/template +++ b/srcpkgs/python3-bitstring/template @@ -1,7 +1,7 @@ # Template file for 'python3-bitstring' pkgname=python3-bitstring version=3.1.7 -revision=3 +revision=4 wrksrc="bitstring-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b4e6c1132b670db533d49f775c69839bd06f84d6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:51 -0400 Subject: [PATCH 0737/1420] python3-ecdsa: rebuild for Python 3.11 --- 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 e4ea73661515..4a8befb2f893 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.16.1 -revision=2 +revision=3 wrksrc="python-ecdsa-python-ecdsa-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 6a03330c4dbc0177acdd8efab2dc0ceb46dfa701 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:52 -0400 Subject: [PATCH 0738/1420] python3-reedsolo: rebuild for Python 3.11 --- 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 101389cf3218..dec751180546 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.4 -revision=1 +revision=2 wrksrc="reedsolo-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 69b4690c7d8223a0744f588cb86aef0ecb08473e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:52 -0400 Subject: [PATCH 0739/1420] python3-PyFxA: rebuild for Python 3.11 --- 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 94341f363fbc..460a7626bb53 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=4 +revision=5 wrksrc="PyFxA-${version}" build_style=python3-module pycompile_module="fxa" From 0aee355ee0d93316c75ddf8f702e637701935e83 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:52 -0400 Subject: [PATCH 0740/1420] python3-aiorpcx: rebuild for Python 3.11 --- 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 2f540305ec02..5ec65f502291 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.22.1 -revision=1 +revision=2 wrksrc="aiorpcX-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 11ca9f4b6eea395db208f62bf920bc25b9b995cb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:52 -0400 Subject: [PATCH 0741/1420] python3-jsonrpclib: rebuild for Python 3.11 --- 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 11781cb107c1..1bbc8e34f2ae 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=5 +revision=6 wrksrc="jsonrpclib-pelix-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 947ad159b7dc6cf15769c198c580e71294b666f2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:52 -0400 Subject: [PATCH 0742/1420] binwalk: rebuild for Python 3.11 --- srcpkgs/binwalk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template index f3838109bfb2..760386b13a3c 100644 --- a/srcpkgs/binwalk/template +++ b/srcpkgs/binwalk/template @@ -1,7 +1,7 @@ # Template file for 'binwalk' pkgname=binwalk version=2.3.3 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3" depends="python3" From 61f645aaa55f005d9a045c267a5374a475736210 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:52 -0400 Subject: [PATCH 0743/1420] python3-PyPDF2: rebuild for Python 3.11 --- srcpkgs/python3-PyPDF2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-PyPDF2/template b/srcpkgs/python3-PyPDF2/template index 06cecaaa35c5..cc79665c5a01 100644 --- a/srcpkgs/python3-PyPDF2/template +++ b/srcpkgs/python3-PyPDF2/template @@ -1,7 +1,7 @@ # Template file for 'python3-PyPDF2' pkgname=python3-PyPDF2 version=2.11.1 -revision=1 +revision=2 _sample_files_gitrev=fee1d72f36bfb73fec831a1cc6de273510a306a6 create_wrksrc=yes build_wrksrc="PyPDF2-${version}" From 975181f148b59555536fd67f479c4c930d7cd061 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:52 -0400 Subject: [PATCH 0744/1420] python3-jsondiff: rebuild for Python 3.11 --- 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 461a8be63e02..c40bb47812c8 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=1 +revision=2 wrksrc="jsondiff-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From dffab47ae1623d619da0a0f0d9482a9e15f74ca7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:52 -0400 Subject: [PATCH 0745/1420] python3-libarchive-c: rebuild for Python 3.11 --- 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 e84524799bda..927ddbf885fe 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=1 +revision=2 wrksrc="python-libarchive-c-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 5c3c2f2d333e5c8c6f7d1aca6bded8f7fade283b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:52 -0400 Subject: [PATCH 0746/1420] python3-progressbar: rebuild for Python 3.11 --- 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 06afa0bcdbc0..885baaf01c9c 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=1 +revision=2 wrksrc="progressbar-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 9c2bf5a5536457d62e02c36e1e4e720fb748aa95 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:52 -0400 Subject: [PATCH 0747/1420] tlsh: rebuild for Python 3.11 --- srcpkgs/tlsh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tlsh/template b/srcpkgs/tlsh/template index 3801747eb959..59c4049c92a6 100644 --- a/srcpkgs/tlsh/template +++ b/srcpkgs/tlsh/template @@ -1,7 +1,7 @@ # Template file for 'tlsh' pkgname=tlsh version=3.19.1 -revision=4 +revision=5 build_style=cmake build_helper=python3 hostmakedepends="python3" From 71ab9b6bc4165b973f4237346001c26ebe55f5b2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 4 Oct 2022 20:08:47 -0400 Subject: [PATCH 0748/1420] libtorrent-rasterbar: rebuild for Python 3.11 --- 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 ac4111d6afbc..4d325a46f53c 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=1.2.17 -revision=3 +revision=4 build_style=cmake configure_args="DCMAKE_CXX_STANDARD=14 -Dbuild_examples=ON -Dbuild_tools=ON -Dpython-bindings=ON" From 49a2a2f078f5e4f0bb44accb24451d0548ede123 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:53 -0400 Subject: [PATCH 0749/1420] Uranium: rebuild for Python 3.11 --- srcpkgs/Uranium/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template index eb4bcf6670ee..f205eedead42 100644 --- a/srcpkgs/Uranium/template +++ b/srcpkgs/Uranium/template @@ -1,7 +1,7 @@ # Template file for 'Uranium' pkgname=Uranium version=4.13.1 -revision=1 +revision=2 build_style=cmake pycompile_dirs="usr/lib/uranium/plugins" hostmakedepends="python3 gettext" From 0d87df823672355628583f9dd768c20fc429d7bd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:53 -0400 Subject: [PATCH 0750/1420] libCharon: rebuild for Python 3.11 --- srcpkgs/libCharon/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libCharon/template b/srcpkgs/libCharon/template index b33e995d9dbe..cd45a66e949e 100644 --- a/srcpkgs/libCharon/template +++ b/srcpkgs/libCharon/template @@ -1,7 +1,7 @@ # Template file for 'libCharon' pkgname=libCharon version=4.13.0 -revision=1 +revision=2 build_style=cmake configure_args="INSTALL_SERVICE=OFF" hostmakedepends="python3" From 3fc4313a0a5868dec4c8d59c9a96f177f001a3fc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:53 -0400 Subject: [PATCH 0751/1420] libSavitar: rebuild for Python 3.11 --- srcpkgs/libSavitar/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libSavitar/template b/srcpkgs/libSavitar/template index eaffe92be8ce..10d923bea95a 100644 --- a/srcpkgs/libSavitar/template +++ b/srcpkgs/libSavitar/template @@ -1,7 +1,7 @@ # Template file for 'libSavitar' pkgname=libSavitar version=4.13.1 -revision=1 +revision=2 build_style=cmake hostmakedepends="python3" makedepends="python3-sip-devel python3-devel pugixml-devel" From a21551a877e2fd531ea4878822f1c3c2922bc28e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:53 -0400 Subject: [PATCH 0752/1420] python3-pynest2d: rebuild for Python 3.11 --- srcpkgs/python3-pynest2d/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pynest2d/template b/srcpkgs/python3-pynest2d/template index 3997bdb0ec4a..87e7e3e2979a 100644 --- a/srcpkgs/python3-pynest2d/template +++ b/srcpkgs/python3-pynest2d/template @@ -1,7 +1,7 @@ # Template file for 'python3-pynest2d' pkgname=python3-pynest2d version=4.12.1 -revision=1 +revision=2 wrksrc="pynest2d-${version}" build_style=cmake configure_args="-DCMAKE_CXX_STANDARD=14" From 8e8ba2561695626ab9a339326cba1b198d78e826 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:53 -0400 Subject: [PATCH 0753/1420] python3-sentry: rebuild for Python 3.11 --- 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 11eb2c55ce60..dea9d2fe2114 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=2 +revision=3 wrksrc="sentry-python-${version}" build_style=python3-module hostmakedepends=python3-setuptools From 48492e1a37c004a7f0d5b327fe14d79287976913 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:53 -0400 Subject: [PATCH 0754/1420] python3-trimesh: rebuild for Python 3.11 --- 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 4a30e9f6015c..13109103b7cd 100644 --- a/srcpkgs/python3-trimesh/template +++ b/srcpkgs/python3-trimesh/template @@ -1,7 +1,7 @@ # Template file for 'python3-trimesh' pkgname=python3-trimesh version=3.15.2 -revision=1 +revision=2 wrksrc="trimesh-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 5e6d4b9a626a3fcdc2e8713a4668e467e85fbd3a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:53 -0400 Subject: [PATCH 0755/1420] gdb: rebuild for Python 3.11 --- srcpkgs/gdb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gdb/template b/srcpkgs/gdb/template index ff7c9d9a5911..9c5f17ffc519 100644 --- a/srcpkgs/gdb/template +++ b/srcpkgs/gdb/template @@ -1,7 +1,7 @@ # Template file for 'gdb' pkgname=gdb version=12.1 -revision=1 +revision=2 build_style=gnu-configure pycompile_dirs="/usr/share/gdb/python" configure_args="--disable-werror --disable-nls --with-system-readline From e5b9245da7ef3634ece96025f4389c26dc10daf1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:53 -0400 Subject: [PATCH 0756/1420] python3-apsw: rebuild for Python 3.11 --- srcpkgs/python3-apsw/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-apsw/template b/srcpkgs/python3-apsw/template index 2a163e060890..acc8052cfcfc 100644 --- a/srcpkgs/python3-apsw/template +++ b/srcpkgs/python3-apsw/template @@ -1,7 +1,7 @@ # Template file for 'python3-apsw' pkgname=python3-apsw version=3.39.3.0 -revision=1 +revision=2 wrksrc="apsw-${version/r/-r}" build_style=python3-module make_build_args="--enable=load_extension" From cd455fafd65c55ebf0e71f4453dca1880634c8e0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:53 -0400 Subject: [PATCH 0757/1420] rrdtool: rebuild for Python 3.11 --- srcpkgs/rrdtool/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/rrdtool/template b/srcpkgs/rrdtool/template index fc9631937b87..c45176f72a85 100644 --- a/srcpkgs/rrdtool/template +++ b/srcpkgs/rrdtool/template @@ -1,7 +1,7 @@ # Template file for 'rrdtool' pkgname=rrdtool version=1.7.2 -revision=12 +revision=13 build_style=gnu-configure # configure checks sys.version[:3] for Python versioning, so 3.10 becomes 3.1; # until this is fixed upstream, manually define am_cv_python_version to circumvent From 96774a790d549b5eb88d724d8edcccb386f3498a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:54 -0400 Subject: [PATCH 0758/1420] caribou: rebuild for Python 3.11 --- srcpkgs/caribou/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/caribou/template b/srcpkgs/caribou/template index fbaa66126440..7a3be48133cf 100644 --- a/srcpkgs/caribou/template +++ b/srcpkgs/caribou/template @@ -1,7 +1,7 @@ # Template file for 'caribou' pkgname=caribou version=0.4.21 -revision=6 +revision=7 build_style=gnu-configure build_helper="gir" configure_args="--disable-schemas-compile --disable-static --disable-gtk2-module From 0b87724b91c894b4c9923c14aea292bed4220f1e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:54 -0400 Subject: [PATCH 0759/1420] cinnamon-screensaver: rebuild for Python 3.11 --- 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 3f5751bbd840..36e3fc2edd85 100644 --- a/srcpkgs/cinnamon-screensaver/template +++ b/srcpkgs/cinnamon-screensaver/template @@ -1,7 +1,7 @@ # Template file for 'cinnamon-screensaver' pkgname=cinnamon-screensaver version=5.4.2 -revision=1 +revision=2 build_style=meson build_helper=gir hostmakedepends="gettext-devel glib-devel gobject-introspection From 8ded5ac614d0563d6a29a9acaed561a89c9e0dc8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:54 -0400 Subject: [PATCH 0760/1420] python3-pam: rebuild for Python 3.11 --- 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 2881e3a333c7..9b2c08535c9d 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=6 +revision=7 wrksrc="python-pam-$version" build_style=python3-module hostmakedepends="python3-setuptools" From 41d39a49bce330552df71e2422c1a4339ab546cf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:54 -0400 Subject: [PATCH 0761/1420] python3-tinycss: rebuild for Python 3.11 --- 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 d30096c21656..2b1f85d4f6b4 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=4 +revision=5 wrksrc=tinycss-${version} build_style=python3-module pycompile_module="tinycss" From f3d7f75365598e5e7c66f2681e9a11cf59fd3da0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:54 -0400 Subject: [PATCH 0762/1420] certbot: rebuild for Python 3.11 --- srcpkgs/certbot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/certbot/template b/srcpkgs/certbot/template index aeb769eeb943..405246e0898d 100644 --- a/srcpkgs/certbot/template +++ b/srcpkgs/certbot/template @@ -1,7 +1,7 @@ # Template file for 'certbot' pkgname=certbot version=1.31.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-acme python3-ConfigArgParse python3-configobj From 26df762c8f12f5e8a02e35c655f212eb202a116b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:54 -0400 Subject: [PATCH 0763/1420] python3-augeas: rebuild for Python 3.11 --- 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 792230f64f7b..1740d62b6cba 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=2 +revision=3 wrksrc="python-augeas-${version}" build_style=python3-module hostmakedepends="python3-setuptools augeas-devel python3-cffi" From 19f245a21ef7db29be32da6a3b74ea5b923dc554 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:54 -0400 Subject: [PATCH 0764/1420] compizconfig-python: rebuild for Python 3.11 --- 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 ad5a646c077a..b82a381710a7 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=5 +revision=6 build_style=gnu-configure configure_args="--disable-static" hostmakedepends="automake intltool libtool pkg-config glib-devel gettext-devel From c27d73978e1758f3eb5d24401401fe4538a34cad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:54 -0400 Subject: [PATCH 0765/1420] python3-grequests: rebuild for Python 3.11 --- 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 b6eb840fbbce..68c245553eeb 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=2 +revision=3 wrksrc="grequests-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 6007406813d0cb1b231a7c65ea750b2185fa1d85 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:54 -0400 Subject: [PATCH 0766/1420] python3-mpv: rebuild for Python 3.11 --- 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 47efa967f970..a3292ebbfd7c 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.1 -revision=1 +revision=2 wrksrc="python-mpv-${version}" build_style=python3-module # this test takes too long and has a low chance of failure From f635793b731c1576fe41f3ec2d8fca92c0f4490e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:55 -0400 Subject: [PATCH 0767/1420] canto-next: rebuild for Python 3.11 --- 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 9f3373c67b38..833c45cda0e9 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=1 +revision=2 build_style=python3-module pycompile_dirs="/usr/lib/canto/plugins" hostmakedepends="python3-setuptools" From a6837b7a4470ad714631b4f6e395880d44a897e3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:55 -0400 Subject: [PATCH 0768/1420] python3-cchardet: rebuild for Python 3.11 --- 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 a7b00cda3974..768ba68101fa 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=2 +revision=3 wrksrc="cchardet-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" From e231ff558d5e3a347c44822c10b71f410c5f5c7a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:55 -0400 Subject: [PATCH 0769/1420] python3-html5-parser: rebuild for Python 3.11 --- srcpkgs/python3-html5-parser/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-html5-parser/template b/srcpkgs/python3-html5-parser/template index f270cd93446e..dd0b66c3c822 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=1 +revision=2 wrksrc="html5-parser-${version}" build_style=python3-module hostmakedepends="python3-setuptools pkg-config" From 9085d9ee0c4ae3c50182bc79b816c66d8c6de13c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:55 -0400 Subject: [PATCH 0770/1420] python3-mechanize: rebuild for Python 3.11 --- 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 5c9df2b45c96..452b1c574c00 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=1 +revision=2 wrksrc="mechanize-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 0794417e49dd0152fa90496971cd8759bf9cfa40 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:55 -0400 Subject: [PATCH 0771/1420] python3-pychm: rebuild for Python 3.11 --- 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 3f58537d7950..f95ac732dc58 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=3 +revision=4 wrksrc=pychm-${version} build_style=python3-module hostmakedepends="python3 python3-setuptools" From 1989ca2c8a917f3a994a0bc84525dfed73bba99b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:55 -0400 Subject: [PATCH 0772/1420] python3-ewmh: rebuild for Python 3.11 --- 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 d88beb7ac92e..cff6b349a3d3 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=6 +revision=7 wrksrc="ewmh-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From c93fb34a3c86b411dd3c1d4f8a0d443dc9d47bda Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:55 -0400 Subject: [PATCH 0773/1420] borg: rebuild for Python 3.11 --- srcpkgs/borg/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/borg/template b/srcpkgs/borg/template index 1c6f2949cc1b..34c5813fa88c 100644 --- a/srcpkgs/borg/template +++ b/srcpkgs/borg/template @@ -1,7 +1,7 @@ # Template file for 'borg' pkgname=borg version=1.2.2 -revision=2 +revision=3 wrksrc="borgbackup-${version}" build_style=python3-module make_check_args="-k not((benchmark)or(test_readonly_check)or(test_readonly_diff)or(test_readonly_export_tar)or(test_readonly_extract)or(test_readonly_info)or(test_readonly_list))" From 7fa9a8c5bad2c12135999cb7a4786d141fd44bc6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:55 -0400 Subject: [PATCH 0774/1420] python3-confuse: rebuild for Python 3.11 --- 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 f922b75e0da5..bf2e4897f6fb 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=1 +revision=2 wrksrc="confuse-${version}" build_style=python3-pep517 hostmakedepends="python3-flit_core" From 6f790787ad2199b97d4591b21c520e54ceac886b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:55 -0400 Subject: [PATCH 0775/1420] python3-jellyfish: rebuild for Python 3.11 --- srcpkgs/python3-jellyfish/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-jellyfish/template b/srcpkgs/python3-jellyfish/template index c0ebbb6bf79d..60e1533a7452 100644 --- a/srcpkgs/python3-jellyfish/template +++ b/srcpkgs/python3-jellyfish/template @@ -1,7 +1,7 @@ # Template file for 'python3-jellyfish' pkgname=python3-jellyfish version=0.9.0 -revision=1 +revision=2 wrksrc="jellyfish-${version}" build_style=python3-module make_check_target=build/lib.*/jellyfish/test.py From b64b1421398f7b20ff61cfd3794418604483288a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:55 -0400 Subject: [PATCH 0776/1420] python3-mediafile: rebuild for Python 3.11 --- 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 594e0c6a3029..e70a1200f2a7 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.9.0 -revision=1 +revision=2 wrksrc="mediafile-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 9f0c3ae2a2a91acff1dc063acd205efcd27f243f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:56 -0400 Subject: [PATCH 0777/1420] python3-munkres: rebuild for Python 3.11 --- 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 5dd0f0da8cf5..759478067239 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=2 +revision=3 wrksrc="munkres-release-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 9d1385b045fa16f57da4cd0912ef0a4db77adafa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:56 -0400 Subject: [PATCH 0778/1420] python-b2sdk: rebuild for Python 3.11 --- srcpkgs/python-b2sdk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-b2sdk/template b/srcpkgs/python-b2sdk/template index 31777aa2671e..f3b22e002221 100644 --- a/srcpkgs/python-b2sdk/template +++ b/srcpkgs/python-b2sdk/template @@ -2,7 +2,7 @@ # keep python-b2sdk name to revert this package pkgname=python-b2sdk version=1.18.0 -revision=1 +revision=2 wrksrc="b2sdk-${version}" build_style=python3-pep517 make_install_target="b2sdk-${version}-*-*-*.whl" From e0a7f52a831b3156eae804e37029305ac7db0a06 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:56 -0400 Subject: [PATCH 0779/1420] python3-phx-class-registry: rebuild for Python 3.11 --- 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 abd03589b538..1c14815ca5d4 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=3.0.5 -revision=1 +revision=2 wrksrc="phx-class-registry-${version}" build_style=python3-pep517 hostmakedepends="python3-wheel" From 0b93e21188f5595796187556332a61b08e74ee7f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:56 -0400 Subject: [PATCH 0780/1420] python3-boto3: rebuild for Python 3.11 --- 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 fce7f778a064..1c56de0d9cea 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.24.70 -revision=1 +revision=2 wrksrc="boto3-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a1e8cde27ba4fe5c99e718ab8ce002de28647fcc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:56 -0400 Subject: [PATCH 0781/1420] python3-s3transfer: rebuild for Python 3.11 --- 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 a848c12ccf27..904eb7dfc0fb 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=1 +revision=2 wrksrc="s3transfer-${version}" build_style=python3-module # integration tests want aws credentials From 8ed5481c0226646b28b1ef711e92c864ae3e561b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:56 -0400 Subject: [PATCH 0782/1420] python3-i3ipc: rebuild for Python 3.11 --- 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 7172c5b3c287..5ae3eee24172 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=5 +revision=6 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From fa70c9e259f459c5340ccc9d19b1a0cd833f5172 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:56 -0400 Subject: [PATCH 0783/1420] python3-pypandoc: rebuild for Python 3.11 --- 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 1a4f16673cfa..095ae232d58d 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=1 +revision=2 wrksrc=pypandoc-$version build_style=python3-module hostmakedepends="python3-setuptools" From 5d43a44d370233156e1c6a052687e73994f173f0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:56 -0400 Subject: [PATCH 0784/1420] notmuch: rebuild for Python 3.11 --- srcpkgs/notmuch/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template index b33a09fbddcf..4f51aeb872ac 100644 --- a/srcpkgs/notmuch/template +++ b/srcpkgs/notmuch/template @@ -1,7 +1,7 @@ # Template file for 'notmuch' pkgname=notmuch version=0.35 -revision=1 +revision=2 build_style=configure configure_args="--prefix=/usr --emacslispdir=/usr/share/emacs/site-lisp/notmuch From 796fd66625916ba689073d58baaeee8353328888 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:56 -0400 Subject: [PATCH 0785/1420] python3-dkimpy: rebuild for Python 3.11 --- 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 8818893dcb69..50aa41a15368 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=2 +revision=3 wrksrc="dkimpy-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d2145487bf77a0783dfc8d46e1bf4e5b17b771f5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:56 -0400 Subject: [PATCH 0786/1420] python3-Markups: rebuild for Python 3.11 --- 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 b956b249d9d0..55a5a65aae79 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=6 +revision=7 wrksrc="Markups-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From eac08c5e083f2947e063564ab1bd2c0996d972b7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:57 -0400 Subject: [PATCH 0787/1420] python3-Flask-Cors: rebuild for Python 3.11 --- 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 7af4ebc13473..33fea5469a14 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=3.0.10 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 8f54cecf09e4be3c0f94204b2c823ceaa410541e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:57 -0400 Subject: [PATCH 0788/1420] python3-QtAwesome: rebuild for Python 3.11 --- 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 4e8c238d9712..9eb2cc879925 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.2.0 -revision=1 +revision=2 wrksrc="QtAwesome-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 2c9776a2b5c4bd2cf6e740ebcf306e69645b13ad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:57 -0400 Subject: [PATCH 0789/1420] python3-alembic: rebuild for Python 3.11 --- 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 d86e686e6fc6..e1f747a17643 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.8.0 -revision=1 +revision=2 wrksrc="alembic-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 2b7d59413e0ad4ac9f4dd4a59df9ff4037c5dc89 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:57 -0400 Subject: [PATCH 0790/1420] python3-pymediainfo: rebuild for Python 3.11 --- 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 002729dd0a38..09adfba70824 100644 --- a/srcpkgs/python3-pymediainfo/template +++ b/srcpkgs/python3-pymediainfo/template @@ -1,7 +1,7 @@ # Template file for 'python3-pymediainfo' pkgname=python3-pymediainfo version=5.1.0 -revision=2 +revision=3 wrksrc="pymediainfo-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From 725041df8f4ea242e38ea292cf1737dbad8f4116 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:57 -0400 Subject: [PATCH 0791/1420] python3-vlc: rebuild for Python 3.11 --- 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 2c1357c26954..8d359451163c 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.16120 -revision=1 +revision=2 wrksrc="python-vlc-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 53858d3c0fdd06a6f0034e8bbd30fd777ba34cd8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:57 -0400 Subject: [PATCH 0792/1420] python3-waitress: rebuild for Python 3.11 --- 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 2c31ef6c6cfb..0c0c0db14bb3 100644 --- a/srcpkgs/python3-waitress/template +++ b/srcpkgs/python3-waitress/template @@ -1,7 +1,7 @@ # Template file for 'python3-waitress' pkgname=python3-waitress version=2.1.2 -revision=1 +revision=2 wrksrc="waitress-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 3c3b28beabd6bc6982231a79aae4fe4298903dcd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:57 -0400 Subject: [PATCH 0793/1420] python3-cloudscraper: rebuild for Python 3.11 --- 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 ad8e7835116d..db283dc954b3 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=2 +revision=3 wrksrc=cloudscraper-${version} build_style=python3-module hostmakedepends="python3-setuptools" From be97cbfc78aa5aa480618b8e4dbbfaa21b50bf29 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:57 -0400 Subject: [PATCH 0794/1420] python3-dateparser: rebuild for Python 3.11 --- 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 8185cc488fcd..fe0e60f40a43 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.1 -revision=1 +revision=2 wrksrc=dateparser-${version} build_style=python3-module make_check_args="--ignore tests/test_hijri.py --ignore tests/test_jalali.py From 643d3ada8be7a379cd1ee8258d9df594c39b9bca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:57 -0400 Subject: [PATCH 0795/1420] python3-pure-protobuf: rebuild for Python 3.11 --- 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 5dc4006d2959..fc07bd8ae9eb 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=3 +revision=4 wrksrc=protobuf-${version} build_style=python3-module hostmakedepends="python3-setuptools" From c8fc2b8f3582b858b64d9b6aee6e3643971bbc4c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:58 -0400 Subject: [PATCH 0796/1420] python3-pathvalidate: rebuild for Python 3.11 --- 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 a08c14141edf..498a9e2dad9e 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=1 +revision=2 wrksrc="pathvalidate-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 912394adad3a7b6a9a7c8d613a9d60e28cc0ad1f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:58 -0400 Subject: [PATCH 0797/1420] pyliblo: rebuild for Python 3.11 --- srcpkgs/pyliblo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pyliblo/template b/srcpkgs/pyliblo/template index de7f1bd20b24..80ba2e77a008 100644 --- a/srcpkgs/pyliblo/template +++ b/srcpkgs/pyliblo/template @@ -1,7 +1,7 @@ # Template file for 'pyliblo' pkgname=pyliblo version=0.10.0 -revision=2 +revision=3 wrksrc="pyliblo-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" From 1e0240aaeeddf93b61ed308c004d45df43bb5d1d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 4 Oct 2022 20:08:48 -0400 Subject: [PATCH 0798/1420] znc: rebuild for Python 3.11 --- srcpkgs/znc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/znc/template b/srcpkgs/znc/template index 9c186214c7c7..6d197347303c 100644 --- a/srcpkgs/znc/template +++ b/srcpkgs/znc/template @@ -1,7 +1,7 @@ # Template file for 'znc' pkgname=znc version=1.8.2 -revision=12 +revision=13 build_style=gnu-configure configure_args=" --enable-python From 9646ed837b87e2860cadf1df9aeab32d44c67dd2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:58 -0400 Subject: [PATCH 0799/1420] zim: rebuild for Python 3.11 --- srcpkgs/zim/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template index cf6d2119d841..494f6f0b4d03 100644 --- a/srcpkgs/zim/template +++ b/srcpkgs/zim/template @@ -1,7 +1,7 @@ # Template file for 'zim' pkgname=zim version=0.74.3 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-gobject python3-xdg gtk+3" depends="python3-gobject python3-xdg gtk+3 desktop-file-utils" From f62f9d3704e82d70c51e582ea662f03a4cae3894 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:58 -0400 Subject: [PATCH 0800/1420] z3: rebuild for Python 3.11 --- srcpkgs/z3/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/z3/template b/srcpkgs/z3/template index eab732c1dba3..d9354558d269 100644 --- a/srcpkgs/z3/template +++ b/srcpkgs/z3/template @@ -1,7 +1,7 @@ # Template file for 'z3' pkgname=z3 version=4.11.2 -revision=1 +revision=2 wrksrc="${pkgname}-${pkgname}-${version}" build_style=configure configure_args="--prefix=/usr -g --python $(vopt_if ocaml --ml)" From 161654ccf9ca49e1fa58467ad76c2ff380c4ca37 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:58 -0400 Subject: [PATCH 0801/1420] yubikey-manager: rebuild for Python 3.11 --- 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 19ee6fdfc0cd..7e0b2c37b76a 100644 --- a/srcpkgs/yubikey-manager/template +++ b/srcpkgs/yubikey-manager/template @@ -1,7 +1,7 @@ # Template file for 'yubikey-manager' pkgname=yubikey-manager version=4.0.7 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="libfido2 python3-click python3-fido2 python3-openssl From b962c4ef618a68d16534b729a1d5ed4820ea73cb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:58 -0400 Subject: [PATCH 0802/1420] ytmdl: rebuild for Python 3.11 --- srcpkgs/ytmdl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ytmdl/template b/srcpkgs/ytmdl/template index 52a118f2dfd6..b94b9e5e5f29 100644 --- a/srcpkgs/ytmdl/template +++ b/srcpkgs/ytmdl/template @@ -1,7 +1,7 @@ # Template file for 'ytmdl' pkgname=ytmdl version=2022.03.16 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="ffmpeg youtube-dl python3-mutagen python3-requests python3-colorama From b11af6bd2487b362e7b95187e1360fc303faba6f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:58 -0400 Subject: [PATCH 0803/1420] ytcc: rebuild for Python 3.11 --- srcpkgs/ytcc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template index 494070eb7259..8dcaa81177dd 100644 --- a/srcpkgs/ytcc/template +++ b/srcpkgs/ytcc/template @@ -1,7 +1,7 @@ # Template file for 'ytcc' pkgname=ytcc version=2.6.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="mpv yt-dlp python3-click python3-wcwidth" From 0d9d0ee97e2c8343e783a0646be2e4ecca42aa6c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:58 -0400 Subject: [PATCH 0804/1420] yq: rebuild for Python 3.11 --- srcpkgs/yq/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template index 20affe54bc63..ee20a9b40aeb 100644 --- a/srcpkgs/yq/template +++ b/srcpkgs/yq/template @@ -1,7 +1,7 @@ # Template file for 'yq' pkgname=yq version=3.1.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools_scm" makedepends="python3-yaml" From a933c95e66804f6752946cc1a63335d5a8b18d78 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:58 -0400 Subject: [PATCH 0805/1420] you-get: rebuild for Python 3.11 --- 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 b50a0af1a29c..bc1be3bd477c 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.1620 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pysocks python3-setuptools" From a943506949694eb1c302ffcecddb35eb0a4c5fc3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:59 -0400 Subject: [PATCH 0806/1420] xpra: update to 4.4.1. --- srcpkgs/xpra/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/xpra/template b/srcpkgs/xpra/template index 3c971c4ec86c..98c36da5d251 100644 --- a/srcpkgs/xpra/template +++ b/srcpkgs/xpra/template @@ -1,6 +1,6 @@ # Template file for 'xpra' pkgname=xpra -version=4.4 +version=4.4.1 revision=1 build_style=python3-module make_install_args="$(vopt_with docs)" @@ -17,7 +17,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=0c175b9fde0b327353b345d047417a9c87c43ae695b86583c453096d7cdc9247 +checksum=8d03fec4e22e1946e798ed2dbfaaf87fa50f385a35024ab66e615974b884402b 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 ed8847a7ab78afd0f13bd44f65a816be6c228687 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:59 -0400 Subject: [PATCH 0807/1420] xonsh: rebuild for Python 3.11 --- srcpkgs/xonsh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template index b13634b91c0f..319f7806db42 100644 --- a/srcpkgs/xonsh/template +++ b/srcpkgs/xonsh/template @@ -1,7 +1,7 @@ # Template file for 'xonsh' pkgname=xonsh version=0.13.3 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools python3-wheel" depends="python3" From 9a51e4ca41513bf22ce4f82281df2e6830be9188 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:59 -0400 Subject: [PATCH 0808/1420] xmldiff: rebuild for Python 3.11 --- srcpkgs/xmldiff/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xmldiff/template b/srcpkgs/xmldiff/template index e377c916f3cb..fbc565d24897 100644 --- a/srcpkgs/xmldiff/template +++ b/srcpkgs/xmldiff/template @@ -1,7 +1,7 @@ # Template file for 'xmldiff' pkgname=xmldiff version=2.4 -revision=4 +revision=5 wrksrc="xmldiff-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 49f7ad94aac34e6bd7ec4c02ab207beca872c1e1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:59 -0400 Subject: [PATCH 0809/1420] xkcdpass: rebuild for Python 3.11 --- srcpkgs/xkcdpass/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template index b01c5ae0a469..9391157b3e97 100644 --- a/srcpkgs/xkcdpass/template +++ b/srcpkgs/xkcdpass/template @@ -1,7 +1,7 @@ # Template file for 'xkcdpass' pkgname=xkcdpass version=1.19.3 -revision=2 +revision=3 wrksrc="XKCD-password-generator-xkcdpass-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 19b42b617cebd0929eb6aaa017fb800e8b1ec777 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:59 -0400 Subject: [PATCH 0810/1420] xen: rebuild for Python 3.11 --- srcpkgs/xen/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xen/template b/srcpkgs/xen/template index cca4b6211bec..6791f7741fb3 100644 --- a/srcpkgs/xen/template +++ b/srcpkgs/xen/template @@ -1,7 +1,7 @@ # Template file for 'xen' pkgname=xen version=4.14.1 -revision=6 +revision=7 # grep -R IPXE_GIT_TAG src/xen-*/tools/firmware/etherboot _git_tag_ipxe=4bd064de239dab2426b31c9789a1f4d78087dc63 # TODO: arm / aarch64 From 3f7f2253bb4dd4243a679fe5e1f9302fb85fb094 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:59 -0400 Subject: [PATCH 0811/1420] xdot: rebuild for Python 3.11 --- srcpkgs/xdot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template index d75b757cc848..eb3a27563ce0 100644 --- a/srcpkgs/xdot/template +++ b/srcpkgs/xdot/template @@ -1,7 +1,7 @@ # Template file for 'xdot' pkgname=xdot version=1.2 -revision=2 +revision=3 wrksrc="xdot.py-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From e472c1e5fb8f83af91846499bfabb888720b06a0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:59 -0400 Subject: [PATCH 0812/1420] wpgtk: rebuild for Python 3.11 --- srcpkgs/wpgtk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template index f25d1ed58a3f..0e119c041299 100644 --- a/srcpkgs/wpgtk/template +++ b/srcpkgs/wpgtk/template @@ -1,7 +1,7 @@ # Template file for 'wpgtk' pkgname=wpgtk version=6.1.3 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-gobject python3-Pillow pywal libxslt" From 313f9d06a480fe06836688b4d2c960287ab38ee7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:59 -0400 Subject: [PATCH 0813/1420] wicd: rebuild for Python 3.11 --- srcpkgs/wicd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/wicd/template b/srcpkgs/wicd/template index 936f40adf3cc..2481635db50e 100644 --- a/srcpkgs/wicd/template +++ b/srcpkgs/wicd/template @@ -1,7 +1,7 @@ # Template file for 'wicd' pkgname=wicd version=1.7.4 -revision=7 +revision=8 _ver=$version+tb2+2019.09.18git2e0ba579-1 wrksrc="$pkgname-debian-$_ver" build_style="python3-module" From e691922e14324bac40e9a63be127d6ee4516764b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:59 -0400 Subject: [PATCH 0814/1420] whipper: rebuild for Python 3.11 --- srcpkgs/whipper/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/whipper/template b/srcpkgs/whipper/template index ff88950a8173..cd7f851f8c4d 100644 --- a/srcpkgs/whipper/template +++ b/srcpkgs/whipper/template @@ -1,7 +1,7 @@ # Template file for 'whipper' pkgname=whipper version=0.10.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools_scm" makedepends="libsndfile-devel python3-devel" From b2a643c8e6a7d8fa61bf0b61742641a7a5455251 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:00 -0400 Subject: [PATCH 0815/1420] wfuzz: rebuild for Python 3.11 --- srcpkgs/wfuzz/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template index 3e072535a74c..8b4cf9c212c8 100644 --- a/srcpkgs/wfuzz/template +++ b/srcpkgs/wfuzz/template @@ -1,7 +1,7 @@ # Template file for 'wfuzz' pkgname=wfuzz version=3.1.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-chardet python3-curl python3-future python3-lxml python3-parse From b7e5df793b5ad53a40f3ebdcd450ba65e52aa329 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 4 Oct 2022 20:08:48 -0400 Subject: [PATCH 0816/1420] weechat: rebuild for Python 3.11 --- srcpkgs/weechat/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/weechat/template b/srcpkgs/weechat/template index 7290b6ab91cf..98358837c868 100644 --- a/srcpkgs/weechat/template +++ b/srcpkgs/weechat/template @@ -1,7 +1,7 @@ # Template file for 'weechat' pkgname=weechat version=3.7.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 30b6be7e37c24eb77e555160d96d968fa811e386 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:00 -0400 Subject: [PATCH 0817/1420] weather: rebuild for Python 3.11 --- srcpkgs/weather/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template index 9aa38b74fcbd..af0f760a594f 100644 --- a/srcpkgs/weather/template +++ b/srcpkgs/weather/template @@ -1,7 +1,7 @@ # Template file for 'weather' pkgname=weather version=2.4.1 -revision=3 +revision=4 depends="python3" conf_files="/etc/weatherrc" short_desc="CLI utility for current (METAR) weather conditions and forecasts" From 1279ad8f4d0d35de7fc00b02e4b9544071357cc0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:00 -0400 Subject: [PATCH 0818/1420] waydroid: rebuild for Python 3.11 --- srcpkgs/waydroid/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/waydroid/template b/srcpkgs/waydroid/template index edaad2ae1721..f24a4a3d00cb 100644 --- a/srcpkgs/waydroid/template +++ b/srcpkgs/waydroid/template @@ -1,7 +1,7 @@ # Template file for 'waydroid' pkgname=waydroid version=1.3.3 -revision=1 +revision=2 # https://developer.android.com/ndk/guides/abis#sa archs="aarch64* armv7* i686* x86_64*" build_style=gnu-makefile From f3595b73e10836d8798187b3cf56f36d27199b33 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:00 -0400 Subject: [PATCH 0819/1420] vpn-slice: rebuild for Python 3.11 --- 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 f7bb3499b98f..651eae82cd78 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=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-dnspython python3-setproctitle iproute2" From 24ac1093867a09ef49468df51efd563f83211936 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:00 -0400 Subject: [PATCH 0820/1420] voltron: rebuild for Python 3.11 --- srcpkgs/voltron/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template index f60d235b1dae..87354b55052d 100644 --- a/srcpkgs/voltron/template +++ b/srcpkgs/voltron/template @@ -1,7 +1,7 @@ # Template file for 'voltron' pkgname=voltron version=0.1.7 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-blessed python3-Flask python3-Pygments python3-pysigset From e487a4268b31f7d13f33fff3563565ea236dd4f1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:00 -0400 Subject: [PATCH 0821/1420] volctl: rebuild for Python 3.11 --- srcpkgs/volctl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template index ea3713e5912d..5b9bcc4b335b 100644 --- a/srcpkgs/volctl/template +++ b/srcpkgs/volctl/template @@ -1,7 +1,7 @@ # Template file for 'volctl' pkgname=volctl version=0.9.2 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-gobject gtk+3 desktop-file-utils python3-cairo python3-pulsectl" From b70bf739a1797e3f5a8cb16ee7680b27318bbd58 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:00 -0400 Subject: [PATCH 0822/1420] vit: rebuild for Python 3.11 --- srcpkgs/vit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/vit/template b/srcpkgs/vit/template index 9eb3596b5d31..da2297d91eb5 100644 --- a/srcpkgs/vit/template +++ b/srcpkgs/vit/template @@ -1,7 +1,7 @@ # Template file for 'vit' pkgname=vit version=2.2.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="task python3-urwid python3-tasklib" From 0ef7897350efa61a7bb8a6b254f3b532bf4ee774 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:00 -0400 Subject: [PATCH 0823/1420] visidata: rebuild for Python 3.11 --- srcpkgs/visidata/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template index b9544b81175c..e26772d6a017 100644 --- a/srcpkgs/visidata/template +++ b/srcpkgs/visidata/template @@ -1,7 +1,7 @@ # Template file for 'visidata' pkgname=visidata version=2.8 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-dateutil" From 9875db44a3573483071e25c8d08f2de22902d6e4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:00 -0400 Subject: [PATCH 0824/1420] virtualenvwrapper: rebuild for Python 3.11 --- srcpkgs/virtualenvwrapper/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template index f0e18f6fafce..913860dba963 100644 --- a/srcpkgs/virtualenvwrapper/template +++ b/srcpkgs/virtualenvwrapper/template @@ -1,7 +1,7 @@ # Template file for 'virtualenvwrapper' pkgname=virtualenvwrapper version=4.8.4 -revision=5 +revision=6 build_style=python3-module pycompile_module="virtualenvwrapper" hostmakedepends="python3-setuptools python3-pbr" From e3b9bdb74c521eb5e9206ea85e35dcca9498f2c5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:01 -0400 Subject: [PATCH 0825/1420] virtme: rebuild for Python 3.11 --- srcpkgs/virtme/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template index de62c6501876..7cfbb5d6dc6b 100644 --- a/srcpkgs/virtme/template +++ b/srcpkgs/virtme/template @@ -1,7 +1,7 @@ # Template file for 'virtme' pkgname=virtme version=0.1.1 -revision=4 +revision=5 build_style=python3-module pycompile_module="virtme" hostmakedepends="python3-setuptools" From d5583cbcda31db31a270a57cccd2b59f770f4fa1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:01 -0400 Subject: [PATCH 0826/1420] virt-manager: rebuild for Python 3.11 --- 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 2172af5b2beb..018339e1dc8a 100644 --- a/srcpkgs/virt-manager/template +++ b/srcpkgs/virt-manager/template @@ -1,7 +1,7 @@ # Template file for 'virt-manager' pkgname=virt-manager version=4.1.0 -revision=1 +revision=2 build_style=python3-module pycompile_dirs="/usr/share/${pkgname}/virtManager" hostmakedepends="gettext python3-docutils python3-setuptools" From 83a022f4d63ad3e2e908b95f1f02c9add365c43f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:01 -0400 Subject: [PATCH 0827/1420] vimiv: rebuild for Python 3.11 --- srcpkgs/vimiv/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/vimiv/template b/srcpkgs/vimiv/template index b478dc2f09d5..145f7e5434f3 100644 --- a/srcpkgs/vimiv/template +++ b/srcpkgs/vimiv/template @@ -1,7 +1,7 @@ # Template file for 'vimiv' pkgname=vimiv version=0.9.1 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools python3-devel" makedepends="python3-devel" From 353abb1d108a6c48663ea04ba2046c83939f826b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 4 Oct 2022 20:08:48 -0400 Subject: [PATCH 0828/1420] vim: rebuild for Python 3.11 --- srcpkgs/vim/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template index 403a663efe00..4760d64cfd8c 100644 --- a/srcpkgs/vim/template +++ b/srcpkgs/vim/template @@ -1,7 +1,7 @@ # Template file for 'vim' pkgname=vim version=9.0.0447 -revision=2 +revision=3 hostmakedepends="gettext glib-devel pkg-config" makedepends="acl-devel ncurses-devel $(vopt_if x11 libXt-devel) From f0c4165d4ba8263f5fa5259ce92c02f7ae07fab0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:01 -0400 Subject: [PATCH 0829/1420] vidcutter: rebuild for Python 3.11 --- srcpkgs/vidcutter/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template index 40693bd97ece..07bda50c917c 100644 --- a/srcpkgs/vidcutter/template +++ b/srcpkgs/vidcutter/template @@ -1,7 +1,7 @@ # Template file for 'vidcutter' pkgname=vidcutter version=6.0.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" makedepends="mpv-devel python3-devel" From 54b2701e7035db79e9b9f2bde5fefd2ffebeda1f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:01 -0400 Subject: [PATCH 0830/1420] vdirsyncer: rebuild for Python 3.11 --- srcpkgs/vdirsyncer/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template index 7719d568100d..4e2c23289b8e 100644 --- a/srcpkgs/vdirsyncer/template +++ b/srcpkgs/vdirsyncer/template @@ -1,7 +1,7 @@ # Template file for 'vdirsyncer' pkgname=vdirsyncer version=0.18.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3-atomicwrites python3-click python3-click-log From 4f167f46abf8e44c1eb1883e1bc70d58f91180d4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:01 -0400 Subject: [PATCH 0831/1420] variety: rebuild for Python 3.11 --- srcpkgs/variety/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template index c5c8fe0d109f..02d548f9d8df 100644 --- a/srcpkgs/variety/template +++ b/srcpkgs/variety/template @@ -1,7 +1,7 @@ # Template file for 'variety' pkgname=variety version=0.8.9 -revision=1 +revision=2 build_style=python3-module pycompile_dirs="usr/share/variety/plugins" hostmakedepends="python3-distutils-extra intltool" From 386205b6f4fae6ca8475296985bee101d4a0bd88 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:01 -0400 Subject: [PATCH 0832/1420] vapoursynth: rebuild for Python 3.11 --- srcpkgs/vapoursynth/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/vapoursynth/template b/srcpkgs/vapoursynth/template index 63a2043fe522..f9d3905ace6c 100644 --- a/srcpkgs/vapoursynth/template +++ b/srcpkgs/vapoursynth/template @@ -1,7 +1,7 @@ # Template file for 'vapoursynth' pkgname=vapoursynth version=R57 -revision=1 +revision=2 build_style=gnu-configure hostmakedepends="automake libtool nasm pkg-config python3-Cython" makedepends="python3-devel zimg-devel" From 7a035d7807d3145527b4827ef09a2aa0ab63fd80 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:01 -0400 Subject: [PATCH 0833/1420] uwsgi: rebuild for Python 3.11 --- srcpkgs/uwsgi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/uwsgi/template b/srcpkgs/uwsgi/template index a735ff2cbb6b..d41ab59c8df3 100644 --- a/srcpkgs/uwsgi/template +++ b/srcpkgs/uwsgi/template @@ -1,7 +1,7 @@ # Template file for 'uwsgi' pkgname=uwsgi version=2.0.20 -revision=1 +revision=2 hostmakedepends="python3" makedepends="python3-devel" short_desc="Fast, self-healing application container server" From 4fd5b8279e53f65be67897b5cd777f0a9e6a74e3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:02 -0400 Subject: [PATCH 0834/1420] urlwatch: rebuild for Python 3.11 --- srcpkgs/urlwatch/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template index 0d15244c6acb..bdc8421176c2 100644 --- a/srcpkgs/urlwatch/template +++ b/srcpkgs/urlwatch/template @@ -1,7 +1,7 @@ # Template file for 'urlwatch' pkgname=urlwatch version=2.25 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-appdirs python3-keyring python3-minidb python3-requests From 4abc19cb9f2784e6ba6e7fdd17f351e00b6c8669 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:02 -0400 Subject: [PATCH 0835/1420] urlscan: rebuild for Python 3.11 --- srcpkgs/urlscan/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template index 8e8bd3c69439..e609b70f065c 100644 --- a/srcpkgs/urlscan/template +++ b/srcpkgs/urlscan/template @@ -1,7 +1,7 @@ # Template file for 'urlscan' pkgname=urlscan version=0.9.10 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-urwid" From fa9c8dd03ea575d1085dced60a4391d58d8041e7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:02 -0400 Subject: [PATCH 0836/1420] urh: rebuild for Python 3.11 --- srcpkgs/urh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/urh/template b/srcpkgs/urh/template index 330eca018b23..76110b0329cb 100644 --- a/srcpkgs/urh/template +++ b/srcpkgs/urh/template @@ -1,7 +1,7 @@ # Template file for 'urh' pkgname=urh version=2.8.8 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools python3-Cython python3-numpy" makedepends="python3-devel python3-PyQt5 libairspy-devel librtlsdr-devel From 0e17dba1ec7d4ff84069e2f1ed67101dd959ed0a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:02 -0400 Subject: [PATCH 0837/1420] unknown-horizons: rebuild for Python 3.11 --- 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 98b468f080e8..71b6ad8c014e 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=7 +revision=8 build_style=python3-module hostmakedepends="python3 intltool git python3-Pillow" depends="python3 fifengine python3-yaml" From 06a8815c52a46c1469c38a2c1dea570ebb4b5dbd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:02 -0400 Subject: [PATCH 0838/1420] ulauncher: rebuild for Python 3.11 --- srcpkgs/ulauncher/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ulauncher/template b/srcpkgs/ulauncher/template index ac4f8cfb5e5d..8e91a7d7e8e2 100644 --- a/srcpkgs/ulauncher/template +++ b/srcpkgs/ulauncher/template @@ -1,7 +1,7 @@ # Template file for 'ulauncher' pkgname=ulauncher version=5.14.3 -revision=1 +revision=2 wrksrc=${pkgname} build_style=python3-module hostmakedepends="python3-distutils-extra intltool python3-Levenshtein From e49658371100fbc3b91e8cb64a6825cdb5e25d53 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:02 -0400 Subject: [PATCH 0839/1420] ueberzug: rebuild for Python 3.11 --- srcpkgs/ueberzug/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ueberzug/template b/srcpkgs/ueberzug/template index 1513cebd909e..51d2715bf840 100644 --- a/srcpkgs/ueberzug/template +++ b/srcpkgs/ueberzug/template @@ -1,7 +1,7 @@ # Template file for 'ueberzug' pkgname=ueberzug version=18.1.9 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel libX11-devel libXext-devel" From a4851683bcf8e65fd77e17e21a05cf7e3d948a8c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:02 -0400 Subject: [PATCH 0840/1420] udiskie: rebuild for Python 3.11 --- srcpkgs/udiskie/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template index 27f9543795d9..a9a9233f77d2 100644 --- a/srcpkgs/udiskie/template +++ b/srcpkgs/udiskie/template @@ -1,7 +1,7 @@ # Template file for 'udiskie' pkgname=udiskie version=2.4.2 -revision=1 +revision=2 build_style=python3-module hostmakedepends="gettext asciidoc python3-setuptools" depends="gtk+3 libnotify python3-docopt python3-gobject python3-keyutils From 3eef0eb2cbbeb178cb07a5582990369c28c735ee Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:02 -0400 Subject: [PATCH 0841/1420] tzupdate: rebuild for Python 3.11 --- srcpkgs/tzupdate/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template index 4b4e8b605d15..7d64751c2aa2 100644 --- a/srcpkgs/tzupdate/template +++ b/srcpkgs/tzupdate/template @@ -1,7 +1,7 @@ # Template file for 'tzupdate' pkgname=tzupdate version=2.1.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 2ea9183a70994b383980df743694340dade29e84 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:02 -0400 Subject: [PATCH 0842/1420] txt2tags: rebuild for Python 3.11 --- srcpkgs/txt2tags/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/txt2tags/template b/srcpkgs/txt2tags/template index 72b60d970d10..4ee009c3d2aa 100644 --- a/srcpkgs/txt2tags/template +++ b/srcpkgs/txt2tags/template @@ -1,7 +1,7 @@ # Template file for 'txt2tags' pkgname=txt2tags version=3.7 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3 python3-setuptools" depends="python3" From f1df2d3a3b399ca7559ed839eeae4057b1b76e4c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:02 -0400 Subject: [PATCH 0843/1420] tuir: rebuild for Python 3.11 --- srcpkgs/tuir/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template index 354d6d71678a..06cfa4f035e9 100644 --- a/srcpkgs/tuir/template +++ b/srcpkgs/tuir/template @@ -1,7 +1,7 @@ # Template file for 'tuir' pkgname=tuir version=1.29.0 -revision=4 +revision=5 wrksrc="$pkgname-v$version" build_style=python3-module hostmakedepends="python3-setuptools" From b231de6dfcdf42681f13a51401e28e7c94e1d057 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:03 -0400 Subject: [PATCH 0844/1420] tuimoji: rebuild for Python 3.11 --- srcpkgs/tuimoji/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template index 8c1dc6724bfe..9016a715c058 100644 --- a/srcpkgs/tuimoji/template +++ b/srcpkgs/tuimoji/template @@ -1,7 +1,7 @@ # Template file for 'tuimoji' pkgname=tuimoji version=1.0.0 -revision=5 +revision=6 build_style=python3-module pycompile_module="tuimoji" hostmakedepends="python3-setuptools" From 76cec4ef46ae6c302700f087b1aec8510aae7eea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:03 -0400 Subject: [PATCH 0845/1420] tryton: rebuild for Python 3.11 --- srcpkgs/tryton/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template index 18588e3914a6..5c5d4c088061 100644 --- a/srcpkgs/tryton/template +++ b/srcpkgs/tryton/template @@ -1,7 +1,7 @@ # Template file for 'tryton' pkgname=tryton version=5.4.2 -revision=3 +revision=4 build_style=python3-module pycompile_module="tryton" hostmakedepends="python3-setuptools" From 93454db6deb74059213d428165889a0915812fbb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:03 -0400 Subject: [PATCH 0846/1420] treeline: rebuild for Python 3.11 --- srcpkgs/treeline/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/treeline/template b/srcpkgs/treeline/template index b234ec8c8e0c..bea8fc55b47b 100644 --- a/srcpkgs/treeline/template +++ b/srcpkgs/treeline/template @@ -1,7 +1,7 @@ # Template file for 'treeline' pkgname=treeline version=3.1.5 -revision=1 +revision=2 wrksrc="TreeLine-${version}" pycompile_dirs="usr/share/treeline" hostmakedepends="python3" From 530e8de6bdeaf63d05144e4f69158bfff53581ef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:03 -0400 Subject: [PATCH 0847/1420] trash-cli: rebuild for Python 3.11 --- 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 1ce74effbff6..badc90ee9465 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.22.8.27 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3 python3-setuptools" depends="python3-psutil" From 4c721a221b175b2be08d0fe333a022abd0837635 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:03 -0400 Subject: [PATCH 0848/1420] transifex-cli: rebuild for Python 3.11 --- 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 008f601fb2ad..24fe83333106 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.4.1 -revision=1 +revision=2 wrksrc="cli-${version}" build_style=go go_import_path="github.com/transifex/cli" From a949c45d4691e31e50eb08359c74964dd1782027 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:03 -0400 Subject: [PATCH 0849/1420] trackma: rebuild for Python 3.11 --- srcpkgs/trackma/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template index 5e9dd9282bde..ec150feabe03 100644 --- a/srcpkgs/trackma/template +++ b/srcpkgs/trackma/template @@ -1,7 +1,7 @@ # Template file for 'trackma' pkgname=trackma version=0.8.4 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-urwid python3-gobject" From 8c1a6248fbe984ec650e8fdd5cc614366572c0f2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:03 -0400 Subject: [PATCH 0850/1420] tox: rebuild for Python 3.11 --- srcpkgs/tox/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tox/template b/srcpkgs/tox/template index 931d17654619..219e0e4ac44a 100644 --- a/srcpkgs/tox/template +++ b/srcpkgs/tox/template @@ -1,7 +1,7 @@ # Template file for 'tox' pkgname=tox version=3.25.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3-filelock python3-packaging From 3a3fb109f947a6f5cf0b133eaa5c4feeb2b15cde Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:03 -0400 Subject: [PATCH 0851/1420] torbrowser-launcher: rebuild for Python 3.11 --- 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 bf22f0fd02b5..35b8ee0ff3f5 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.5 -revision=3 +revision=4 archs="i686 x86_64" # limited by Tor Browser itself build_style=python3-module hostmakedepends="gettext python3-distro python3-setuptools" From baf77277eeb8b96f3715730b9fa43872375a77c0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:03 -0400 Subject: [PATCH 0852/1420] toot: rebuild for Python 3.11 --- srcpkgs/toot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template index 8bee87c957a1..ba8446459ecd 100644 --- a/srcpkgs/toot/template +++ b/srcpkgs/toot/template @@ -1,7 +1,7 @@ # Template file for 'toot' pkgname=toot version=0.27.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-BeautifulSoup4 python3-requests python3-setuptools python3-wcwidth From 09d9d94f5f4903eae6dd1e2458344728800f729e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:04 -0400 Subject: [PATCH 0853/1420] todoman: rebuild for Python 3.11 --- srcpkgs/todoman/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template index f954a2f83467..2012dfca930f 100644 --- a/srcpkgs/todoman/template +++ b/srcpkgs/todoman/template @@ -1,7 +1,7 @@ # Template file for 'todoman' pkgname=todoman version=4.1.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3-icalendar python3-urwid python3-xdg python3-parsedatetime From af783acb9f2ee79ec06e12860f0cee9ccb5db823 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 24 Oct 2022 22:56:26 -0400 Subject: [PATCH 0854/1420] tlpui: rebuild for Python 3.11 --- srcpkgs/tlpui/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tlpui/template b/srcpkgs/tlpui/template index aee2677d5221..7a41e8ac8543 100644 --- a/srcpkgs/tlpui/template +++ b/srcpkgs/tlpui/template @@ -1,7 +1,7 @@ # Template file for 'tlpui' pkgname=tlpui version=1.5.0+5 -revision=2 +revision=3 wrksrc="TLPUI-${pkgname}-${version/+/-}" build_style="python3-module" hostmakedepends="python3-setuptools" From 7226eb557447e9052c66c19dd377697a7d486842 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:04 -0400 Subject: [PATCH 0855/1420] thinkpad-scripts: rebuild for Python 3.11 --- 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 a143931ba6c2..f91d0803a174 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=4 +revision=5 build_style=python3-module pycompile_module="tps" hostmakedepends="gettext python3-setuptools" From bf22aa3cfdfb3b0dd8821242038b6dec30576aab Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:04 -0400 Subject: [PATCH 0856/1420] thefuck: rebuild for Python 3.11 --- srcpkgs/thefuck/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template index 7704ab2a6a68..78d29a26f6b8 100644 --- a/srcpkgs/thefuck/template +++ b/srcpkgs/thefuck/template @@ -1,7 +1,7 @@ # Template file for 'thefuck' pkgname=thefuck version=3.32 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-colorama python3-decorator python3-psutil python3-pyte From 1f9c1ae0e3cccea407ce81f5a52dcb83bb71e846 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:04 -0400 Subject: [PATCH 0857/1420] texworks: rebuild for Python 3.11 --- srcpkgs/texworks/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/texworks/template b/srcpkgs/texworks/template index 55f9b4ede715..021f9fcf1c5e 100644 --- a/srcpkgs/texworks/template +++ b/srcpkgs/texworks/template @@ -1,7 +1,7 @@ # Template file for 'texworks' pkgname=texworks version=0.6.6 -revision=1 +revision=2 wrksrc="texworks-release-${version}" build_style=cmake configure_args="-DTW_BUILD_ID=Void -DWITH_LUA=ON -DWITH_PYTHON=ON From 103ebbb9c1c2470078b0359eeb169fd6d27062ef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:04 -0400 Subject: [PATCH 0858/1420] termtosvg: rebuild for Python 3.11 --- srcpkgs/termtosvg/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/termtosvg/template b/srcpkgs/termtosvg/template index 36718432a276..b78edd9835ce 100644 --- a/srcpkgs/termtosvg/template +++ b/srcpkgs/termtosvg/template @@ -1,7 +1,7 @@ # Template file for 'termtosvg' pkgname=termtosvg version=1.1.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pyte python3-lxml python3-wcwidth" From 0fade2fd2a33d09b5e880359fe453fefdd15e997 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:04 -0400 Subject: [PATCH 0859/1420] terminator: rebuild for Python 3.11 --- srcpkgs/terminator/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/terminator/template b/srcpkgs/terminator/template index b4c0363ff0c8..8b4e84ba52d1 100644 --- a/srcpkgs/terminator/template +++ b/srcpkgs/terminator/template @@ -1,7 +1,7 @@ # Template file for 'terminator' pkgname=terminator version=2.1.1 -revision=2 +revision=3 build_style=python3-module hostmakedepends="intltool python3-setuptools" depends="desktop-file-utils gsettings-desktop-schemas libkeybinder3 libnotify From de9a84abc8c2d5b3fa1526003330f4fb7b8dcdd3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:04 -0400 Subject: [PATCH 0860/1420] termdown: rebuild for Python 3.11 --- srcpkgs/termdown/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template index a7179641e6f2..6f3ee136076a 100644 --- a/srcpkgs/termdown/template +++ b/srcpkgs/termdown/template @@ -1,7 +1,7 @@ # Template file for 'termdown' pkgname=termdown version=1.17.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-dateutil python3-click python3-pyfiglet" From dc8cd8cf93895595a6eaee2a024d3919e8ba190f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:04 -0400 Subject: [PATCH 0861/1420] telepresence: rebuild for Python 3.11 --- srcpkgs/telepresence/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template index f254c19baa8f..38bda1072ed9 100644 --- a/srcpkgs/telepresence/template +++ b/srcpkgs/telepresence/template @@ -1,7 +1,7 @@ # Template file for 'telepresence' pkgname=telepresence version=0.107 -revision=3 +revision=4 archs="x86_64* ppc64le*" build_style=python3-module hostmakedepends="python3-pip python3-setuptools git" From 47571f4d835735073fb2524b9179967cc3c9c3b7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:04 -0400 Subject: [PATCH 0862/1420] telegram-tg: rebuild for Python 3.11 --- srcpkgs/telegram-tg/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/telegram-tg/template b/srcpkgs/telegram-tg/template index 49ede65ab6c1..38909cb354b1 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.19.0 -revision=1 +revision=2 wrksrc=tg-${version} build_style=python3-module hostmakedepends="python3-setuptools" From ae8a03d27d6e0d76b0a977321e928e669b5af6f1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:04 -0400 Subject: [PATCH 0863/1420] tekaim: rebuild for Python 3.11 --- srcpkgs/tekaim/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template index cae6c46e2a57..040f5959307c 100644 --- a/srcpkgs/tekaim/template +++ b/srcpkgs/tekaim/template @@ -1,7 +1,7 @@ # Template file for 'tekaim' pkgname=tekaim version=1.6.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3" depends="curl maim python3 xclip" From 1f8c0688d8aaa7a70099d2b2aad16b0cc6d39ddc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:05 -0400 Subject: [PATCH 0864/1420] targetcli-fb: rebuild for Python 3.11 --- 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 cfabceced3e6..26af62fc6fc3 100644 --- a/srcpkgs/targetcli-fb/template +++ b/srcpkgs/targetcli-fb/template @@ -1,7 +1,7 @@ # Template file for 'targetcli-fb' pkgname=targetcli-fb version=2.1.54 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="configshell-fb python3-six rtslib-fb python3-parsing python3-gobject" From bbb8138965ac1cb589d9ac8d332c02984ff21dd6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:05 -0400 Subject: [PATCH 0865/1420] system-config-printer: rebuild for Python 3.11 --- 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 d5d63f61835c..53afd7683f16 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.13 -revision=2 +revision=3 build_style=gnu-configure pycompile_dirs="usr/share/system-config-printer" configure_args="--with-udev-rules" From bbbc24c1f6cbc93a4494295597cb6f05a7a2a48c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:05 -0400 Subject: [PATCH 0866/1420] syncthing-gtk: rebuild for Python 3.11 --- 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 02cb3d9eeddd..695fde0327f9 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=4 +revision=5 _debianver="ds+git20220108+9023143f8b93" build_style=python3-module hostmakedepends="python3-setuptools gettext" From f3ff94b73c099765880e0384af06f91cfdc151d0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:05 -0400 Subject: [PATCH 0867/1420] syncplay: rebuild for Python 3.11 --- srcpkgs/syncplay/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/syncplay/template b/srcpkgs/syncplay/template index 7f857527e844..bb34277a9106 100644 --- a/srcpkgs/syncplay/template +++ b/srcpkgs/syncplay/template @@ -1,7 +1,7 @@ # Template file for 'syncplay' pkgname=syncplay version=1.6.9 -revision=2 +revision=3 build_style=gnu-makefile pycompile_dirs="usr/lib/syncplay/syncplay" depends="desktop-file-utils python3-pyside2 python3-Twisted From 751ecc95f7c85ce89b7b98b88024c17c3d345790 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:05 -0400 Subject: [PATCH 0868/1420] synapse: rebuild for Python 3.11 --- srcpkgs/synapse/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template index bc39b08fac25..85b527ef1b51 100644 --- a/srcpkgs/synapse/template +++ b/srcpkgs/synapse/template @@ -1,7 +1,7 @@ # Template file for 'synapse' pkgname=synapse version=1.70.1 -revision=1 +revision=2 build_style=python3-pep517 build_helper=rust make_check_target=tests From 76856e9c15822dba21120c01827dc509d87ce926 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:05 -0400 Subject: [PATCH 0869/1420] sumo: rebuild for Python 3.11 --- srcpkgs/sumo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sumo/template b/srcpkgs/sumo/template index f3cc1c4490ae..39c47a46b44c 100644 --- a/srcpkgs/sumo/template +++ b/srcpkgs/sumo/template @@ -1,7 +1,7 @@ # Template file for 'sumo' pkgname=sumo version=1.12.0 -revision=1 +revision=2 build_style=cmake hostmakedepends="libgdal-tools pkg-config swig python3-setuptools" makedepends="python3-devel ffmpeg-devel fox-devel gl2ps-devel libgdal-devel From 3cf1d3dafd5e30afdfb7802ee92a6d8e66126799 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:05 -0400 Subject: [PATCH 0870/1420] subversion: rebuild for Python 3.11 --- srcpkgs/subversion/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/subversion/template b/srcpkgs/subversion/template index 3eba0ba6209e..be37f60f9679 100644 --- a/srcpkgs/subversion/template +++ b/srcpkgs/subversion/template @@ -4,7 +4,7 @@ # pkgname=subversion version=1.14.2 -revision=2 +revision=3 build_style=gnu-configure configure_args="--disable-javahl --disable-static --config-cache --with-gnome-keyring --with-editor=vi --disable-mod-activation From 31672155183a6b8dd1016ba922a1b40be89bdec8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:05 -0400 Subject: [PATCH 0871/1420] subuser: rebuild for Python 3.11 --- srcpkgs/subuser/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/subuser/template b/srcpkgs/subuser/template index 3429d6ea5cb7..9cb4bc20af62 100644 --- a/srcpkgs/subuser/template +++ b/srcpkgs/subuser/template @@ -1,7 +1,7 @@ # Template file for 'subuser' pkgname=subuser version=0.6.2 -revision=5 +revision=6 archs="x86_64*" build_style=python3-module hostmakedepends="python3-setuptools" From e4062de765261199727bb90087f4bb48154ece53 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:05 -0400 Subject: [PATCH 0872/1420] subliminal: rebuild for Python 3.11 --- srcpkgs/subliminal/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/subliminal/template b/srcpkgs/subliminal/template index cda1b3d1df32..e30ba58db7c8 100644 --- a/srcpkgs/subliminal/template +++ b/srcpkgs/subliminal/template @@ -1,7 +1,7 @@ # Template file for 'subliminal' pkgname=subliminal version=2.1.0 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 python3-guessit python3-babelfish python3-enzyme From 0e4733faf20876638c1112a14e9d2077197ee356 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:06 -0400 Subject: [PATCH 0873/1420] streamlink: rebuild for Python 3.11 --- srcpkgs/streamlink/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template index 4e4a7e495a29..cfc21d56d8d4 100644 --- a/srcpkgs/streamlink/template +++ b/srcpkgs/streamlink/template @@ -1,7 +1,7 @@ # Template file for 'streamlink' pkgname=streamlink version=5.0.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel python3-versioningit" depends="python3-lxml python3-pycryptodome python3-pycountry From 86a7971a5f0eb369a25a7a08189b24d2764de61e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:06 -0400 Subject: [PATCH 0874/1420] stig: rebuild for Python 3.11 --- srcpkgs/stig/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template index 59d37e89baa3..f577ef449e39 100644 --- a/srcpkgs/stig/template +++ b/srcpkgs/stig/template @@ -1,7 +1,7 @@ # Template file for 'stig' pkgname=stig version=0.12.3a0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-blinker python3-natsort python3-xdg python3-aiohttp From 9c1ba1dd524b211fc34cda2a0fc67e4bbd90d38e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:06 -0400 Subject: [PATCH 0875/1420] stcgal: rebuild for Python 3.11 --- srcpkgs/stcgal/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template index f825acfcfc50..3f8ae5f4bb6d 100644 --- a/srcpkgs/stcgal/template +++ b/srcpkgs/stcgal/template @@ -1,7 +1,7 @@ # Template file for 'stcgal' pkgname=stcgal version=1.6 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pyserial python3-setuptools python3-tqdm" From db633e3f5460e4441a9cb111418aa8d3c6c61896 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:06 -0400 Subject: [PATCH 0876/1420] sssd: rebuild for Python 3.11 --- srcpkgs/sssd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sssd/template b/srcpkgs/sssd/template index 60a47ac85c00..d57d4f47c84e 100644 --- a/srcpkgs/sssd/template +++ b/srcpkgs/sssd/template @@ -1,7 +1,7 @@ # Template file for 'sssd' pkgname=sssd version=2.4.0 -revision=4 +revision=5 build_style=gnu-configure # configure checks sys.version[:3] for Python versioning, so 3.10 becomes 3.1; # until this is fixed upstream, manually define am_cv_python_version to circumvent From 6c89662483409aaf1b8a368cc99f971e0160a39c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:06 -0400 Subject: [PATCH 0877/1420] sshuttle: rebuild for Python 3.11 --- srcpkgs/sshuttle/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template index 078fd6e6821c..34e091e7d11e 100644 --- a/srcpkgs/sshuttle/template +++ b/srcpkgs/sshuttle/template @@ -1,7 +1,7 @@ # Template file for 'sshuttle' pkgname=sshuttle version=1.1.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools_scm python3-Sphinx" depends="python3-psutil" From 8034dc83c8ea05902ab89da26939c48e09d160e5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:06 -0400 Subject: [PATCH 0878/1420] ssh-audit: rebuild for Python 3.11 --- 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 49b0a9f97eb2..0e09ddc1b2f2 100644 --- a/srcpkgs/ssh-audit/template +++ b/srcpkgs/ssh-audit/template @@ -1,7 +1,7 @@ # Template file for 'ssh-audit' pkgname=ssh-audit version=2.5.0 -revision=2 +revision=3 build_style="python3-module" hostmakedepends="python3-setuptools" depends="python3" From 271db2370413cb0a85eab7884bef5076dfaeef7d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:06 -0400 Subject: [PATCH 0879/1420] sqlmap: rebuild for Python 3.11 --- srcpkgs/sqlmap/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sqlmap/template b/srcpkgs/sqlmap/template index 0011b7d1f74d..c8f2a0aff6ab 100644 --- a/srcpkgs/sqlmap/template +++ b/srcpkgs/sqlmap/template @@ -1,7 +1,7 @@ # Template file for 'sqlmap' pkgname=sqlmap version=1.6.11 -revision=1 +revision=2 pycompile_dirs="usr/libexec/sqlmap" depends="python3" short_desc="Automatic SQL injection and database takeover tool" From b0c554e3c7ee8f9f5b5037ade1fd5d62a29e6208 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:06 -0400 Subject: [PATCH 0880/1420] speedtest-cli: rebuild for Python 3.11 --- 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 a9282a31e9db..4919c1f94090 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=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 5ae99a1038afe3e01bff1ee828a80e70d12f7f63 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:06 -0400 Subject: [PATCH 0881/1420] soundconverter: rebuild for Python 3.11 --- srcpkgs/soundconverter/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/soundconverter/template b/srcpkgs/soundconverter/template index 9c68520a688a..31b241ecbc17 100644 --- a/srcpkgs/soundconverter/template +++ b/srcpkgs/soundconverter/template @@ -1,7 +1,7 @@ # Template file for 'soundconverter' pkgname=soundconverter version=4.0.1 -revision=2 +revision=3 build_style=python3-module pycompile_dirs="/usr/lib/${pkgname}/python/${pkgname}" hostmakedepends="glib intltool pkg-config python3-gobject python3-distutils-extra" From a9eff00931b3317262ca8a3f0e688c9c4a3a7b4c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:06 -0400 Subject: [PATCH 0882/1420] sonata: rebuild for Python 3.11 --- srcpkgs/sonata/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template index 70eef57612c4..680c32bc0716 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=3 +revision=4 build_style=python3-module hostmakedepends="gettext python3-setuptools" depends="python3-mpd2 python3-gobject gtk+3" From 5678d7c4dac9008c02240f76e9a1e92cf62d17e4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:07 -0400 Subject: [PATCH 0883/1420] sigil: rebuild for Python 3.11 --- srcpkgs/sigil/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sigil/template b/srcpkgs/sigil/template index 46c249dd284d..24ed76b4c468 100644 --- a/srcpkgs/sigil/template +++ b/srcpkgs/sigil/template @@ -1,7 +1,7 @@ # Template file for 'sigil' pkgname=sigil version=1.9.10 -revision=1 +revision=2 wrksrc="Sigil-${version}" build_style=cmake pycompile_dirs="usr/share/sigil/python3lib" From 3e2b84a458fcafa60a7d103b115608e87ce01ee0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:07 -0400 Subject: [PATCH 0884/1420] setzer: rebuild for Python 3.11 --- srcpkgs/setzer/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/setzer/template b/srcpkgs/setzer/template index e46bffc2f621..f6d314c67957 100644 --- a/srcpkgs/setzer/template +++ b/srcpkgs/setzer/template @@ -1,7 +1,7 @@ # Template file for 'setzer' pkgname=setzer version=0.4.8 -revision=1 +revision=2 wrksrc=Setzer-${version} build_style=meson hostmakedepends="gettext" From d9784460e7bf12c41de1bcbeab4853e2a92bcfa3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:07 -0400 Subject: [PATCH 0885/1420] setconf: rebuild for Python 3.11 --- srcpkgs/setconf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template index 6c719340f190..7919f8d73981 100644 --- a/srcpkgs/setconf/template +++ b/srcpkgs/setconf/template @@ -1,7 +1,7 @@ # Template file for 'setconf' pkgname=setconf version=0.7.7 -revision=3 +revision=4 build_style=python3-module pycompile_module="setconf.py" hostmakedepends="python3-setuptools" From 204ee54ff58bd91bc662f6f712f50f1dd9d3eb23 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:07 -0400 Subject: [PATCH 0886/1420] seafile-libclient: rebuild for Python 3.11 --- 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 468be3483129..d6f023344fc8 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.8 -revision=1 +revision=2 _distname="${pkgname/-libclient/}" wrksrc="${_distname}-${version}" build_style=gnu-configure From 2527de66671fc58c8f069dd278bc7fef1a21c2ee Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:07 -0400 Subject: [PATCH 0887/1420] scribus: rebuild for Python 3.11 --- srcpkgs/scribus/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/scribus/template b/srcpkgs/scribus/template index 6dcf42390cc1..e914a8e10eda 100644 --- a/srcpkgs/scribus/template +++ b/srcpkgs/scribus/template @@ -1,7 +1,7 @@ # Template file for 'scribus' pkgname=scribus version=1.5.8 -revision=3 +revision=4 build_style=cmake configure_args="-DCMAKE_SKIP_RPATH=TRUE -DQT_PREFIX=${XBPS_CROSS_BASE}/usr -DWANT_GRAPHICSMAGICK=1 -DWANT_CPP17=ON" From 060a5d22653f5bc47ce2ebdabd3d47cfda1330a9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:07 -0400 Subject: [PATCH 0888/1420] screenplain: rebuild for Python 3.11 --- srcpkgs/screenplain/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template index babdf38974f7..907bb6c3bcfb 100644 --- a/srcpkgs/screenplain/template +++ b/srcpkgs/screenplain/template @@ -1,7 +1,7 @@ # Template file for 'screenplain' pkgname=screenplain version=0.9.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-reportlab" From 16ea43032e1882650e44738c5d83278bd20561b3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:07 -0400 Subject: [PATCH 0889/1420] screenkey: rebuild for Python 3.11 --- srcpkgs/screenkey/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/screenkey/template b/srcpkgs/screenkey/template index f199b36bc9ef..ec774e92a72b 100644 --- a/srcpkgs/screenkey/template +++ b/srcpkgs/screenkey/template @@ -1,7 +1,7 @@ # Template file for 'screenkey' pkgname=screenkey version=1.5 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools python3-Babel" depends="gtk+3 libX11 python3-gobject python3-cairo python3-dbus" From 138b85ca962b8893510db9addde313c9f5e570d5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:07 -0400 Subject: [PATCH 0890/1420] scapy: rebuild for Python 3.11 --- srcpkgs/scapy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template index c58ea4f37fc1..06450df620cd 100644 --- a/srcpkgs/scapy/template +++ b/srcpkgs/scapy/template @@ -1,7 +1,7 @@ # Template file for 'scapy' pkgname=scapy version=2.4.5 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="tcpdump python3" From c422a5c95651b1e5c6218c40aa0f7aa426bd5753 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:07 -0400 Subject: [PATCH 0891/1420] sc-controller: rebuild for Python 3.11 --- 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 19ed5b512681..d24a5b7d6d39 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.7 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" makedepends="python3-devel zlib-devel" From c9f5123db707bd4176455deba101ffe5c67a14ff Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:08 -0400 Subject: [PATCH 0892/1420] salt: rebuild for Python 3.11 --- srcpkgs/salt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/salt/template b/srcpkgs/salt/template index d56ad6547cde..1d171bf22347 100644 --- a/srcpkgs/salt/template +++ b/srcpkgs/salt/template @@ -1,7 +1,7 @@ # Template file for 'salt' pkgname=salt version=3005 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-yaml python3-Jinja2 python3-requests python3-pyzmq From 6ab78554f51450c66ab8f95e300b415cb207a9bb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:08 -0400 Subject: [PATCH 0893/1420] sagemath: rebuild for Python 3.11 --- srcpkgs/sagemath/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sagemath/template b/srcpkgs/sagemath/template index 49fe919112a1..2e01d2002e01 100644 --- a/srcpkgs/sagemath/template +++ b/srcpkgs/sagemath/template @@ -1,7 +1,7 @@ # Template file for 'sagemath' pkgname=sagemath version=9.7 -revision=1 +revision=2 wrksrc=sage-$version build_wrksrc=pkgs/sagemath-standard build_style=python3-module From 4d5faed1b447a39323de06c426fc44c026566a41 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:08 -0400 Subject: [PATCH 0894/1420] safeeyes: rebuild for Python 3.11 --- srcpkgs/safeeyes/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template index c4f6cdef00f3..a11542556b67 100644 --- a/srcpkgs/safeeyes/template +++ b/srcpkgs/safeeyes/template @@ -1,7 +1,7 @@ # Template file for 'safeeyes' pkgname=safeeyes version=2.1.3 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools python3-pip python3-devel pkg-config" makedepends="python3-devel cairo-devel libgirepository-devel" From 5a4169a6af2fb6d0dd658230d1067d930ef4c653 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:08 -0400 Subject: [PATCH 0895/1420] sabnzbd: rebuild for Python 3.11 --- srcpkgs/sabnzbd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sabnzbd/template b/srcpkgs/sabnzbd/template index 9fc1be34d4a0..eb0cc4ece473 100644 --- a/srcpkgs/sabnzbd/template +++ b/srcpkgs/sabnzbd/template @@ -1,7 +1,7 @@ # Template file for 'sabnzbd' pkgname=sabnzbd version=3.5.0 -revision=1 +revision=2 wrksrc="SABnzbd-${version}" pycompile_dirs="/usr/share/sabnzbd" hostmakedepends="python3 gettext" From 2f1e02e484e78dc383a6d567e2aec1ea32362e2c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:08 -0400 Subject: [PATCH 0896/1420] s3cmd: rebuild for Python 3.11 --- srcpkgs/s3cmd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/s3cmd/template b/srcpkgs/s3cmd/template index 96da980e5296..c370e0860311 100644 --- a/srcpkgs/s3cmd/template +++ b/srcpkgs/s3cmd/template @@ -1,7 +1,7 @@ # Template file for 's3cmd' pkgname=s3cmd version=2.2.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-dateutil" From 7dd7bff6ba945c18e6bd4d3bb67b8873cba5a164 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:08 -0400 Subject: [PATCH 0897/1420] rubber: rebuild for Python 3.11 --- srcpkgs/rubber/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template index 90561803f3ff..50482b317d0f 100644 --- a/srcpkgs/rubber/template +++ b/srcpkgs/rubber/template @@ -1,7 +1,7 @@ # Template file for 'rubber' pkgname=rubber version=1.5.1 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3" depends="python3 virtual?tex" From fba83fb6be85db7c465d6b7be9fdf2752598a019 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:08 -0400 Subject: [PATCH 0898/1420] rpm: rebuild for Python 3.11 --- srcpkgs/rpm/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/rpm/template b/srcpkgs/rpm/template index fbd6b4f0438e..13dfb592c82e 100644 --- a/srcpkgs/rpm/template +++ b/srcpkgs/rpm/template @@ -1,7 +1,7 @@ # Template file for 'rpm' pkgname=rpm version=4.17.1 -revision=1 +revision=2 build_style=gnu-configure configure_args="--with-cap --with-acl --enable-python PYTHON=python3 --sharedstatedir=/var/lib" From 1ef82cb4f346705c44a5f4197a8828aa8441a7b8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:08 -0400 Subject: [PATCH 0899/1420] root: rebuild for Python 3.11 --- srcpkgs/root/patches/python3.11.patch | 15 +++++++++++++++ srcpkgs/root/template | 17 +++++++++-------- srcpkgs/root/update | 2 +- 3 files changed, 25 insertions(+), 9 deletions(-) create mode 100644 srcpkgs/root/patches/python3.11.patch diff --git a/srcpkgs/root/patches/python3.11.patch b/srcpkgs/root/patches/python3.11.patch new file mode 100644 index 000000000000..3507945cf73d --- /dev/null +++ b/srcpkgs/root/patches/python3.11.patch @@ -0,0 +1,15 @@ +Python 3.11 restructures some headers, so fix the includes here. + +--- a/bindings/pyroot/cppyy/CPyCppyy/src/CPPOverload.cxx ++++ b/bindings/pyroot/cppyy/CPyCppyy/src/CPPOverload.cxx +@@ -1,7 +1,9 @@ + // Bindings + #include "CPyCppyy.h" + #include "structmember.h" // from Python +-#if PY_VERSION_HEX >= 0x02050000 ++#if PY_VERSION_HEX >= 0x030B0000 ++#include // from Python ++#elif PY_VERSION_HEX >= 0x02050000 + #include "code.h" // from Python + #else + #include "compile.h" // from Python diff --git a/srcpkgs/root/template b/srcpkgs/root/template index e87769061a7a..713df0d2cd01 100644 --- a/srcpkgs/root/template +++ b/srcpkgs/root/template @@ -1,7 +1,7 @@ # Template file for 'root' pkgname=root -version=6.26.04 -revision=2 +version=6.26.06 +revision=1 # Only i686 and x86_64 seem to be officially supported archs="i686* x86_64*" build_style=cmake @@ -19,23 +19,24 @@ makedepends="libX11-devel libXpm-devel libXft-devel libXext-devel libxml2-devel python3-devel python3-numpy R-cran-Rcpp R-cran-RInside xrootd" depends="gcc" -case "$XBPS_TARGET_MACHINE" in - *-musl) - configure_args+=" -Dssl=OFF" - ;; -esac short_desc="C++ framework for data processing created by CERN" maintainer="Ben Jargowsky " license="LGPL-2.1-or-later" homepage="https://root.cern" distfiles="https://root.cern/download/root_v${version}.source.tar.gz" -checksum=a271cf82782d6ed2c87ea5eef6681803f2e69e17b3036df9d863636e9358421e +checksum=b1f73c976a580a5c56c8c8a0152582a1dfc560b4dd80e1b7545237b65e6c89cb build_options="fortran root7" build_options_default="fortran" python_version=3 shlib_provides="libCore.so libTree.so libRIO.so libMatrix.so libThread.so libTMVA.so libMathCore.so" +case "$XBPS_TARGET_MACHINE" in + *-musl) + configure_args+=" -Dssl=OFF" + ;; +esac + case "$XBPS_TARGET_MACHINE" in i686*) configure_args+=" -DCMAKE_C_FLAGS=-g0 -DCMAKE_CXX_FLAGS=-g0" ;; esac diff --git a/srcpkgs/root/update b/srcpkgs/root/update index 14a1134144f2..e6a583a6f1b7 100644 --- a/srcpkgs/root/update +++ b/srcpkgs/root/update @@ -1 +1 @@ -ignore="*.win32*" +ignore="*.win32* *.win64*" From 95c406373333aea7f2ed4c3ba200ee52a0fa0378 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:08 -0400 Subject: [PATCH 0900/1420] rofi-rbw: rebuild for Python 3.11 --- 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 d50f8ff13b21..5a2768a65b53 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.0.1 -revision=1 +revision=2 build_style=python3-pep517 make_install_target="rofi_rbw-${version}-py3-none-any.whl" hostmakedepends="python3-setuptools python3-wheel" From 48d948412a01524c72581dfcad43125244700e43 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:09 -0400 Subject: [PATCH 0901/1420] rmlint: rebuild for Python 3.11 --- srcpkgs/rmlint/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/rmlint/template b/srcpkgs/rmlint/template index 0f8a1ab6dea4..5fdc9eef154a 100644 --- a/srcpkgs/rmlint/template +++ b/srcpkgs/rmlint/template @@ -1,7 +1,7 @@ # Template file for 'rmlint' pkgname=rmlint version=2.10.1 -revision=4 +revision=5 build_style=scons hostmakedepends="pkg-config python3-Sphinx glib-devel" makedepends="libblkid-devel elfutils-devel json-glib-devel" From f38827c71af3edb7fd71623f35da1296ccd3a948 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:09 -0400 Subject: [PATCH 0902/1420] ripe-atlas-tools: rebuild for Python 3.11 --- 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 c7f6b72002f4..c9febfb96feb 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=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-tzlocal python3-yaml python3-dateutil python3-openssl From e608884a142333c9beda512cb2e3906c3e90d392 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:09 -0400 Subject: [PATCH 0903/1420] rhythmbox: rebuild for Python 3.11 --- srcpkgs/rhythmbox/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/rhythmbox/template b/srcpkgs/rhythmbox/template index 4bfc3a87dcb5..46bacdc151fe 100644 --- a/srcpkgs/rhythmbox/template +++ b/srcpkgs/rhythmbox/template @@ -1,7 +1,7 @@ # Template file for 'rhythmbox' pkgname=rhythmbox version=3.4.4 -revision=5 +revision=6 build_style=gnu-configure build_helper=gir configure_args="--disable-static --with-gudev --without-hal From 02d517e1857ef0f2600c0f6314598b1315cda949 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:09 -0400 Subject: [PATCH 0904/1420] reuse: rebuild for Python 3.11 --- srcpkgs/reuse/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/reuse/template b/srcpkgs/reuse/template index 9da8deb6dcb8..375ff79fed94 100644 --- a/srcpkgs/reuse/template +++ b/srcpkgs/reuse/template @@ -1,7 +1,7 @@ # Template file for 'reuse' pkgname=reuse version=1.0.0 -revision=1 +revision=2 build_style=python3-module # 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 6e6cefd96359d1e7367bc0afdd61da6b4aeb6ff9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:09 -0400 Subject: [PATCH 0905/1420] renderdoc: rebuild for Python 3.11 --- srcpkgs/renderdoc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/renderdoc/template b/srcpkgs/renderdoc/template index ee0316f88da3..f8cb364debbf 100644 --- a/srcpkgs/renderdoc/template +++ b/srcpkgs/renderdoc/template @@ -1,7 +1,7 @@ # Template file for 'renderdoc' pkgname=renderdoc version=1.21 -revision=1 +revision=2 _plt_ver=dbadbe14d601913b81a4a7533b284b6ccd7351d8 build_style=cmake configure_args="-DENABLE_GL=ON -DENABLE_GLES=ON -DENABLE_QRENDERDOC=ON From 2edc7b88a54c6b63a6683130397f3b81f030d0c0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:09 -0400 Subject: [PATCH 0906/1420] remmina: rebuild for Python 3.11 --- srcpkgs/remmina/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/remmina/template b/srcpkgs/remmina/template index cc99b1a696b5..4cb57d3811af 100644 --- a/srcpkgs/remmina/template +++ b/srcpkgs/remmina/template @@ -1,7 +1,7 @@ # Template file for 'remmina' pkgname=remmina version=1.4.27 -revision=2 +revision=3 wrksrc="Remmina-v${version}" build_style=cmake configure_args="-DWITH_APPINDICATOR=OFF -DCMAKE_USE_PTHREADS_INIT=ON" From 8cec4adbd0e57de9c0d96d2e01e19e500cf45299 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:09 -0400 Subject: [PATCH 0907/1420] remhind: rebuild for Python 3.11 --- srcpkgs/remhind/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/remhind/template b/srcpkgs/remhind/template index 95822e0a45c7..75225f2be596 100644 --- a/srcpkgs/remhind/template +++ b/srcpkgs/remhind/template @@ -1,7 +1,7 @@ # Template file for 'remhind' pkgname=remhind version=0.1.1 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools python3-gobject-devel python3-cairo-devel" depends="python3-icalendar python3-dateutil python3-gobject python3-toml From 0516aa12ed05b1a5026f75388e1917c83f9aa3ce Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:09 -0400 Subject: [PATCH 0908/1420] redshift: rebuild for Python 3.11 --- srcpkgs/redshift/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/redshift/template b/srcpkgs/redshift/template index 7a3cfc73d42f..491249f9b1e9 100644 --- a/srcpkgs/redshift/template +++ b/srcpkgs/redshift/template @@ -1,7 +1,7 @@ # Template file for 'redshift' pkgname=redshift version=1.12 -revision=6 +revision=7 build_style=gnu-configure configure_args="--enable-gui --enable-geoclue2" hostmakedepends="gettext-devel intltool pkg-config python3-devel" From 2b531e4a3abeb0a51ac5e388adfb4a2c51796cfa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:09 -0400 Subject: [PATCH 0909/1420] rednotebook: rebuild for Python 3.11 --- srcpkgs/rednotebook/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template index c76f106bb029..0702de6ff37c 100644 --- a/srcpkgs/rednotebook/template +++ b/srcpkgs/rednotebook/template @@ -1,7 +1,7 @@ # Template file for 'rednotebook' pkgname=rednotebook version=2.19 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3" depends="desktop-file-utils gtksourceview hicolor-icon-theme python3-enchant From d05ffb7d5c652fd8d8186931eb1d8b5b9268d52a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:09 -0400 Subject: [PATCH 0910/1420] recoll: rebuild for Python 3.11 --- srcpkgs/recoll/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/recoll/template b/srcpkgs/recoll/template index 8084f70a8e0e..911b690c2e0e 100644 --- a/srcpkgs/recoll/template +++ b/srcpkgs/recoll/template @@ -1,7 +1,7 @@ # Template file for 'recoll' pkgname=recoll version=1.32.7 -revision=1 +revision=2 build_style=gnu-configure build_helper="qmake python3" configure_args="--enable-recollq --disable-python-chm --disable-x11mon From 8623c5033e3d1ee7897d5132e2c5af4640a6b7e7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:10 -0400 Subject: [PATCH 0911/1420] rdiff-backup: rebuild for Python 3.11 --- 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 3d20a93e161d..fad6d4398c11 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.0.5 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools_scm" makedepends="python3-devel librsync-devel" From a5b240b99d9cb41e6757be46794e81df3c29614a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:10 -0400 Subject: [PATCH 0912/1420] ranger: rebuild for Python 3.11 --- srcpkgs/ranger/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template index 812940d5e488..92a26af55325 100644 --- a/srcpkgs/ranger/template +++ b/srcpkgs/ranger/template @@ -1,7 +1,7 @@ # Template file for 'ranger' pkgname=ranger version=1.9.3 -revision=3 +revision=4 build_style=python3-module pycompile_module="ranger" hostmakedepends="python3" From 4e858621428856f1f48974becc33fd2ad0c1f86f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:10 -0400 Subject: [PATCH 0913/1420] qytdl: rebuild for Python 3.11 --- srcpkgs/qytdl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qytdl/template b/srcpkgs/qytdl/template index e68091fe7c2c..8781ab33e96d 100644 --- a/srcpkgs/qytdl/template +++ b/srcpkgs/qytdl/template @@ -1,7 +1,7 @@ # Template file for 'qytdl' pkgname=qytdl version=1.1 -revision=3 +revision=4 build_style=gnu-makefile pycompile_dirs="usr/share/qytdl/src" depends="desktop-file-utils python3-PyQt5 python3-youtube-dl" From 98841b9fe114e08066ebf0c93491f9c31a4ef79b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:10 -0400 Subject: [PATCH 0914/1420] qutebrowser: rebuild for Python 3.11 --- srcpkgs/qutebrowser/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template index 5f5bde24204e..366b33df308c 100644 --- a/srcpkgs/qutebrowser/template +++ b/srcpkgs/qutebrowser/template @@ -1,7 +1,7 @@ # Template file for 'qutebrowser' pkgname=qutebrowser version=2.5.2 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools asciidoc" depends="python3-PyQt5-quick python3-Jinja2 python3-yaml From 02da4ab1532231a4661efd0d82bc42a8c554909e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:10 -0400 Subject: [PATCH 0915/1420] quodlibet: rebuild for Python 3.11 --- srcpkgs/quodlibet/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template index 04d59f8f20d6..90c830220b56 100644 --- a/srcpkgs/quodlibet/template +++ b/srcpkgs/quodlibet/template @@ -1,7 +1,7 @@ # Template file for 'quodlibet' pkgname=quodlibet version=4.5.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="intltool python3-devel" depends="desktop-file-utils gst-plugins-bad1 gst-plugins-base1 gst-plugins-good1 From e744555f71011fe2ea4c1fd57e2517ef24b9ac81 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:10 -0400 Subject: [PATCH 0916/1420] qtile: rebuild for Python 3.11 --- srcpkgs/qtile/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qtile/template b/srcpkgs/qtile/template index 8595044b3877..3f16eada0cda 100644 --- a/srcpkgs/qtile/template +++ b/srcpkgs/qtile/template @@ -1,7 +1,7 @@ # Template file for 'qtile' pkgname=qtile version=0.22.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-setuptools_scm python3-cairocffi python3-xcffib python3-wheel pkg-config" makedepends="python3-devel libffi-devel pulseaudio-devel" From 5ac441b16ce1be11f651a33b9ff0e8c88dd99bc4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:10 -0400 Subject: [PATCH 0917/1420] qomui: rebuild for Python 3.11 --- srcpkgs/qomui/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template index bff7375165a1..8c233fba66e0 100644 --- a/srcpkgs/qomui/template +++ b/srcpkgs/qomui/template @@ -1,7 +1,7 @@ # Template file for 'qomui' pkgname=qomui version=0.8.2 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-PyQt5 python3-dbus python3-psutil From b6ff8382446105002c4d883e07cd38f30aa9d078 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:10 -0400 Subject: [PATCH 0918/1420] qmk: rebuild for Python 3.11 --- srcpkgs/qmk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/qmk/template b/srcpkgs/qmk/template index 77469626e916..5067857b53f3 100644 --- a/srcpkgs/qmk/template +++ b/srcpkgs/qmk/template @@ -1,7 +1,7 @@ # Template file for 'qmk' pkgname=qmk version=1.0.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel" # This includes the requirements from requirements.txt in the qmk_firmware From 1347c3fd5669a1eb44bac938b61366e058b85961 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:10 -0400 Subject: [PATCH 0919/1420] python3-zope.security: rebuild for Python 3.11 --- 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 11f2f902f258..2e35b86a7556 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=5.1.1 -revision=4 +revision=5 wrksrc="zope.security-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-zope.proxy" From e492819ecce1c50bc2a4d0b4b214f39f86cdaeca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:11 -0400 Subject: [PATCH 0920/1420] python3-zope.copy: rebuild for Python 3.11 --- 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 cfe87a9a49cc..63004dd610dd 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=5 +revision=6 wrksrc="zope.copy-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 00fb8f981d41224b771bd05cfad1f3afd9f2a87e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:11 -0400 Subject: [PATCH 0921/1420] python3-zope.cachedescriptors: rebuild for Python 3.11 --- 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 6fe254fd6e6f..c57e234b7a8a 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=1 +revision=2 wrksrc="zope.cachedescriptors-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From e6417eefbd2f47debb0ecbf25c46aab20dca5488 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:11 -0400 Subject: [PATCH 0922/1420] python3-zipstream: rebuild for Python 3.11 --- 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 c4c350512acf..f9cc0986b43e 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=7 +revision=8 wrksrc="python-zipstream-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 172713ffbe84a65f5824d1156feebf295b7aa640 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:11 -0400 Subject: [PATCH 0923/1420] python3-zipfile-deflate64: rebuild for Python 3.11 --- 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 5f2c506b3e15..fdda1878599e 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=1 +revision=2 wrksrc="zipfile-deflate64-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From e2bd050e349057ccbc93f8f0f806498fe9d96a87 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:11 -0400 Subject: [PATCH 0924/1420] python3-xxhash: rebuild for Python 3.11 --- 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 195ac24bee50..56f8683eabec 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.0.0 -revision=2 +revision=3 wrksrc="xxhash-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From 99223214b3c234ad31ca858721c9591e4b1ddf6d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:11 -0400 Subject: [PATCH 0925/1420] python3-xvfbwrapper: rebuild for Python 3.11 --- 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 f5c17669195a..25f6cf91495f 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=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 2c6a062a48ea4abd48b6da161cd689ae528b1e73 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:11 -0400 Subject: [PATCH 0926/1420] python3-xlrd: rebuild for Python 3.11 --- 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 76b3aed302ca..3f426e515762 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=3 +revision=4 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 4c227b1227e857b4a83f6ae5292512278834d480 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:11 -0400 Subject: [PATCH 0927/1420] python3-wikipedia: rebuild for Python 3.11 --- 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 f27ab33e0326..52d1a6de636e 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=6 +revision=7 wrksrc="wikipedia-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From bfb48baeedb496ae6717c5b8124c31929e2cb998 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:11 -0400 Subject: [PATCH 0928/1420] python3-watchman: rebuild for Python 3.11 --- srcpkgs/python3-watchman/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-watchman/template b/srcpkgs/python3-watchman/template index 57aadac9ca02..8eb11594ccca 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=8 +revision=9 create_wrksrc=yes build_wrksrc="pywatchman-${version}" build_style=python3-module @@ -15,7 +15,7 @@ homepage="https://facebook.github.io/watchman/" distfiles="${PYPI_SITE}/p/pywatchman/pywatchman-${version}.tar.gz https://raw.githubusercontent.com/facebook/watchman/main/watchman/python/LICENSE>LICENSE.txt" checksum="d0047eb275deafb0011eda0a1a815fbd9742478c3d2b5ad6956d300e447dc2f9 - d96f8d0b74d194c021f153c562307697128da61143515c947580b2489a341980" + cb3f0f5ad23ff184e4aaa19588dbdc2b1923f681dc99b63b07650acfc453d3b0" conflicts="python-watchman>=0" make_check=no From 3e81f4184f4c4b1dc2642db64fe26ef174ba2368 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:11 -0400 Subject: [PATCH 0929/1420] python3-watchdog: rebuild for Python 3.11 --- 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 6ed0ea824391..8a8e8b720287 100644 --- a/srcpkgs/python3-watchdog/template +++ b/srcpkgs/python3-watchdog/template @@ -1,7 +1,7 @@ # Template file for 'python3-watchdog' pkgname=python3-watchdog version=2.1.6 -revision=1 +revision=2 wrksrc="watchdog-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 81545953c7b3c9166b7f1ede6cebb9e6cfddef58 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:12 -0400 Subject: [PATCH 0930/1420] python3-voluptuous: rebuild for Python 3.11 --- 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 5c9464d3e22e..9889f27a48a2 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=6 +revision=7 wrksrc="voluptuous-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 40db641f658b195845219256672dccd3e9b2175f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:12 -0400 Subject: [PATCH 0931/1420] python3-vispy: rebuild for Python 3.11 --- 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 44dcdebcbcd3..9e9235a06754 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=6 +revision=7 wrksrc="vispy-${version}" build_style=python3-module build_helper=numpy From affca9be7416ec9af5690c37b3127b7e50461d98 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:12 -0400 Subject: [PATCH 0932/1420] python3-vint: rebuild for Python 3.11 --- 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 9313ea6a9593..cbbdcb1c1493 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=1 +revision=2 wrksrc="vint-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From fabcd8f2703a09743da4f11c4fdba67a96dc25f8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:12 -0400 Subject: [PATCH 0933/1420] python3-uvloop: rebuild for Python 3.11 --- 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 4ceefc346cea..b525f27e8b5e 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.17.0 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3 python3-setuptools python3-Cython" From 84982f0062107eca22e45368bb379a03e11ad78f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:12 -0400 Subject: [PATCH 0934/1420] python3-urlgrabber: rebuild for Python 3.11 --- 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 39739be80514..79e374d1e933 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=4 +revision=5 wrksrc="urlgrabber-${version}" build_style=python3-module pycompile_module="urlgrabber" From 5a66d93bf9803a1f6c7bf434afe192b9acd01f2c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:12 -0400 Subject: [PATCH 0935/1420] python3-urbandict: rebuild for Python 3.11 --- 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 8589e50b9890..2293602bbf44 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=4 +revision=5 wrksrc="urbandict-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 088f1b645b25269f1deaa005ec06b9b9c9de0c45 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:12 -0400 Subject: [PATCH 0936/1420] python3-unittest-mixins: rebuild for Python 3.11 --- 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 d2a60925a606..e145cfcaf033 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=5 +revision=6 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b06ee4b26f3e2a559d65a3e5436cad34603287ce Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:12 -0400 Subject: [PATCH 0937/1420] python3-txredisapi: rebuild for Python 3.11 --- 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 0695daad1e5e..7224f1e66783 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.7 -revision=1 +revision=2 wrksrc="txredisapi-${version}" build_style=python3-module make_check_args="--ignore tests/test_basics.py From 4eb565c6ad008b4e129975ae2720cdd2be862bc7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:12 -0400 Subject: [PATCH 0938/1420] python3-twitter: rebuild for Python 3.11 --- 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 4951be2f16d9..a72a75043782 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=5 +revision=6 wrksrc=$_pkgname-$version build_style=python3-module hostmakedepends="python3-setuptools" From 11e9749c3a52df43b943dc9958a00ebbd2d8682d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:13 -0400 Subject: [PATCH 0939/1420] python3-tweepy: rebuild for Python 3.11 --- 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 fc13e91d8d57..9b85e5884812 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=1 +revision=2 wrksrc="tweepy-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 23506349da57059650fb3f381cd2cde579b70136 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:13 -0400 Subject: [PATCH 0940/1420] python3-ttystatus: rebuild for Python 3.11 --- 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 b35cd4a0ebcb..f842334f24b6 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=5 +revision=6 wrksrc=$_pkgname-$version build_style=python3-module hostmakedepends="python3-setuptools" From 80a9b572c1eccf3065d9675ce5cff5afa5f854b4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:13 -0400 Subject: [PATCH 0941/1420] python3-trustme: rebuild for Python 3.11 --- 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 f284fdd55ae9..2715b6db91a5 100644 --- a/srcpkgs/python3-trustme/template +++ b/srcpkgs/python3-trustme/template @@ -1,7 +1,7 @@ # Template file for 'python3-trustme' pkgname=python3-trustme version=0.9.0 -revision=1 +revision=2 wrksrc="trustme-$version" build_style=python3-module hostmakedepends="python3-setuptools" From a1db6302288a7852b1ab684f4be2938bcf03d6c5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:13 -0400 Subject: [PATCH 0942/1420] python3-trio: rebuild for Python 3.11 --- 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 f0e92f106c1c..84d4adb29024 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.19.0 -revision=2 +revision=3 wrksrc="trio-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b26878c2aa84d6c653333e72fd590a2281aa9046 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:13 -0400 Subject: [PATCH 0943/1420] python3-tokenize-rt: rebuild for Python 3.11 --- 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 387e896ac700..b1bdbb738e47 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=4.1.0 -revision=2 +revision=3 wrksrc="tokenize-rt-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 48a96d5f68f56e23c4e9a189555e128948a1b1e1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:13 -0400 Subject: [PATCH 0944/1420] python3-tmuxp: rebuild for Python 3.11 --- 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 22725c04b3d2..86591a5431e1 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.10.1 -revision=1 +revision=2 wrksrc="tmuxp-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 2501cc2c1f83121e52a639765665b7722c437f33 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:13 -0400 Subject: [PATCH 0945/1420] python3-tldextract: rebuild for Python 3.11 --- 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 b671868a3a49..77d2d223cc95 100644 --- a/srcpkgs/python3-tldextract/template +++ b/srcpkgs/python3-tldextract/template @@ -1,7 +1,7 @@ # Template file for 'python3-tldextract' pkgname=python3-tldextract version=2.2.2 -revision=3 +revision=4 wrksrc="tldextract-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 8f98a20b9f0bb7a4ca78d9f52d0a5185e58bad4f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:13 -0400 Subject: [PATCH 0946/1420] python3-thefuzz: rebuild for Python 3.11 --- 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 30c936169ac9..a77c375e7c5a 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=1 +revision=2 wrksrc="thefuzz-$version" build_style=python3-module hostmakedepends="python3-setuptools" From b3f5c3ae3e5238f7dc91a66c8c5cec572e427d2d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:13 -0400 Subject: [PATCH 0947/1420] python3-terminaltables: rebuild for Python 3.11 --- 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 59365cb8fcc9..423ef57d4adb 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=5 +revision=6 wrksrc="terminaltables-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 57dda2bf0d6b69bb1ecc756374e9836bdc68eb46 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:13 -0400 Subject: [PATCH 0948/1420] python3-tables: rebuild for Python 3.11 --- srcpkgs/python3-tables/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-tables/template b/srcpkgs/python3-tables/template index b7e9426dd8e9..0edc429243fa 100644 --- a/srcpkgs/python3-tables/template +++ b/srcpkgs/python3-tables/template @@ -1,7 +1,7 @@ # Template file for 'python3-tables' pkgname=python3-tables version=3.7.0 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module build_helper=numpy From 37bcd964187a40fa1aba21b36640d278c9dc290b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:14 -0400 Subject: [PATCH 0949/1420] python3-subunit: rebuild for Python 3.11 --- 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 3a7c68e9460f..358933a0ea00 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=3 +revision=4 wrksrc=subunit-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 1cc321eb434cf705f89b8f4dfb96435f77c2cfdb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:14 -0400 Subject: [PATCH 0950/1420] python3-stormssh: rebuild for Python 3.11 --- srcpkgs/python3-stormssh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-stormssh/template b/srcpkgs/python3-stormssh/template index ccf4966ab1e5..a7c4c72c9083 100644 --- a/srcpkgs/python3-stormssh/template +++ b/srcpkgs/python3-stormssh/template @@ -1,7 +1,7 @@ # Template file for 'python3-stormssh' pkgname=python3-stormssh version=0.7.0 -revision=5 +revision=6 wrksrc=storm-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 2e679a85d379c7abc34784942f0478e217713862 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:14 -0400 Subject: [PATCH 0951/1420] python3-snappy: rebuild for Python 3.11 --- 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 b8c4dd53edcb..5965f4cd7c25 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=1 +revision=2 wrksrc=$_pkgname-$version build_style=python3-module hostmakedepends="python3-setuptools" From 1f75624c3681f98308c499d88c29f23c596a02ec Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:14 -0400 Subject: [PATCH 0952/1420] python3-simplegeneric: rebuild for Python 3.11 --- 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 2d02151dcac2..742237d378cd 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=8 +revision=9 wrksrc="simplegeneric-${version}" build_style=python3-module hostmakedepends="unzip python3-setuptools" From 9791a1532634c60bc693dc7a05dc574d7eda1fd3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:14 -0400 Subject: [PATCH 0953/1420] python3-simplebayes: rebuild for Python 3.11 --- 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 7c1116d9f76a..6d01ee968dc6 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=5 +revision=6 wrksrc="simplebayes-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From cbb2b6cf721e949259a5147c3b84cea56a4e067d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:14 -0400 Subject: [PATCH 0954/1420] python3-semver: rebuild for Python 3.11 --- 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 2dad9b67929e..6b35f054d575 100644 --- a/srcpkgs/python3-semver/template +++ b/srcpkgs/python3-semver/template @@ -1,7 +1,7 @@ # Template file for 'python3-semver' pkgname=python3-semver version=2.13.0 -revision=1 +revision=2 wrksrc="semver-${version}" build_style=python3-pep517 make_check_target="test_semver.py" From af5450da669a0e62bca930efcad124de392cbae7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:14 -0400 Subject: [PATCH 0955/1420] python3-seaborn: rebuild for Python 3.11 --- 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 1d0d10781984..475cdccaa69a 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.11.1 -revision=2 +revision=3 wrksrc="seaborn-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 06a1766d8e9e69a68289d967368e0314405ae7d5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:14 -0400 Subject: [PATCH 0956/1420] python3-scour: rebuild for Python 3.11 --- 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 cef185041201..9b11753130b7 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=2 +revision=3 wrksrc="scour-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 470df5ebd3a0cc9950bf90138ce42095fab946e0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:15 -0400 Subject: [PATCH 0957/1420] python3-scikit-video: rebuild for Python 3.11 --- srcpkgs/python3-scikit-video/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-scikit-video/template b/srcpkgs/python3-scikit-video/template index 7333a6aef247..dd487afed10b 100644 --- a/srcpkgs/python3-scikit-video/template +++ b/srcpkgs/python3-scikit-video/template @@ -1,7 +1,7 @@ # Template file for 'python3-scikit-video' pkgname=python3-scikit-video version=1.1.11 -revision=4 +revision=5 wrksrc="scikit-video-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-scipy python3-Pillow" From c626a9cacd22646b4afd3b3aed649f86a0d5c863 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:15 -0400 Subject: [PATCH 0958/1420] python3-scikit-learn: rebuild for Python 3.11 --- 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 3241794a5733..d87e5d4e43dc 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=0.24.2 -revision=2 +revision=3 wrksrc="scikit-learn-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython python3-numpy python3-scipy" From ec7ffc974ed6c96fcd4dbf7952a1fd69740e958e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:15 -0400 Subject: [PATCH 0959/1420] python3-scikit-image: rebuild for Python 3.11 --- 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 362dd383675a..33c0a6e97557 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.19.3 -revision=1 +revision=2 _pkgname="${pkgname#python3-}" wrksrc="${_pkgname}-${version}" build_style=python3-module From 9634224e8332531a8f237beef266222faee4ef85 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Thu, 6 Oct 2022 14:33:35 -0400 Subject: [PATCH 0960/1420] python3-scandir: rebuild for Python 3.11 --- 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 8525e36bf56f..9f276e2d3e25 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=8 +revision=9 wrksrc="scandir-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From e001eebb93de972000c8af44fd69ac98f463fd19 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:15 -0400 Subject: [PATCH 0961/1420] python3-s-tui: rebuild for Python 3.11 --- 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 09feced6238a..bab585db259d 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.1.3 -revision=2 +revision=3 wrksrc="s-tui-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a9f2b6306a2699260b50188bce2b4cc9429b792a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:15 -0400 Subject: [PATCH 0962/1420] python3-rss2email: rebuild for Python 3.11 --- 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 155d32b0d568..d92982971dbf 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.13.1 -revision=2 +revision=3 wrksrc="rss2email-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 3b835804961ffcaa0009682637fb9d1b58f8aeb4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:15 -0400 Subject: [PATCH 0963/1420] python3-responses: rebuild for Python 3.11 --- 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 4201a852e51c..c11143de9d92 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.21.0 -revision=1 +revision=2 wrksrc="responses-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From e37d9cdcd44c06ed36adfec43859b5776a9ce3d5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:15 -0400 Subject: [PATCH 0964/1420] python3-requests-mock: rebuild for Python 3.11 --- 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 bc808321d85c..3b132e45cd38 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=2 +revision=3 wrksrc="requests-mock-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-pbr" From fa3add56586417e4e7ff4cc01d0d533a0efa04a5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:15 -0400 Subject: [PATCH 0965/1420] python3-reflink: rebuild for Python 3.11 --- 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 01a654c8b8f4..5616e07e727b 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=1 +revision=2 wrksrc="reflink-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From f6fa27608521870be71a56c54c322333fa2c3a48 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:15 -0400 Subject: [PATCH 0966/1420] python3-quart: rebuild for Python 3.11 --- 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 6a961972b4ad..a929dec731b1 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.18.3 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-pep517 make_install_target="quart-${version}-*-*-*.whl" From d2b0fec36d1180870ddff5dd714b14abd080f491 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:15 -0400 Subject: [PATCH 0967/1420] python3-pyx: rebuild for Python 3.11 --- 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 01568b3a26bd..4a3d1191b71c 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=3 +revision=4 wrksrc="PyX-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 7fe3dae0e86b0263aecc6b2f781cbdccf48f3abe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:16 -0400 Subject: [PATCH 0968/1420] python3-pytest-xvfb: rebuild for Python 3.11 --- 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 0bd9b2f21bca..93846c64f803 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=3 +revision=4 wrksrc=pytest-xvfb-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 9fc42bb3023cab04defcc4d4984203b20d0b4a62 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:16 -0400 Subject: [PATCH 0969/1420] python3-pytest-xdist: rebuild for Python 3.11 --- 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 36392a27d41d..b9e75fcc046b 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=2.5.0 -revision=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-setuptools_scm" From b5507f6da5d918b71470e4196c328ac8895f892a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:16 -0400 Subject: [PATCH 0970/1420] python3-pytest-timeout: rebuild for Python 3.11 --- 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 450c90447f8d..74dcf00f2624 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.1.0 -revision=1 +revision=2 wrksrc="pytest-timeout-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 6944c89662a6ba2680a262b8c9f1e9294bae5371 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:16 -0400 Subject: [PATCH 0971/1420] python3-pytest-sugar: rebuild for Python 3.11 --- 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 fce5e72c000a..5db2412b0748 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.5 -revision=1 +revision=2 wrksrc="pytest-sugar-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 8d26d44ecbe7a7b4df73d6d7990b1f61569cdff6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:16 -0400 Subject: [PATCH 0972/1420] python3-pytest-subtests: update to 0.9.0. --- srcpkgs/python3-pytest-subtests/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-pytest-subtests/template b/srcpkgs/python3-pytest-subtests/template index 75cd86bb4f96..6c46c4264c6e 100644 --- a/srcpkgs/python3-pytest-subtests/template +++ b/srcpkgs/python3-pytest-subtests/template @@ -1,6 +1,6 @@ # Template file for 'python3-pytest-subtests' pkgname=python3-pytest-subtests -version=0.8.0 +version=0.9.0 revision=1 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module @@ -12,7 +12,7 @@ maintainer="Andrew J. Hesford " license="MIT" homepage="https://github.com/pytest-dev/pytest-subtests" distfiles="${PYPI_SITE}/p/pytest-subtests/pytest-subtests-${version}.tar.gz" -checksum=46eb376022e926950816ccc23502de3277adcc1396652ddb3328ce0289052c4d +checksum=c0317cd5f6a5eb3e957e89dbe4fc3322a9afddba2db8414355ed2a2cb91a844e post_install() { vlicense LICENSE From c90adf35a390646928b60d46ba004ecd8cba1869 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:16 -0400 Subject: [PATCH 0973/1420] python3-pytest-qt: rebuild for Python 3.11 --- 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 5b7e57435afc..9ae6e11de23b 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=3.3.0 -revision=4 +revision=5 wrksrc=pytest-qt-${version} build_style=python3-module hostmakedepends="python3-setuptools_scm" From 5a31873140816d024675a39c1673d986c7fa00f5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:16 -0400 Subject: [PATCH 0974/1420] python3-pytest-mock: rebuild for Python 3.11 --- 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 e4925919bf2d..98b725ab3a69 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.9.0 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 05cdd3938929bc4dc384eef784e472d18b1d5e20 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:16 -0400 Subject: [PATCH 0975/1420] python3-pytest-lazy-fixture: rebuild for Python 3.11 --- 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 83ee9350b86d..6392e087615d 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=1 +revision=2 wrksrc=pytest-lazy-fixture-$version build_style=python3-module hostmakedepends="python3-setuptools" From 3468c15119b75904741e4d64d2f29bf61eecafe5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:16 -0400 Subject: [PATCH 0976/1420] python3-pytest-httpserver: rebuild for Python 3.11 --- 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 bb5e84559f32..b7791bd86706 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.0.5 -revision=1 +revision=2 wrksrc=pytest-httpserver-${version} build_style=python3-pep517 hostmakedepends="python3-poetry-core" From e25d4c79a174baeff4baebe0744858f286eb266a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:17 -0400 Subject: [PATCH 0977/1420] python3-pytest-httpbin: rebuild for Python 3.11 --- 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 b9cc464dae0b..2e6a1a1750ed 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=1.0.2 -revision=1 +revision=2 wrksrc="pytest-httpbin-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 5a28f2e47ab84435e325df69cec8c9af5f196c09 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:17 -0400 Subject: [PATCH 0978/1420] python3-pytest-flake8: rebuild for Python 3.11 --- 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 4dc49b26c252..e5895e1a00ec 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=1 +revision=2 wrksrc=pytest-flake8-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 94ccde2dab78396a8e80b3c03392aef8baf0e99b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:17 -0400 Subject: [PATCH 0979/1420] python3-pytest-fixture-config: rebuild for Python 3.11 --- 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 73f654bd6d34..9d2a8117603e 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.7.0 -revision=1 +revision=2 wrksrc="${_pkgname}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 5c9cef9b4da85b30f0cafc898779bbd9f51141d6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:17 -0400 Subject: [PATCH 0980/1420] python3-pytest-cov: rebuild for Python 3.11 --- 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 a1f03a67012e..74b664616ce8 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=3.0.0 -revision=1 +revision=2 wrksrc="pytest-cov-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 88599ac52369c8cc6529d351d16f6a78e224c64b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:17 -0400 Subject: [PATCH 0981/1420] python3-pytest-aiohttp: rebuild for Python 3.11 --- 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 3ea362b3e304..7a018760a476 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.4 -revision=1 +revision=2 wrksrc="pytest-aiohttp-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm python3-wheel" From cc634058502e460388b6bef43a6b91f98ea5f033 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:17 -0400 Subject: [PATCH 0982/1420] python3-pytaglib: rebuild for Python 3.11 --- 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 a437d364a7f9..dcd2000312b0 100644 --- a/srcpkgs/python3-pytaglib/template +++ b/srcpkgs/python3-pytaglib/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytaglib' pkgname=python3-pytaglib version=1.4.6 -revision=3 +revision=4 wrksrc="pytaglib-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" From 1c9a5153aa412b2a8108ef237692d8325ce277fe Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:17 -0400 Subject: [PATCH 0983/1420] python3-pysdl2: rebuild for Python 3.11 --- 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 060b69dfc993..81b7bf654c90 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.6 -revision=4 +revision=5 wrksrc="py-sdl2-rel_${version//./_}" build_style=python3-module pycompile_module="sdl2" From ceb389c438d1c43dba01f3fb2d3e4c8bae64b2f5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:17 -0400 Subject: [PATCH 0984/1420] python3-pyscss: rebuild for Python 3.11 --- 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 b3b4ef468e2e..02b49e7be90c 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=4 +revision=5 wrksrc="pyScss-${version}" build_style=python3-module hostmakedepends="python3-setuptools pcre-devel" From 1c0d20b4e3b24c40e0de8644d9cb2d59d1a0b323 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:17 -0400 Subject: [PATCH 0985/1420] python3-pyqt6-networkauth: rebuild for Python 3.11 --- 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 fe06b663c95f..5383d9f2622c 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.3.0 -revision=1 +revision=2 wrksrc=PyQt6_NetworkAuth-$version build_style=sip-build hostmakedepends="python3-pyqt6-network-devel qt6-networkauth-devel From b04120c79ddf6e89314a8d75632cf11637ac5e0f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:17 -0400 Subject: [PATCH 0986/1420] python3-pyqt6-charts: rebuild for Python 3.11 --- 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 7562158608fc..d5802cc64a0c 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.3.1 -revision=1 +revision=2 wrksrc=PyQt6_Charts-$version build_style=sip-build hostmakedepends="qt6-charts-devel python3-pyqt6-widgets-devel From c099d4e5229ea45d89db2c55f9e556ea470f23aa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:18 -0400 Subject: [PATCH 0987/1420] python3-pyqt6-3d: rebuild for Python 3.11 --- 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 87a7a2cc8382..8c12b4b2dee2 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.3.0 -revision=1 +revision=2 wrksrc=PyQt6_3D-$version build_style=sip-build hostmakedepends="python3-pyqt6-gui-devel qt6-3d-devel From 247416bc7ffeea2df6fbb5a6b21bcef7c16e4a61 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:18 -0400 Subject: [PATCH 0988/1420] python3-pyopencl: update to 2022.2.4. --- srcpkgs/python3-pyopencl/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-pyopencl/template b/srcpkgs/python3-pyopencl/template index c821cfb84259..46d0a023166f 100644 --- a/srcpkgs/python3-pyopencl/template +++ b/srcpkgs/python3-pyopencl/template @@ -1,6 +1,6 @@ # Template file for 'python3-pyopencl' pkgname=python3-pyopencl -version=2022.2.3 +version=2022.2.4 revision=1 wrksrc=${pkgname#*-}-${version} build_style=python3-module @@ -12,7 +12,7 @@ maintainer="Andrew J. Hesford " license="X11, Apache-2.0, BSD-3-Clause" homepage="https://mathema.tician.de/software/pyopencl" distfiles="${PYPI_SITE}/p/pyopencl/pyopencl-${version}.tar.gz" -checksum=21da5f08aabbc2b2fdc81466ffaac07c1db94b1f47a95bc57f633b55590ccba2 +checksum=b57c9ef8bd8e6db07e89106f3091ba236b24f95a38fd40dfb17d2ed7ff6be4ad # Tests require a working OpenCL platform make_check=no From d63b45b210a06d44103653556691af98a9aeb103 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:18 -0400 Subject: [PATCH 0989/1420] python3-pylru: rebuild for Python 3.11 --- 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 91c93a98d8d1..a46e7e28bab3 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=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 8275e4639d2a2fcb74814d71596b541100bf3942 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:18 -0400 Subject: [PATCH 0990/1420] python3-pylibgen: rebuild for Python 3.11 --- 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 dcae865ad1a1..15bed8dcee7e 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=3 +revision=4 wrksrc="pylibgen-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 9e4981eec8b4ad9ef444f95c9fc55cb480f36184 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:18 -0400 Subject: [PATCH 0991/1420] python3-pykwalify: rebuild for Python 3.11 --- 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 c3797d7a729a..be6355543877 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=2 +revision=3 wrksrc="pykwalify-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 6913162f3abc64193b2ce0463911604b7d3eb39d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:18 -0400 Subject: [PATCH 0992/1420] python3-pyinfra: rebuild for Python 3.11 --- 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 8ee40bd484cb..e95fa0d2e821 100644 --- a/srcpkgs/python3-pyinfra/template +++ b/srcpkgs/python3-pyinfra/template @@ -1,7 +1,7 @@ # Template file for 'python3-pyinfra' pkgname=python3-pyinfra version=2.5.2 -revision=1 +revision=2 wrksrc="pyinfra-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 6bf4fadd9dc06cb6cf4ca0de2eb387f7fd9882a2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:18 -0400 Subject: [PATCH 0993/1420] python3-pycotap: rebuild for Python 3.11 --- 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 8f998fd8e1bb..b2308dc0d303 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=1 +revision=2 wrksrc="pycotap-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From abff5aaff4a00b5bc444baa3dd640b26be8fda57 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:18 -0400 Subject: [PATCH 0994/1420] python3-pyclip: rebuild for Python 3.11 --- 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 93f5ffb2547c..b7d90e9acc05 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.6.0 -revision=1 +revision=2 wrksrc="pyclip-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 50a056ff26ecd9791bd8abd18a53f86a8ac184e5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:18 -0400 Subject: [PATCH 0995/1420] python3-pyacoustid: rebuild for Python 3.11 --- 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 c9dbae1df60a..9aa495ad8884 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.2.2 -revision=1 +revision=2 wrksrc="pyacoustid-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From f7b952eaa8ceb63890aa1d2bcc4fbd6601efc45f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:19 -0400 Subject: [PATCH 0996/1420] python3-pyFFTW: rebuild for Python 3.11 --- srcpkgs/python3-pyFFTW/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-pyFFTW/template b/srcpkgs/python3-pyFFTW/template index 889feb8650be..c9c4155c27e8 100644 --- a/srcpkgs/python3-pyFFTW/template +++ b/srcpkgs/python3-pyFFTW/template @@ -1,19 +1,19 @@ # Template file for 'python3-pyFFTW' pkgname=python3-pyFFTW version=0.13.0 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython python3-numpy" makedepends="fftw-devel python3-devel" depends="python3-numpy" -checkdepends="python3-pytest python3-scipy $depends" +checkdepends="python3-pytest-xdist python3-scipy $depends" short_desc="Pythonic wrapper around FFTW" maintainer="Andrew J. Hesford " license="BSD-3-Clause" homepage="https://github.com/pyFFTW/pyFFTW" distfiles="${homepage}/archive/v${version}.tar.gz" -checksum=920016c9a98f652161854884b321987692fae23bc3a0122feba0e691ee26df86 +checksum=3445dbaac5020afce880217f7f2b8a07b55d2c5cb2427e015d692dfabea0dc21 pre_check() { cp build/lib*/pyfftw/pyfftw.*.so pyfftw From 9a6919534ed0d132a13bb66f9392b5b1830f051c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:19 -0400 Subject: [PATCH 0997/1420] python3-py7zr: rebuild for Python 3.11 --- 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 0f13d88d158a..2619d01d4c59 100644 --- a/srcpkgs/python3-py7zr/template +++ b/srcpkgs/python3-py7zr/template @@ -1,7 +1,7 @@ # Template file for 'python3-py7zr' pkgname=python3-py7zr version=0.20.0 -revision=1 +revision=2 wrksrc="py7zr-${version}" build_style=python3-pep517 # - test_concurrent.py fails on timeout. This test downloads several different From bf74c20832b9af2ac964d53bae0815efdeb231d3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:19 -0400 Subject: [PATCH 0998/1420] python3-pwntools: rebuild for Python 3.11 --- 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 d062f213cf17..4e99b31dcfeb 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.8.0 -revision=1 +revision=2 wrksrc="pwntools-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 0d24aa90da91a3b6e301dacc206ad3bf89e3772f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:19 -0400 Subject: [PATCH 0999/1420] python3-proselint: rebuild for Python 3.11 --- 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 57695420e851..7f488299e65d 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=1 +revision=2 wrksrc="proselint-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 87cf24abca81051c99b46f86d51bc1935b1a0cd4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:19 -0400 Subject: [PATCH 1000/1420] python3-progress: rebuild for Python 3.11 --- 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 8883c784127f..9bef50e4d11f 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=1 +revision=2 wrksrc="progress-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 626794150e7a73b2d7f6dda1fcf88006a9591c72 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:19 -0400 Subject: [PATCH 1001/1420] python3-pretend: rebuild for Python 3.11 --- 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 591676f881b1..e10368c0fca2 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=5 +revision=6 wrksrc="pretend-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b5482a116eefc62a44ced5bf8923d7051bfca849 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:19 -0400 Subject: [PATCH 1002/1420] python3-prctl: rebuild for Python 3.11 --- 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 c7d4eac01ecf..5b4c6a7aab8e 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=8 +revision=9 wrksrc=python-prctl-$version build_style=python3-module hostmakedepends="python3-setuptools libcap-devel" From c96fc2c3670c40384431f6aa2fe0c332762614f9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:19 -0400 Subject: [PATCH 1003/1420] python3-polib: rebuild for Python 3.11 --- 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 6a52010be805..f6a7fea7d80f 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=5 +revision=6 wrksrc="polib-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From cad19497bd7d2ec914cf381235f96bb05ad92291 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:19 -0400 Subject: [PATCH 1004/1420] python3-plotly: rebuild for Python 3.11 --- 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 69b71ae3bb79..590964f29906 100644 --- a/srcpkgs/python3-plotly/template +++ b/srcpkgs/python3-plotly/template @@ -1,7 +1,7 @@ # Template file for 'python3-plotly' pkgname=python3-plotly version=4.14.3 -revision=2 +revision=3 wrksrc="plotly-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From be14fedfa8d2abf3d78577e7ec3742a02a7de5ba Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:19 -0400 Subject: [PATCH 1005/1420] python3-pkginfo: rebuild for Python 3.11 --- 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 a9b8b85d9d8a..3ccd40ba5e4f 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=1 +revision=2 wrksrc=pkginfo-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 0af33f26b705b7ce6c80a2740f248b92e91e9d61 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:20 -0400 Subject: [PATCH 1006/1420] python3-pipx: rebuild for Python 3.11 --- 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 597395ceda37..4688f15f557e 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.1.0 -revision=1 +revision=2 wrksrc="pipx-${version}" build_style=python3-pep517 hostmakedepends="hatchling" From 8e31629413ef9f76a9bffbb94693d17aaecef5b9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:20 -0400 Subject: [PATCH 1007/1420] python3-pipenv: rebuild for Python 3.11 --- 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 91abe5c7cc44..57477909db70 100644 --- a/srcpkgs/python3-pipenv/template +++ b/srcpkgs/python3-pipenv/template @@ -1,7 +1,7 @@ # Template file for 'python3-pipenv' pkgname=python3-pipenv version=2022.10.25 -revision=1 +revision=2 wrksrc="pipenv-${version}" build_style=python3-pep517 hostmakedepends="python3-wheel" From 1e72a52042140aa9d6e01a5d0257a7b132f7a1bf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:20 -0400 Subject: [PATCH 1008/1420] python3-picamera: rebuild for Python 3.11 --- 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 1d33101bec5f..2a63bf734301 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=5 +revision=6 wrksrc="picamera-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 781ff2aff66b464b0ea2bca266c3942cdfa0951b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:20 -0400 Subject: [PATCH 1009/1420] python3-pgzero: rebuild for Python 3.11 --- 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 f2d18bdd31b3..89bbcf3dc76f 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=2 +revision=3 wrksrc="pgzero-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 9752c25074d4001a6cf14cf5b1d4c5d26d636f4c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:20 -0400 Subject: [PATCH 1010/1420] python3-pgmigrate: rebuild for Python 3.11 --- 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 ef474cc7167c..59cbe484c967 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=5 +revision=6 wrksrc="pgmigrate-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 683c8991269793c069ce2493813c0db91d70b3c2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:20 -0400 Subject: [PATCH 1011/1420] python3-perf: rebuild for Python 3.11 --- 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 670faf249682..bcd7c2cf66a4 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=3 +revision=4 wrksrc="pyperf-${version}" build_style=python3-module pycompile_module="pyperf" From bcf8729df407b3ea9f6f0387919390206e48ed40 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:20 -0400 Subject: [PATCH 1012/1420] python3-pem: rebuild for Python 3.11 --- 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 07cb02b3f9f9..094eded1beda 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=2 +revision=3 wrksrc="pem-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a5918b7d6ecb735ab0b2c3f3a77bce7320a0c322 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:20 -0400 Subject: [PATCH 1013/1420] python3-pdfminer.six: rebuild for Python 3.11 --- 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 1ddc07943283..e410a6be4b51 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=20220524 -revision=1 +revision=2 wrksrc=pdfminer.six-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 6658093f24d8462a82e74f97abf5ed6cb00e3df3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:20 -0400 Subject: [PATCH 1014/1420] python3-pbkdf2: rebuild for Python 3.11 --- 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 4e8543515211..f1cfc33e66fc 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=8 +revision=9 wrksrc="pbkdf2-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From b0b97113c425505d7eeb01b23f7d50894ac50118 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:21 -0400 Subject: [PATCH 1015/1420] python3-path: rebuild for Python 3.11 --- 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 40ea0a3f0449..057a5929a9ba 100644 --- a/srcpkgs/python3-path/template +++ b/srcpkgs/python3-path/template @@ -1,7 +1,7 @@ # Template file for 'python3-path' pkgname=python3-path version=16.5.0 -revision=1 +revision=2 wrksrc="path-${version}" build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" From fab2a84faf0df9d059342a84ba4c37d75749df58 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:21 -0400 Subject: [PATCH 1016/1420] python3-parver: rebuild for Python 3.11 --- 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 de58f5ee03f2..946c7e5bf707 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.3.1 -revision=1 +revision=2 wrksrc="parver-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 705181b0754e741a719ff1665948a79366aa6d27 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:21 -0400 Subject: [PATCH 1017/1420] python3-parameterized: rebuild for Python 3.11 --- 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 0d3ae2f34499..8d6fbccfb3d7 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.8.1 -revision=2 +revision=3 wrksrc="parameterized-${version}" build_style=python3-module make_check_target=nosetests From 8e7b7e5c898fd7452ffd3daa7885b91772b78b4d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:21 -0400 Subject: [PATCH 1018/1420] python3-pandas-msgpack: rebuild for Python 3.11 --- srcpkgs/python3-pandas-msgpack/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pandas-msgpack/template b/srcpkgs/python3-pandas-msgpack/template index e343d1801f21..a71308b8a981 100644 --- a/srcpkgs/python3-pandas-msgpack/template +++ b/srcpkgs/python3-pandas-msgpack/template @@ -1,7 +1,7 @@ # Template file for 'python3-pandas-msgpack' pkgname=python3-pandas-msgpack version=0.1.5 -revision=3 +revision=4 wrksrc="pandas-msgpack" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" From eb6f890d1985d47b3241727d0bca07aac1635935 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:21 -0400 Subject: [PATCH 1019/1420] python3-owslib: rebuild for Python 3.11 --- 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 a8c2d7532b14..6da3c552ec27 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=1 +revision=2 wrksrc="OWSLib-${version}" build_style=python3-module hostmakedepends="python3-devel python3-setuptools" From 7188df09340507bc9225232e12af0f9691de1b36 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:21 -0400 Subject: [PATCH 1020/1420] python3-owm: rebuild for Python 3.11 --- 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 508235eca23e..1c46d0fcb005 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=4 +revision=5 wrksrc="pyowm-${version}" build_style=python3-module pycompile_module="pyowm" From e6c29da8d9695dccfd5354dfdaece0039b15a54d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:21 -0400 Subject: [PATCH 1021/1420] python3-orocos-kdl: rebuild for Python 3.11 --- 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 1c4f9d92ed89..6596a5c0a91c 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.4.0 -revision=4 +revision=5 wrksrc=orocos_kinematics_dynamics-${version} build_wrksrc=python_orocos_kdl build_style=cmake From 9bb06d4f356e20f41e4085b93fe2b8735e01c677 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:21 -0400 Subject: [PATCH 1022/1420] python3-opcua: rebuild for Python 3.11 --- 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 e91465e4a7aa..ac91adcad8a3 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=2 +revision=3 wrksrc="opcua-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 8c8c9a374a21a81955b2715cc76fd642626cbecf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:21 -0400 Subject: [PATCH 1023/1420] python3-occ: rebuild for Python 3.11 --- 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 bee03373a3d1..b0fad2218585 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.4.1 -revision=3 +revision=4 archs="i686* x86_64* armv7l* aarch64* ppc*" wrksrc="pythonocc-core-${version}" build_style=cmake From 70a76c31e7d5913b8b13f8e7cedfad96c2e1e698 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:22 -0400 Subject: [PATCH 1024/1420] python3-ntplib: rebuild for Python 3.11 --- 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 6947b4c93079..3fadcb6e2b7a 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=3 +revision=4 wrksrc="ntplib-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 2110ca32797afb5ca4995158cf4e2cc481abe68f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:22 -0400 Subject: [PATCH 1025/1420] python3-npyscreen: rebuild for Python 3.11 --- 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 213b843c9b9c..810be072c993 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=5 +revision=6 wrksrc="npyscreen-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 2af07fed247ab1bf8d8150c0fac58ed7d96f8218 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:22 -0400 Subject: [PATCH 1026/1420] python3-nose-random: rebuild for Python 3.11 --- srcpkgs/python3-nose-random/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-nose-random/template b/srcpkgs/python3-nose-random/template index 83bd101cc6e1..1334c546ad15 100644 --- a/srcpkgs/python3-nose-random/template +++ b/srcpkgs/python3-nose-random/template @@ -1,7 +1,7 @@ # Template file for 'python3-nose-random' pkgname=python3-nose-random version=1.0.0 -revision=4 +revision=5 wrksrc="nose-random-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 36032a867060922b553cc1ad47cdaceb6a9a6bc3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:22 -0400 Subject: [PATCH 1027/1420] python3-ndg_httpsclient: rebuild for Python 3.11 --- 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 9a41db4753e1..9a574298c1ef 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=5 +revision=6 wrksrc="ndg_httpsclient-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From ad79aec65d8dd557225114d111b4665db7c6b299 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:22 -0400 Subject: [PATCH 1028/1420] python3-namedlist: rebuild for Python 3.11 --- 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 d113a3fea036..088f31fd01a3 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=4 +revision=5 wrksrc="namedlist-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 747bcd0cc30ae1d0d477f472a3e692604a0dc960 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:22 -0400 Subject: [PATCH 1029/1420] python3-mysqlclient: rebuild for Python 3.11 --- 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 696dddf7f595..f999d6e8a902 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=8 +revision=9 wrksrc="mysqlclient-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 09ad75b2d84ea7e18d20f47a1b8ad778e1ad3362 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:22 -0400 Subject: [PATCH 1030/1420] python3-mypy: rebuild for Python 3.11 --- 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 4412e4880c1d..0218a2e6ba84 100644 --- a/srcpkgs/python3-mypy/template +++ b/srcpkgs/python3-mypy/template @@ -1,7 +1,7 @@ # Template file for 'python3-mypy' pkgname=python3-mypy version=0.961 -revision=1 +revision=2 wrksrc="mypy-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Sphinx" From 923df1d7a7fcea49067effce248e8ccbcbb03b06 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:22 -0400 Subject: [PATCH 1031/1420] python3-mtranslate: rebuild for Python 3.11 --- 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 f451586449fc..6f3c542ce391 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=2 +revision=3 wrksrc="mtranslate-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 8ad06bc287e6f598cacf210f4bab5c26425316b3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:22 -0400 Subject: [PATCH 1032/1420] python3-mpi4py: update to 3.1.4. --- srcpkgs/python3-mpi4py/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-mpi4py/template b/srcpkgs/python3-mpi4py/template index 9950a8453d21..680f79c9611e 100644 --- a/srcpkgs/python3-mpi4py/template +++ b/srcpkgs/python3-mpi4py/template @@ -1,6 +1,6 @@ # Template file for 'python3-mpi4py' pkgname=python3-mpi4py -version=3.1.3 +version=3.1.4 revision=1 wrksrc="mpi4py-${version}" build_style=python3-module @@ -13,7 +13,7 @@ license="BSD-2-Clause" homepage="https://github.com/mpi4py/mpi4py" changelog="https://raw.githubusercontent.com/mpi4py/mpi4py/master/CHANGES.rst" distfiles="$PYPI_SITE/m/mpi4py/mpi4py-${version}.tar.gz" -checksum=f1e9fae1079f43eafdd9f817cdb3fd30d709edc093b5d5dada57a461b2db3008 +checksum=17858f2ebc623220d0120d1fa8d428d033dde749c4bc35b33d81a66ad7f93480 # Tests require a sensible MPI environment make_check=no From 2d89bc8f8671293a41e86911b13dc27ea7d21f75 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:22 -0400 Subject: [PATCH 1033/1420] python3-mpdnotify: rebuild for Python 3.11 --- 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 c8ed179dff7a..b8fc6676dd77 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=3 +revision=4 wrksrc=mpdnotify-${version} build_style=python3-module hostmakedepends="python3-setuptools python3-Pillow python3-mpd2" From 6cd2ab8a8ced20bfd95f7909a5bd98426a68cda6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:23 -0400 Subject: [PATCH 1034/1420] python3-mock: rebuild for Python 3.11 --- 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 7b1ff2e37bd5..979b875a0dc9 100644 --- a/srcpkgs/python3-mock/template +++ b/srcpkgs/python3-mock/template @@ -1,7 +1,7 @@ # Template file for 'python3-mock' pkgname=python3-mock version=4.0.3 -revision=3 +revision=4 wrksrc="mock-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From f4e731e8b10f146cd1de9a1c05fa342104c3bd9c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:23 -0400 Subject: [PATCH 1035/1420] python3-misaka: rebuild for Python 3.11 --- 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 cc1f2ef1f4ff..fb5fa528d1ff 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=3 +revision=4 wrksrc=misaka-${version} build_style=python3-module hostmakedepends="python3-setuptools python3-cffi" From 20c7468b7d73111eed810841186173480f0b660a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:23 -0400 Subject: [PATCH 1036/1420] python3-miniupnpc: rebuild for Python 3.11 --- 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 2a008ff2a5ee..a4b9717f5c23 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=6 +revision=7 wrksrc="miniupnpc-$version" build_style=python3-module hostmakedepends="python3-setuptools" From dde5396d07e0068ab52ee4db5640931b58d32bd0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:23 -0400 Subject: [PATCH 1037/1420] python3-md2gemini: rebuild for Python 3.11 --- 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 6ae29b77849b..bb5e33f507ca 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.0 -revision=1 +revision=2 wrksrc="md2gemini-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-mistune2 python3-cjkwrap From c9357d0b0ba223cda6d70039420e1465c46c591c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:23 -0400 Subject: [PATCH 1038/1420] python3-marisa-trie: rebuild for Python 3.11 --- 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 3b68dafc7159..c0f544745ad6 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=8 +revision=9 wrksrc="marisa-trie-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" From 94d94ee42ed95e2af81906c715c50d2aab997351 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:23 -0400 Subject: [PATCH 1039/1420] python3-makefun: rebuild for Python 3.11 --- 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 61e49ce0dbe6..941902c5dd5a 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.13.1 -revision=1 +revision=2 wrksrc=makefun-${version} build_style=python3-module hostmakedepends="python3-setuptools_scm" From 29dedc13d4040532400c4f6b7ff6ed62efa21721 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:23 -0400 Subject: [PATCH 1040/1420] python3-macholib: update to 1.16.2. --- srcpkgs/python3-macholib/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template index a498465cb3d4..196a294b4313 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.14 -revision=3 +version=1.16.2 +revision=1 wrksrc="macholib-${version}" build_style=python3-module hostmakedepends="python3-setuptools" @@ -11,7 +11,7 @@ maintainer="Orphaned " license="MIT" homepage="https://github.com/erocarrera/pefile" distfiles="${PYPI_SITE}/m/macholib/macholib-${version}.tar.gz" -checksum=0c436bc847e7b1d9bda0560351bf76d7caf930fb585a828d13608839ef42c432 +checksum=557bbfa1bb255c20e9abafe7ed6cd8046b48d9525db2f9b77d3122a63a2a8bf8 post_install() { vlicense LICENSE From f8e298f91b92037309ea56156001e1cbd09bddf9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:23 -0400 Subject: [PATCH 1041/1420] python3-lsp-server: rebuild for Python 3.11 --- srcpkgs/python3-lsp-server/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-lsp-server/template b/srcpkgs/python3-lsp-server/template index f7bdbdc0dd10..5b3294e62547 100644 --- a/srcpkgs/python3-lsp-server/template +++ b/srcpkgs/python3-lsp-server/template @@ -1,7 +1,7 @@ # Template file for 'python3-lsp-server' pkgname=python3-lsp-server version=1.5.0 -revision=1 +revision=2 wrksrc="${pkgname/3}-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-setuptools_scm python3-wheel" From 1ff6986a57636edd710862bf55eec4d529a5d9c3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:23 -0400 Subject: [PATCH 1042/1420] python3-libevdev: rebuild for Python 3.11 --- 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 933b06a3d09f..33dc552b3867 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=3 +revision=4 _githash=5cc6bd17be733f87c77726fee2a6fa760f413a3e wrksrc="python-libevdev-${version}-${_githash}" build_style=python3-module From 39f5ae1c0b0452db1b3b8e7d234f7bf62eadccc3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:24 -0400 Subject: [PATCH 1043/1420] python3-ldap: rebuild for Python 3.11 --- 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 a9cc4feab12d..70d3b2b7915d 100644 --- a/srcpkgs/python3-ldap/template +++ b/srcpkgs/python3-ldap/template @@ -2,7 +2,7 @@ pkgname=python3-ldap _pkgname=python-ldap version=3.2.0 -revision=4 +revision=5 wrksrc=$_pkgname-$version build_style=python3-module hostmakedepends="python3-setuptools" From 36d14b3fc50dbaa88d3554d03c7d8e04f3b41e6f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:24 -0400 Subject: [PATCH 1044/1420] python3-keyrings-alt: rebuild for Python 3.11 --- 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 2fff0430e8f1..299e991c4cb1 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=3 +revision=4 wrksrc="keyrings.alt-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From 73a5c4dc454be2289f1a9b95c561df557aa77ecc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:24 -0400 Subject: [PATCH 1045/1420] python3-jupyter_qtconsole: rebuild for Python 3.11 --- 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 d9b3198dbcf3..d547a417c7d8 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=4.7.1 -revision=3 +revision=4 wrksrc="qtconsole-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 84ea28c153515ef729f9c64cc05e967e90a0e722 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:24 -0400 Subject: [PATCH 1046/1420] python3-jupyter: rebuild for Python 3.11 --- 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 d5e70b38a3f4..f30be4459125 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=2 +revision=3 build_style=meta depends="python3-jupyter_notebook python3-jupyter_console python3-jupyter_ipywidgets" short_desc="Jupyter metapackage for Void Linux" From 8e8e0dc8afbbd8cc5309fd6b4b1a3771b8bed95b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:24 -0400 Subject: [PATCH 1047/1420] python3-jsonpointer: rebuild for Python 3.11 --- 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 a0797a11d48e..9ec336b1977e 100644 --- a/srcpkgs/python3-jsonpointer/template +++ b/srcpkgs/python3-jsonpointer/template @@ -1,7 +1,7 @@ # Template file for 'python3-jsonpointer' pkgname=python3-jsonpointer version=2.0 -revision=5 +revision=6 wrksrc="jsonpointer-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From fdc020eca3a875b9d013a68e6ccbf2f8164f24ca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:24 -0400 Subject: [PATCH 1048/1420] python3-jq: rebuild for Python 3.11 --- 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 1a91caae99cb..9511d4502cf8 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.3.0 -revision=1 +revision=2 wrksrc="${pkgname#*-}.py-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" From 21a17ce66f55c74f7667f69b69ccbfc1d5c57551 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:24 -0400 Subject: [PATCH 1049/1420] python3-iwlib: rebuild for Python 3.11 --- srcpkgs/python3-iwlib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-iwlib/template b/srcpkgs/python3-iwlib/template index 19999bb33917..c413ec0c4649 100644 --- a/srcpkgs/python3-iwlib/template +++ b/srcpkgs/python3-iwlib/template @@ -1,7 +1,7 @@ # Template file for 'python3-iwlib' pkgname=python3-iwlib version=1.7.0 -revision=6 +revision=7 wrksrc="iwlib-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-cffi" From 7f8d420762969b28b3049e5dec0ca87355a7eded Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:24 -0400 Subject: [PATCH 1050/1420] python3-iso8601: rebuild for Python 3.11 --- 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 76080b157e35..4a4835a05119 100644 --- a/srcpkgs/python3-iso8601/template +++ b/srcpkgs/python3-iso8601/template @@ -1,7 +1,7 @@ # Template file for 'python3-iso8601' pkgname=python3-iso8601 version=1.1.0 -revision=1 +revision=2 wrksrc="iso8601-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 82727f3ab34b870d9767738cae68e2c0005eff31 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:24 -0400 Subject: [PATCH 1051/1420] python3-irc: rebuild for Python 3.11 --- 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 6ae0231e76e7..3c69ce543ffe 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=1 +revision=2 wrksrc="irc-${version}" build_style=python3-pep517 hostmakedepends="python3-wheel python3-setuptools_scm" From e552ed3c8e0d04678e4b06972ed4c12ff048dada Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:25 -0400 Subject: [PATCH 1052/1420] python3-iptools: rebuild for Python 3.11 --- 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 2b6bd09af4b7..a5cb7bf19ba9 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=5 +revision=6 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 7080c17cec46f3455a8a6ffcd26595a0da209eb7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:25 -0400 Subject: [PATCH 1053/1420] python3-influxdb: rebuild for Python 3.11 --- 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 2ce98b09f3bc..85b6ad74cd15 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=2 +revision=3 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools python-setuptools" From cb75024fa37abf440edf24cc81f815c4940e759d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:25 -0400 Subject: [PATCH 1054/1420] python3-hypothesis: update to 6.56.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 002e920d9b64..7e5b0a502f20 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.47.0 +version=6.56.0 revision=1 wrksrc="hypothesis-hypothesis-python-${version}" build_wrksrc=hypothesis-python @@ -15,7 +15,7 @@ license="MPL-2.0" homepage="https://hypothesis.works/" changelog="https://hypothesis.readthedocs.io/en/latest/changes.html" distfiles="https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-${version}.tar.gz" -checksum=7a2e5d089a23437efb4b805036655315228b2aa411ea08c173bf34106f7fd397 +checksum=827171a0bad21b0f580718c8b3bac7ad2045dfbd044a57f872e95e47faaf343f do_check() { # Manually run the tests that tox considers part of the "full" suite, From 2c5001fe07f75856b01b653c9d780d5e1617b302 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:25 -0400 Subject: [PATCH 1055/1420] python3-httmock: rebuild for Python 3.11 --- 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 9ee90be1b226..0c294bed8308 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=2 +revision=3 wrksrc="httmock-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 99bb68bd431edcc214bf5956807e3864be2bbac5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:25 -0400 Subject: [PATCH 1056/1420] python3-hoedown: rebuild for Python 3.11 --- 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 d13859ea4aff..8d1e5ba1580d 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=7 +revision=8 wrksrc="hoedown-$version" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" From d3e38fdcac8cc0b3a43f17a381aba43c871fd70f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:37 -0400 Subject: [PATCH 1057/1420] python3-hiredis: rebuild for Python 3.11 --- 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 aea57041a500..f1c9f0dfea0c 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.0.0 -revision=2 +revision=3 wrksrc="hiredis-${version}" build_style=python3-module hostmakedepends="python3-devel" From 2b42de7e5bc03911ca9d5a4c7589557d8fe051be Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:25 -0400 Subject: [PATCH 1058/1420] python3-hcloud: rebuild for Python 3.11 --- 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 e9e96c08fe3f..2ceb2945b1a9 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.18.1 -revision=1 +revision=2 wrksrc="${pkgname/python3-/}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From e868bb08d8896cc9c881947d5433d2882401f956 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:25 -0400 Subject: [PATCH 1059/1420] python3-h5py: rebuild for Python 3.11 --- 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 8c9b8c2a2135..2fde1ea17ce3 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.7.0 -revision=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module build_helper="numpy" From f8d68e2e4ec01fde40eaae39ee49f93394a8543a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:25 -0400 Subject: [PATCH 1060/1420] python3-grpcio-tools: rebuild for Python 3.11 --- srcpkgs/python3-grpcio-tools/template | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-grpcio-tools/template b/srcpkgs/python3-grpcio-tools/template index 155fac164fb9..2222267766f9 100644 --- a/srcpkgs/python3-grpcio-tools/template +++ b/srcpkgs/python3-grpcio-tools/template @@ -1,10 +1,10 @@ # Template file for 'python3-grpcio-tools' pkgname=python3-grpcio-tools version=1.49.1 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module -hostmakedepends="python3-setuptools" +hostmakedepends="python3-setuptools python3-Cython" makedepends="python3-devel" depends="python3-protobuf python3-grpcio" checkdepends="python3-pytest $depends" @@ -15,6 +15,8 @@ homepage="https://grpc.io" distfiles="${PYPI_SITE}/g/grpcio-tools/grpcio-tools-${version}.tar.gz" checksum=84cc64e5b46bad43d5d7bd2fd772b656eba0366961187a847e908e2cb735db91 +export GRPC_PYTHON_BUILD_WITH_CYTHON=1 + if [ "$XBPS_TARGET_NO_ATOMIC8" ]; then makedepends+=" libatomic-devel" fi From ccee6ada90ec3166e5211a3648c0e7afdeff8b72 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:25 -0400 Subject: [PATCH 1061/1420] python3-graphviz: rebuild for Python 3.11 --- 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 b429292f1828..5d66598edd77 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.13.2 -revision=3 +revision=4 wrksrc="${pkgname#*-}-${version}" build_style=python3-module pycompile_module="graphviz" From 3539a3db687b0e54ee79b02ac92f768f169c0956 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:25 -0400 Subject: [PATCH 1062/1420] python3-google-auth-oauthlib: rebuild for Python 3.11 --- 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 e00fa87f2492..0a777dcbdab5 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=0.5.3 -revision=1 +revision=2 wrksrc="google-auth-library-python-oauthlib-${version}" build_style=python3-module make_check_args="--deselect tests/unit/test_flow.py::TestInstalledAppFlow::test_run_local_server_bind_addr" From 0d5212f8dd413786b0f7ac768a968729f190e6bd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:26 -0400 Subject: [PATCH 1063/1420] python3-gogs-client: rebuild for Python 3.11 --- srcpkgs/python3-gogs-client/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-gogs-client/template b/srcpkgs/python3-gogs-client/template index cc5f23d6364d..6a50a7e3a75b 100644 --- a/srcpkgs/python3-gogs-client/template +++ b/srcpkgs/python3-gogs-client/template @@ -1,7 +1,7 @@ # Template file for 'python3-gogs-client' pkgname=python3-gogs-client version=1.0.6 -revision=7 +revision=8 wrksrc="gogs_client-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 95e4de2a10b5fba6ec9e7d11b81a177fc9ba4b6a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:26 -0400 Subject: [PATCH 1064/1420] python3-gnupg: rebuild for Python 3.11 --- 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 2e34b5bf7552..3829af6103f4 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.4.9 -revision=1 +revision=2 wrksrc=${pkgname/3/}-$version build_style=python3-pep517 make_install_target=python_gnupg-${version}-py2.py3-none-any.whl From c4dcf7ebbc849acc926d5e2f7c10422ec821cfd7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:26 -0400 Subject: [PATCH 1065/1420] python3-gntp: rebuild for Python 3.11 --- 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 26d72f91d78f..0d38d60fdc34 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=9 +revision=10 wrksrc="gntp-${version}" build_style=python3-module hostmakedepends="python3-devel" From e24d118114f3f414a733424535d4c863790343d3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:26 -0400 Subject: [PATCH 1066/1420] python3-gitlab: rebuild for Python 3.11 --- 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 7ee508031bf5..822903738f79 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=1 +revision=2 wrksrc=python-gitlab-$version build_style=python3-module hostmakedepends="python3-setuptools" From f0ffb1d4ca563240107dd7cc7aad3ae3ab111104 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:26 -0400 Subject: [PATCH 1067/1420] python3-github3: rebuild for Python 3.11 --- 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 1ea9a42668c1..c4ddb6f1911f 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=1 +revision=2 wrksrc="github3.py-${version}" build_style=python3-module make_check_args="-k not(test_delete_key)" From 39333900ecfd40509dcb4a66a2ef9e323f556fc1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:26 -0400 Subject: [PATCH 1068/1420] python3-fuzzyfinder: rebuild for Python 3.11 --- 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 f3d72dbcc7ee..32c3b9f85e83 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=4 +revision=5 wrksrc=fuzzyfinder-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 37351b26f26395d7efa102babf9d726c4d0f2542 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:26 -0400 Subject: [PATCH 1069/1420] python3-fuse: rebuild for Python 3.11 --- srcpkgs/python3-fuse/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-fuse/template b/srcpkgs/python3-fuse/template index 507d81ef057e..4f18c0104138 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=3 +revision=4 wrksrc=python-fuse-$version build_style=python3-module hostmakedepends="pkg-config python3-setuptools" From a48f0a38451ba2999da9e5bc6c465ae64de60f66 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:26 -0400 Subject: [PATCH 1070/1420] python3-freezegun: rebuild for Python 3.11 --- 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 7e4d988794de..01eabaa9905d 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.2.2 -revision=1 +revision=2 wrksrc="freezegun-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 1618c876e66755fdfd04c80fc82c8ba7bcdaadc6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:26 -0400 Subject: [PATCH 1071/1420] python3-flexmock: rebuild for Python 3.11 --- 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 f84972256447..8280f5b91c50 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.11.3 -revision=1 +revision=2 wrksrc="flexmock-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 87a0218de1491a53b1f8b65e299f540008c3ae45 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:27 -0400 Subject: [PATCH 1072/1420] python3-flaky: rebuild for Python 3.11 --- 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 08a0d44aedd5..392f366d0767 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.6.1 -revision=5 +revision=6 wrksrc="flaky-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 6c654b46b5cb697deed74f936a8678356aedc9ca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:27 -0400 Subject: [PATCH 1073/1420] python3-fishnet: rebuild for Python 3.11 --- 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 ebf13ee84f92..3d789aa85c57 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=4 +revision=5 wrksrc="fishnet-${version}" build_style=python3-module pycompile_module="fishnet.py" From 803c25afaa9be607271838f73bba275ede01388b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:27 -0400 Subject: [PATCH 1074/1420] python3-exifread: rebuild for Python 3.11 --- 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 026f3553a2c9..54dbc357d9cf 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=2 +revision=3 wrksrc="exif-py-${version}" build_style="python3-module" hostmakedepends="python3-setuptools" From 0182cfb11f3855e909f7ab2c68ee601b84ad5d5a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:27 -0400 Subject: [PATCH 1075/1420] python3-esprima: rebuild for Python 3.11 --- 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 da9de4797b0a..cf1380203608 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=5 +revision=6 create_wrksrc=yes build_wrksrc="esprima-${version}" build_style=python3-module From 3327a6349253cacbfdad6edd12525ea93a3a533f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:27 -0400 Subject: [PATCH 1076/1420] python3-envdir: rebuild for Python 3.11 --- srcpkgs/python3-envdir/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-envdir/template b/srcpkgs/python3-envdir/template index 8aefb1a9d878..e926fae627c2 100644 --- a/srcpkgs/python3-envdir/template +++ b/srcpkgs/python3-envdir/template @@ -1,7 +1,7 @@ # Template file for 'python3-envdir' pkgname=python3-envdir version=1.0.1 -revision=6 +revision=7 wrksrc="envdir-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From dfb6a8754dc6fbaa521200a377b48177bf8956f0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:27 -0400 Subject: [PATCH 1077/1420] python3-empy: rebuild for Python 3.11 --- srcpkgs/python3-empy/template | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/srcpkgs/python3-empy/template b/srcpkgs/python3-empy/template index cf1152c66cc8..96ac6341e351 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=5 +revision=6 wrksrc="empy-${version}" build_style=python3-module hostmakedepends="python3-setuptools" @@ -10,9 +10,7 @@ short_desc="Powerful and robust templating system for Python" maintainer="Young Jin Park " license="LGPL-3.0-or-later" homepage="http://www.alcyone.com/software/empy/" -distfiles="http://www.alcyone.com/software/empy/empy-${version}.tar.gz" -checksum=9126211471fc7ff83fdd40beca93eb6de5681758fbe68b4cf8af6326259df1b1 - -do_check() { - ./test.sh -} +distfiles="${PYPI_SITE}/e/empy/empy-${version}.tar.gz" +checksum=73ac49785b601479df4ea18a7c79bc1304a8a7c34c02b9472cf1206ae88f01b3 +# PYPI distribution ships no tests +make_check=no From 0f17ef0709682cdf13f1b1e627e017137387f58e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:27 -0400 Subject: [PATCH 1078/1420] python3-eliot: rebuild for Python 3.11 --- srcpkgs/python3-eliot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-eliot/template b/srcpkgs/python3-eliot/template index ca60113e4724..dc666b721694 100644 --- a/srcpkgs/python3-eliot/template +++ b/srcpkgs/python3-eliot/template @@ -1,7 +1,7 @@ # Template file for 'python3-eliot' pkgname=python3-eliot version=1.12.0 -revision=4 +revision=5 wrksrc="eliot-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 05eb0773c763d09da2914396a95a141b494b3e32 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:27 -0400 Subject: [PATCH 1079/1420] python3-efl: rebuild for Python 3.11 --- srcpkgs/python3-efl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-efl/template b/srcpkgs/python3-efl/template index b8c345bfc7e8..2cde22ffc6ba 100644 --- a/srcpkgs/python3-efl/template +++ b/srcpkgs/python3-efl/template @@ -1,7 +1,7 @@ # Template file for 'python3-efl' pkgname=python3-efl version=1.23.0 -revision=5 +revision=6 wrksrc=python-efl-${version} build_style=python3-module hostmakedepends="pkg-config python3-devel python3-Cython" From f5289aebb4e1a5f74b555e1d4a85eaa9b198394e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:27 -0400 Subject: [PATCH 1080/1420] python3-drgn: rebuild for Python 3.11 --- 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 5fcb3ec922fc..8e16524055fa 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.20 -revision=1 +revision=2 wrksrc="drgn-${version}" build_style=python3-module hostmakedepends="automake libtool pkg-config python3-setuptools" From 7ae6e1bd2ba8456bc69fccbe433f7b1d345c59a9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:27 -0400 Subject: [PATCH 1081/1420] python3-dpkt: rebuild for Python 3.11 --- 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 10a2ee030068..c8b29dfc383d 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.7.2 -revision=2 +revision=3 wrksrc="dpkt-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a93af2a8d31735a8139accc93401699ce5607f45 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:28 -0400 Subject: [PATCH 1082/1420] python3-dominate: rebuild for Python 3.11 --- 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 f85f3b7b1b00..1472ec2e993b 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.7.0 -revision=1 +revision=2 wrksrc="dominate-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 2cb4d7fc60067149e2e79ee63ea4bed9639305d7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:28 -0400 Subject: [PATCH 1083/1420] python3-dockerpty: rebuild for Python 3.11 --- 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 5b1504e90c74..6f374f7e9aaf 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=7 +revision=8 wrksrc="dockerpty-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a95f19be1fe0b921810b6b08c5636b1c04cae647 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:28 -0400 Subject: [PATCH 1084/1420] python3-discogs_client: rebuild for Python 3.11 --- 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 31f077048b04..0870280643dd 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.2.2 -revision=5 +revision=6 wrksrc="discogs-client-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 6a3e5ddbe3e962f65c303ccbb7dea01646cbc327 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:28 -0400 Subject: [PATCH 1085/1420] python3-ddt: rebuild for Python 3.11 --- 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 a90a45083450..ec4ebf437d6c 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=1 +revision=2 wrksrc=ddt-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 9b845b1155fbdb9d6d4a99d3df96109804bbf4ef Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:28 -0400 Subject: [PATCH 1086/1420] python3-dbusmock: rebuild for Python 3.11 --- 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 894cceecf7c5..5d301db9d2f1 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.19 -revision=3 +revision=4 wrksrc="python-dbusmock-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 6c770828305f0692ca81fd88a79b4d78dc23cc3e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:28 -0400 Subject: [PATCH 1087/1420] python3-cvxopt: rebuild for Python 3.11 --- 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 d89abbcafa5f..33df45e1c025 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.0 -revision=1 +revision=2 wrksrc="cvxopt-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From e74a893441c73f34601b872bf5794c5b80628a06 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:28 -0400 Subject: [PATCH 1088/1420] python3-curtsies: rebuild for Python 3.11 --- srcpkgs/python3-curtsies/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-curtsies/template b/srcpkgs/python3-curtsies/template index 3488d66ab5e0..e06c47bc22f7 100644 --- a/srcpkgs/python3-curtsies/template +++ b/srcpkgs/python3-curtsies/template @@ -1,7 +1,7 @@ # Template file for 'python3-curtsies' pkgname=python3-curtsies version=0.3.0 -revision=5 +revision=6 wrksrc="curtsies-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 005e779cc84c12d5383a40802bd2e8fbd8c333a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:28 -0400 Subject: [PATCH 1089/1420] python3-curio: rebuild for Python 3.11 --- 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 51c7d9a11f98..3fe146f79862 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.5 -revision=2 +revision=3 wrksrc="curio-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 2252fd002c16b19372e4682145383159aec7bf04 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:28 -0400 Subject: [PATCH 1090/1420] python3-cssutils: rebuild for Python 3.11 --- 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 33a6857a11b6..3a45647f20b0 100644 --- a/srcpkgs/python3-cssutils/template +++ b/srcpkgs/python3-cssutils/template @@ -1,7 +1,7 @@ # Template file for 'python3-cssutils' pkgname=python3-cssutils version=1.0.2 -revision=6 +revision=7 wrksrc="cssutils-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 9262c074cf112c22733c73a314523cd862317140 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:29 -0400 Subject: [PATCH 1091/1420] python3-crcmod: rebuild for Python 3.11 --- 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 a0344ce3adb9..cb842c6e6aa6 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=5 +revision=6 wrksrc="crcmod-${version}" build_style=python3-module pycompile_module="crcmod" From 00756b903550ae6dacb5df68346c75b7fe7dd1a1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:29 -0400 Subject: [PATCH 1092/1420] python3-crccheck: rebuild for Python 3.11 --- 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 2d4e82a7075a..3fbe2d5a95ab 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=1 +revision=2 wrksrc="crccheck-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From fbf216102e65c4b0e783c4eb75faf85842f95632 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:29 -0400 Subject: [PATCH 1093/1420] python3-cram: rebuild for Python 3.11 --- 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 f13bb1f99dd2..8dfe196adb3e 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=6 +revision=7 wrksrc="cram-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 6baf84269f4f14f99aa5d9f516d190c96079867d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:29 -0400 Subject: [PATCH 1094/1420] python3-coveralls: rebuild for Python 3.11 --- 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 f94ac92c6ca0..966935a7ba07 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=2 +revision=3 wrksrc="python-coveralls-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-coverage" From 1060e0ad7d278725294e026805d4efecdf4d310d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:29 -0400 Subject: [PATCH 1095/1420] python3-codespell: rebuild for Python 3.11 --- 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 9f8d96bdc606..9e9851c8abe3 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.1.0 -revision=1 +revision=2 wrksrc="codespell-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From c4c3a68015f5a9bf9608c36e9e0ba3f8b08bc5f2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:29 -0400 Subject: [PATCH 1096/1420] python3-cmdln: rebuild for Python 3.11 --- 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 62aed6060ef9..2faf53e21ee0 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=4 +revision=5 wrksrc="cmdln-${version}" build_style=python3-module pycompile_module="cmdln.py" From e7c7c33a68b4b0839269d9fa64e1460970ade947 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:29 -0400 Subject: [PATCH 1097/1420] python3-cli-ui: rebuild for Python 3.11 --- 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 baf4d1d6a424..e0a68ce01dd4 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.11.0 -revision=2 +revision=3 wrksrc="cli-ui-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 5c3bfa32fe3025fdee73d18928b7c79aeff88c87 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:29 -0400 Subject: [PATCH 1098/1420] python3-chroot: rebuild for Python 3.11 --- 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 d4a8cd59b669..39f1331014a3 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.1 -revision=2 +revision=3 wrksrc="pychroot-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-snakeoil" From c17e37e938c392d5a1ba3748837aa4539b3a9c86 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:30 -0400 Subject: [PATCH 1099/1420] python3-chess: rebuild for Python 3.11 --- 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 9c531f470236..ef48970a0d2a 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.9.3 -revision=1 +revision=2 wrksrc="python-chess-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 7be18238d7bcaa85c549af6e8b6429ef63bf6f5c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:30 -0400 Subject: [PATCH 1100/1420] python3-changelogs: rebuild for Python 3.11 --- srcpkgs/python3-changelogs/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-changelogs/template b/srcpkgs/python3-changelogs/template index cca78cb035c5..2ac3a86ce8fa 100644 --- a/srcpkgs/python3-changelogs/template +++ b/srcpkgs/python3-changelogs/template @@ -1,7 +1,7 @@ # Template file for 'python3-changelogs' pkgname=python3-changelogs version=0.15.0 -revision=2 +revision=3 wrksrc="changelogs-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 1cc49d9773daf0e2d9da99e512e76721d7e11f90 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:30 -0400 Subject: [PATCH 1101/1420] python3-cached-property: rebuild for Python 3.11 --- 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 6978a26349e7..e126ee9f39fe 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=1 +revision=2 wrksrc="cached-property-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From f5c719c378665e143748da524d9e71c8d6121cda Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:30 -0400 Subject: [PATCH 1102/1420] python3-bokeh: rebuild for Python 3.11 --- srcpkgs/python3-bokeh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-bokeh/template b/srcpkgs/python3-bokeh/template index c4063f6bfc15..aa3c0551e6f8 100644 --- a/srcpkgs/python3-bokeh/template +++ b/srcpkgs/python3-bokeh/template @@ -1,7 +1,7 @@ # Template file for 'python3-bokeh' pkgname=python3-bokeh version=2.4.3 -revision=1 +revision=2 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 7eb859c00d33842138b7731ab078dd28fce0c3d2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:30 -0400 Subject: [PATCH 1103/1420] python3-bitbucket-api: rebuild for Python 3.11 --- 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 1110e04aa644..2074bf05a8a0 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=7 +revision=8 wrksrc="bitbucket-api-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 908178bad570ebc150908ca131b7162975e9374d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:30 -0400 Subject: [PATCH 1104/1420] python3-bitarray: rebuild for Python 3.11 --- 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 4845a5c6006a..fafe7a63d72d 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.6.0 -revision=1 +revision=2 wrksrc="bitarray-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 9c86447b71cfbdc9e0b1c178d88300221a57f450 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:30 -0400 Subject: [PATCH 1105/1420] python3-betamax-matchers: rebuild for Python 3.11 --- 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 de0c09642d7a..fe40e5058466 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=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d8734752fb949fbb376261d27086dc70dbd16b33 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:30 -0400 Subject: [PATCH 1106/1420] python3-astral: rebuild for Python 3.11 --- 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 e5d719800ac1..3af5f3a8259d 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=3 +revision=4 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module hostmakedepends="python3 python3-setuptools" From 111c466fbc1a543bf908f8633d60aa149e0408a8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:30 -0400 Subject: [PATCH 1107/1420] python3-asteval: rebuild for Python 3.11 --- 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 0b9e73bd0f85..7310979285ff 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=1 +revision=2 wrksrc=${pkgname#*-}-${version} build_style=python3-module hostmakedepends="python3-setuptools_scm" From 9182e8ba0c2becbb012b90a8096ffab0876e749f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:31 -0400 Subject: [PATCH 1108/1420] python3-applib: rebuild for Python 3.11 --- 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 f66ce2c04b50..e26423391bcc 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=5 +revision=6 create_wrksrc=yes build_wrksrc="applib-${version}" build_style=python3-module From c01a786509caeb08f6319d85624c41059beafefb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:31 -0400 Subject: [PATCH 1109/1420] python3-ansible-lint: rebuild for Python 3.11 --- 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 d5d11e3e5159..7ea457243469 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=6.8.4 -revision=1 +revision=2 wrksrc="${pkgname/python3-/}-${version}" build_style=python3-pep517 make_install_target="ansible_lint-*-*-*-*.whl" From 79492f6ac7578e60268aad904b0fe2e03c2708c1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:31 -0400 Subject: [PATCH 1110/1420] python3-alsa: rebuild for Python 3.11 --- 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 5b5230852462..57e42c21e1ca 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=5 +revision=6 wrksrc="pyalsa-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From cb4862e3abcbab6b2e871653e3f5dc0aed3747be Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:31 -0400 Subject: [PATCH 1111/1420] python3-aioinflux: rebuild for Python 3.11 --- 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 1ef519496ecc..0ff38ee4be6e 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=3 +revision=4 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From c99e19ec2a5b4c9c11b8136729569d06e7f6259d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:31 -0400 Subject: [PATCH 1112/1420] python3-aiohttp-sse-client: rebuild for Python 3.11 --- 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 73b4ba5ad03f..3c69a1b6c2b4 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=2 +revision=3 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 37b8ac3c9822801d01fbb471bbb43aec050877e6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:31 -0400 Subject: [PATCH 1113/1420] python3-aioamqp: rebuild for Python 3.11 --- 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 63f195e85343..275fe06987f0 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=1 +revision=2 wrksrc="aioamqp-aioamqp-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From ba8f8b2cd3e3f9d55666e8ecd48be518b4fa2e40 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:31 -0400 Subject: [PATCH 1114/1420] python3-adblock: rebuild for Python 3.11 --- 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 0dd393554ba7..dad58b0c0380 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=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-pep517 build_helper="rust" From 3540b0165e75b325d2a1ade8dabc3bfdce648ed3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:31 -0400 Subject: [PATCH 1115/1420] python3-aalib: rebuild for Python 3.11 --- 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 eac83d1f4885..f4b8c5472402 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=5 +revision=6 wrksrc=python-aalib-$version build_style=python3-module hostmakedepends="python3-setuptools" From 5dfcadb3bfc3ccb048b9429bf0634c33e18c0718 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:31 -0400 Subject: [PATCH 1116/1420] python3-Yapsy: rebuild for Python 3.11 --- 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 2414cad0a9b7..7028d855de73 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=5 +revision=6 wrksrc="Yapsy-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From dd534fb53e7be2573851b3ef56dd244d1cf11b68 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:32 -0400 Subject: [PATCH 1117/1420] python3-TxSNI: rebuild for Python 3.11 --- 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 f9604fd89e25..b30b01e3f934 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=2 +revision=3 wrksrc="txsni-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 43e97e0edf295abfe02d4bc8b86ccfc2a0c2b38c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:32 -0400 Subject: [PATCH 1118/1420] python3-Telethon: rebuild for Python 3.11 --- 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 aa3d5e1b85bb..d61d38a5247d 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.21.1 -revision=2 +revision=3 wrksrc="Telethon-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 8fa5f8d31f9374718e7fc874b5b395de16450caf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:32 -0400 Subject: [PATCH 1119/1420] python3-RPi.GPIO: rebuild for Python 3.11 --- 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 2a46fec21252..cad0962d701f 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=1 +revision=2 archs="armv[67]l* aarch64*" wrksrc="${pkgname#*-}-${version}" build_style=python3-module From cfc5d544b123138311b1bbd3469bce1c60359ff1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:32 -0400 Subject: [PATCH 1120/1420] python3-PyQt5-networkauth: rebuild for Python 3.11 --- 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 c01ee3b1ebb6..a79902c6cb96 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.5 -revision=1 +revision=2 wrksrc=PyQtNetworkAuth-$version build_style=sip-build hostmakedepends="qt5-qmake python3-PyQt5-devel pkg-config sip From 83143d74ba3ec0f257000d97a8ded706c1e7d9c3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:32 -0400 Subject: [PATCH 1121/1420] python3-PyICU: rebuild for Python 3.11 --- 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 b8898afdc87e..d2861933d9dc 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.9 -revision=2 +revision=3 wrksrc="pyicu-v${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d52ca0117edf0b433c8b263ee3ad12bbe8c91951 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:32 -0400 Subject: [PATCH 1122/1420] python3-PyAudio: rebuild for Python 3.11 --- 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 e85fa09ec60a..bca4ee8d9be3 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=1 +revision=2 wrksrc="PyAudio-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d01aa2f055d8255de458c4052056b150cba5c219 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:32 -0400 Subject: [PATCH 1123/1420] python3-Pebble: rebuild for Python 3.11 --- 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 d326ba83b0b9..f83ac69248fc 100644 --- a/srcpkgs/python3-Pebble/template +++ b/srcpkgs/python3-Pebble/template @@ -1,7 +1,7 @@ # Template file for 'python3-Pebble' pkgname=python3-Pebble version=4.6.3 -revision=1 +revision=2 wrksrc=Pebble-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 3367f175d658e7550b9442831bf094d8f13efcfb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:32 -0400 Subject: [PATCH 1124/1420] python3-PGPy: rebuild for Python 3.11 --- 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 7de7c554b74f..8542e162e59d 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.5.4 -revision=1 +revision=2 wrksrc=PGPy-${version} build_style=python3-module hostmakedepends="python3-setuptools python3-wheel" From 0718f368f08312d15c461ad6c48388cf0e13757c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:32 -0400 Subject: [PATCH 1125/1420] python3-MiniMock: rebuild for Python 3.11 --- 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 851733cdc1b1..b0251d020b35 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=6 +revision=7 wrksrc="MiniMock-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From c225798b8bddb16f63ca5b4293fa6f316e877cfb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:33 -0400 Subject: [PATCH 1126/1420] python3-Inflector: rebuild for Python 3.11 --- 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 072977ee0ce3..add2fa86ddc7 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=3 +revision=4 wrksrc="Inflector-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 969514ce49e05afe80d66410bc805e14a813cecc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:33 -0400 Subject: [PATCH 1127/1420] python3-GitPython: rebuild for Python 3.11 --- 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 1be078f7a87c..94cb0256dc6e 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.29 -revision=1 +revision=2 wrksrc="GitPython-${version}" build_style=python3-module make_check_args="--deselect test/test_base.py::TestBase::test_with_rw_remote_and_rw_repo From b08f26725f65c02dd2c6b3dc4afd59bd0a81b5c6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:33 -0400 Subject: [PATCH 1128/1420] python3-Flask-User: rebuild for Python 3.11 --- srcpkgs/python3-Flask-User/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Flask-User/template b/srcpkgs/python3-Flask-User/template index d3b88b726298..88e352041343 100644 --- a/srcpkgs/python3-Flask-User/template +++ b/srcpkgs/python3-Flask-User/template @@ -1,7 +1,7 @@ # Template file for 'python3-Flask-User' pkgname=python3-Flask-User version=1.0.2.2 -revision=4 +revision=5 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Flask-Login python3-wheel" From 04df2fb9703708b72bba1ee6c9cf41e1ff1d4c07 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:33 -0400 Subject: [PATCH 1129/1420] python3-Flask-Script: rebuild for Python 3.11 --- srcpkgs/python3-Flask-Script/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Flask-Script/template b/srcpkgs/python3-Flask-Script/template index 7121d6bd05c7..ae86ad0c98a0 100644 --- a/srcpkgs/python3-Flask-Script/template +++ b/srcpkgs/python3-Flask-Script/template @@ -1,7 +1,7 @@ # Template file for 'python3-Flask-Script' pkgname=python3-Flask-Script version=2.0.6 -revision=5 +revision=6 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From a88d7a8d95e387b5719e3b144c20d5a1a39ea725 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:33 -0400 Subject: [PATCH 1130/1420] python3-Flask-OAuthlib: rebuild for Python 3.11 --- srcpkgs/python3-Flask-OAuthlib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Flask-OAuthlib/template b/srcpkgs/python3-Flask-OAuthlib/template index b0c144b28700..237f0565b980 100644 --- a/srcpkgs/python3-Flask-OAuthlib/template +++ b/srcpkgs/python3-Flask-OAuthlib/template @@ -1,7 +1,7 @@ # Template file for 'python3-Flask-OAuthlib' pkgname=python3-Flask-OAuthlib version=0.9.6 -revision=2 +revision=3 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From ef09fa309aa72841e9354fb2091f5b666a5064ea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:33 -0400 Subject: [PATCH 1131/1420] python3-Flask-HTTPAuth: rebuild for Python 3.11 --- 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 22dfe8a31856..d798503c62ca 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.5.0 -revision=1 +revision=2 wrksrc=Flask-HTTPAuth-${version} build_style=python3-module hostmakedepends="python3-setuptools" From 48356b065de4d1b57f4c5b9d0007372deca7d207 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:33 -0400 Subject: [PATCH 1132/1420] python3-Flask-Assets: rebuild for Python 3.11 --- srcpkgs/python3-Flask-Assets/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Flask-Assets/template b/srcpkgs/python3-Flask-Assets/template index 984b36ec4bd9..d10836df881a 100644 --- a/srcpkgs/python3-Flask-Assets/template +++ b/srcpkgs/python3-Flask-Assets/template @@ -1,7 +1,7 @@ # Template file for 'python3-Flask-Assets' pkgname=python3-Flask-Assets version=0.12 -revision=7 +revision=8 wrksrc="${pkgname#*-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 29c3f216254a70b92357bf8df2bf1fbd6d2339a9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:33 -0400 Subject: [PATCH 1133/1420] python3-Bottleneck: rebuild for Python 3.11 --- srcpkgs/python3-Bottleneck/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Bottleneck/template b/srcpkgs/python3-Bottleneck/template index 00263d13fcad..5667b4c0605f 100644 --- a/srcpkgs/python3-Bottleneck/template +++ b/srcpkgs/python3-Bottleneck/template @@ -1,7 +1,7 @@ # Template file for 'python3-Bottleneck' pkgname=python3-Bottleneck version=1.3.2 -revision=4 +revision=5 wrksrc="Bottleneck-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-numpy" From 433a609af1ad0555963616cef6ef9f1d8361768d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:33 -0400 Subject: [PATCH 1134/1420] python3-3to2: rebuild for Python 3.11 --- 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 7d0452c6fda2..b58787b8b2d7 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=4 +revision=5 wrksrc="3to2-${version}" build_style=python3-module pycompile_module="lib3to2" From 4aefc49d3b3f4b9405e65df6cebf2f27cbdd1f00 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:34 -0400 Subject: [PATCH 1135/1420] python-sqlalchemy-migrate: rebuild for Python 3.11 --- srcpkgs/python-sqlalchemy-migrate/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-sqlalchemy-migrate/template b/srcpkgs/python-sqlalchemy-migrate/template index 9f8db8ae448e..fcd113f5d915 100644 --- a/srcpkgs/python-sqlalchemy-migrate/template +++ b/srcpkgs/python-sqlalchemy-migrate/template @@ -1,7 +1,7 @@ # Template file for 'python-sqlalchemy-migrate' pkgname=python-sqlalchemy-migrate version=0.12.0 -revision=5 +revision=6 wrksrc="${pkgname#*-}-${version}" build_style=python-module pycompile_module="migrate" From 2bbdc547062c4b19d8aa17894f78f071778f30c4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:34 -0400 Subject: [PATCH 1136/1420] python-PyHamcrest: rebuild for Python 3.11 --- srcpkgs/python-PyHamcrest/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python-PyHamcrest/template b/srcpkgs/python-PyHamcrest/template index 34b26e0dfd48..ceec4d601ca7 100644 --- a/srcpkgs/python-PyHamcrest/template +++ b/srcpkgs/python-PyHamcrest/template @@ -1,7 +1,7 @@ # Template file for 'python-PyHamcrest' pkgname=python-PyHamcrest version=1.9.0 -revision=5 +revision=6 wrksrc="PyHamcrest-${version}" build_style=python-module pycompile_module="hamcrest" From 772d336afef4a7ab0627ac3c413e347ef5b17bb2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:34 -0400 Subject: [PATCH 1137/1420] pysolfc: rebuild for Python 3.11 --- srcpkgs/pysolfc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template index f8d619cb8382..a6433063a117 100644 --- a/srcpkgs/pysolfc/template +++ b/srcpkgs/pysolfc/template @@ -1,7 +1,7 @@ # Template file for 'pysolfc' pkgname=pysolfc version=2.16.0 -revision=1 +revision=2 wrksrc="PySolFC-${pkgname}-${version}" build_style=python3-module hostmakedepends="gettext python3-pygame python3-random2 python3-six From 0c64c59cf9bedd88fa83c600dfe0690afc7a9a7a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:34 -0400 Subject: [PATCH 1138/1420] pyradio: rebuild for Python 3.11 --- srcpkgs/pyradio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template index aed19934c2e3..78d31aa11e1a 100644 --- a/srcpkgs/pyradio/template +++ b/srcpkgs/pyradio/template @@ -1,7 +1,7 @@ # Template file for 'pyradio' pkgname=pyradio version=0.8.9.28 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests python3-dnspython python3-psutil" From 463495177a97556c6c62a329e5d1fdff9586fff3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:34 -0400 Subject: [PATCH 1139/1420] pymol: rebuild for Python 3.11 --- srcpkgs/pymol/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pymol/template b/srcpkgs/pymol/template index 03d1147542ee..15a1c0857388 100644 --- a/srcpkgs/pymol/template +++ b/srcpkgs/pymol/template @@ -1,7 +1,7 @@ # Template file for 'pymol' pkgname=pymol version=2.5.0 -revision=2 +revision=3 wrksrc=${pkgname}-open-source-${version} build_style="python3-module" build_helper="numpy" From 566ff70bfaf6f2ad819b9ce3e35a8dc3c3d476a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:34 -0400 Subject: [PATCH 1140/1420] pylint: rebuild for Python 3.11 --- srcpkgs/pylint/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pylint/template b/srcpkgs/pylint/template index d4a347661025..e8f7221bd3b9 100644 --- a/srcpkgs/pylint/template +++ b/srcpkgs/pylint/template @@ -1,7 +1,7 @@ # Template file for 'pylint' pkgname=pylint version=2.14.5 -revision=1 +revision=2 build_style=python3-module make_check_args="--deselect=tests/benchmark/test_baseline_benchmarks.py" hostmakedepends="python3-setuptools" From e929490df4133def3ffb3ce520f27e66bb65ee55 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:34 -0400 Subject: [PATCH 1141/1420] pycp: rebuild for Python 3.11 --- srcpkgs/pycp/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template index d9561953e18b..cda91228d0ad 100644 --- a/srcpkgs/pycp/template +++ b/srcpkgs/pycp/template @@ -1,7 +1,7 @@ # Template file for 'pycp' pkgname=pycp version=8.0.8 -revision=4 +revision=5 build_style=python3-module pycompile_module="pycp" hostmakedepends="help2man python3-setuptools" From c1abc66a79d365e31abc767cccdc0a6d871dd4a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:34 -0400 Subject: [PATCH 1142/1420] pychess: rebuild for Python 3.11 --- srcpkgs/pychess/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template index 7fb17cc72de7..92622121157e 100644 --- a/srcpkgs/pychess/template +++ b/srcpkgs/pychess/template @@ -1,7 +1,7 @@ # Template file for 'pychess' pkgname=pychess version=1.0.3 -revision=1 +revision=2 build_style=python3-module _commondeps="python3-gobject python3-pexpect python3-SQLAlchemy gobject-introspection gtksourceview" From f2eea9c5bb1e4c634647edcb18cff14a9c6734d7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:35 -0400 Subject: [PATCH 1143/1420] py3status: rebuild for Python 3.11 --- srcpkgs/py3status/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template index 5d749a93034f..08839c406062 100644 --- a/srcpkgs/py3status/template +++ b/srcpkgs/py3status/template @@ -1,7 +1,7 @@ # Template file for 'py3status' pkgname=py3status version=3.47 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-pyudev" From 3fd37c682609aa979f1f3d35ded52f66ce9105de Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:35 -0400 Subject: [PATCH 1144/1420] pulseaudio-equalizer-ladspa: rebuild for Python 3.11 --- 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 390bce00c566..60c56b73efbd 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=4 +revision=5 wrksrc="equalizer-${version}" build_style=meson pycompile_module="pulseeq" From d0d9a21aa4c8fee125570efa43a182d45f24e6ac Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:35 -0400 Subject: [PATCH 1145/1420] puddletag: rebuild for Python 3.11 --- srcpkgs/puddletag/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/puddletag/template b/srcpkgs/puddletag/template index 463b47440c5d..34b11f5dcd81 100644 --- a/srcpkgs/puddletag/template +++ b/srcpkgs/puddletag/template @@ -1,7 +1,7 @@ # Template file for 'puddletag' pkgname=puddletag version=2.0.1 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 python3-configobj python3-mutagen python3-parsing python3-PyQt5 python3-PyQt5-svg" From 10d52787abdeb1606c31aca0d57611020ac408d5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:35 -0400 Subject: [PATCH 1146/1420] ps_mem: rebuild for Python 3.11 --- 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 8766b8338f3c..35698523d95e 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=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" short_desc="Utility to accurately report the core memory usage for a program" From 910b5ef1df545daacbe724bc1609f0fac69fafaa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:35 -0400 Subject: [PATCH 1147/1420] protonvpn-cli: rebuild for Python 3.11 --- srcpkgs/protonvpn-cli/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/protonvpn-cli/template b/srcpkgs/protonvpn-cli/template index de1d3c12bde4..fb4a82403ae6 100644 --- a/srcpkgs/protonvpn-cli/template +++ b/srcpkgs/protonvpn-cli/template @@ -1,7 +1,7 @@ # Template file for 'protonvpn-cli' pkgname=protonvpn-cli version=2.2.11 -revision=3 +revision=4 wrksrc="linux-cli-community-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 291cd933e10d1c33821f38f32c2ebfedcbbdad5f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:35 -0400 Subject: [PATCH 1148/1420] protontricks: rebuild for Python 3.11 --- srcpkgs/protontricks/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/protontricks/template b/srcpkgs/protontricks/template index 0c245cc7bdf0..cb72275f6cf5 100644 --- a/srcpkgs/protontricks/template +++ b/srcpkgs/protontricks/template @@ -1,7 +1,7 @@ # Template file for 'protontricks' pkgname=protontricks version=1.9.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3-vdf winetricks python3-setuptools" From 916bb15f1375f3ba1ce67040717261468fcd0385 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:35 -0400 Subject: [PATCH 1149/1420] profanity: rebuild for Python 3.11 --- srcpkgs/profanity/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/profanity/template b/srcpkgs/profanity/template index 3aec13a9115e..96b1db6b3f1b 100644 --- a/srcpkgs/profanity/template +++ b/srcpkgs/profanity/template @@ -1,7 +1,7 @@ # Template file for 'profanity' pkgname=profanity version=0.12.1 -revision=1 +revision=2 build_style=gnu-configure configure_args="$(vopt_enable notify notifications) $(vopt_enable otr) $(vopt_enable pgp) $(vopt_enable python python-plugins) $(vopt_enable plugins) From cc2c4b41f09a2690df2b83a253313fa5514ddabf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:35 -0400 Subject: [PATCH 1150/1420] pre-commit: rebuild for Python 3.11 --- 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 3d96b78a0189..40e63466f48d 100644 --- a/srcpkgs/pre-commit/template +++ b/srcpkgs/pre-commit/template @@ -1,7 +1,7 @@ # Template file for 'pre-commit' pkgname=pre-commit version=2.20.0 -revision=1 +revision=2 wrksrc="pre_commit-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d24212042449df781cf2f2293ec41703f69a3b82 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 4 Oct 2022 20:08:48 -0400 Subject: [PATCH 1151/1420] postgresql13: rebuild for Python 3.11 --- srcpkgs/postgresql13/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/postgresql13/template b/srcpkgs/postgresql13/template index 1cd078cd6d87..d5f3c868da58 100644 --- a/srcpkgs/postgresql13/template +++ b/srcpkgs/postgresql13/template @@ -1,7 +1,7 @@ # Template file for 'postgresql13' pkgname=postgresql13 version=13.8 -revision=1 +revision=2 wrksrc="postgresql-${version}" build_style=gnu-configure make_build_target=world From d4133aec2974a3b529be0e823ce9fbc723d8d83f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:35 -0400 Subject: [PATCH 1152/1420] portage: rebuild for Python 3.11 --- srcpkgs/portage/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/portage/template b/srcpkgs/portage/template index a46550ae3ad4..8196fe4bfbc0 100644 --- a/srcpkgs/portage/template +++ b/srcpkgs/portage/template @@ -1,7 +1,7 @@ # Template file for 'portage' pkgname=portage version=3.0.32 -revision=1 +revision=2 wrksrc="${pkgname}-${pkgname}-${version}" build_style=python3-module make_install_args="--sbindir=/usr/bin" From 0c2fafcecd03975837c66f4a942c09c88ce70748 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:36 -0400 Subject: [PATCH 1153/1420] polysh: rebuild for Python 3.11 --- srcpkgs/polysh/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/polysh/template b/srcpkgs/polysh/template index 93d84b621177..3d92d3b3747c 100644 --- a/srcpkgs/polysh/template +++ b/srcpkgs/polysh/template @@ -1,7 +1,7 @@ # Template file for 'polysh' pkgname=polysh version=0.13 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3 openssh" From b9442c436d7550397401df8710e8ec7c6ef22d76 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:36 -0400 Subject: [PATCH 1154/1420] poezio: update to 0.14. --- .../poezio/patches/disable-header-checks.patch | 16 ++++++++++++++++ srcpkgs/poezio/template | 15 ++++++--------- 2 files changed, 22 insertions(+), 9 deletions(-) create mode 100644 srcpkgs/poezio/patches/disable-header-checks.patch diff --git a/srcpkgs/poezio/patches/disable-header-checks.patch b/srcpkgs/poezio/patches/disable-header-checks.patch new file mode 100644 index 000000000000..09cf6d5434de --- /dev/null +++ b/srcpkgs/poezio/patches/disable-header-checks.patch @@ -0,0 +1,16 @@ +The check_include function in the setup script passes $CC as argv[0] to +subprocess.call, which fails in our cross environment where $CC includes some +extra command-line flags. Just assume the headers are found. + +--- a/setup.py ++++ b/setup.py +@@ -89,9 +89,6 @@ + ) + + +-if not check_include('python3', 'Python.h'): +- sys.exit(2) +- + module_poopt = Extension('poezio.poopt', + extra_compile_args=['-Wno-declaration-after-statement'], + sources=['poezio/pooptmodule.c']) diff --git a/srcpkgs/poezio/template b/srcpkgs/poezio/template index cc778aa4746c..6924408a044c 100644 --- a/srcpkgs/poezio/template +++ b/srcpkgs/poezio/template @@ -1,24 +1,21 @@ # Template file for 'poezio' pkgname=poezio -version=0.13.1 -revision=4 +version=0.14 +revision=1 build_style=python3-module hostmakedepends="python3-setuptools pkg-config" makedepends="python3-devel" -depends="python3-setuptools python3-slixmpp" +depends="python3-slixmpp python3-aiodns python3-pyasn1-modules + python3-typing_extensions python3-setuptools" short_desc="Console XMPP/Jabber client" maintainer="Franklin Delehelle " license="Zlib" homepage="https://poez.io/" distfiles="${PYPI_SITE}/p/poezio/poezio-${version}.tar.gz" -checksum=54befa84633c5158112fa5673490ccaf30af3e52a61daf433c867df47bca2271 - -pre_configure() { - sed -i "s|os.environ.get('CC', 'cc')|'${CC}'|" setup.py -} +checksum=d9b8a3e22fa39a8683a9a289229f23d922e63c938a76b9897b77f3278bb3a420 post_install() { # keep man pages only - rm -rf ${DESTDIR}/usr/share/{doc,poezio} + rm -r ${DESTDIR}/usr/share/{doc,poezio} vlicense COPYING } From edac067e68a0673e8871675c3a170956a58e4067 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:36 -0400 Subject: [PATCH 1155/1420] podman-compose: rebuild for Python 3.11 --- 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 7f92015f8ecf..310027c1a045 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.0.3 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="podman python3-yaml python3-dotenv" From 2d45a26093d7fbfaccf5936c8e4baa70964f89e6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:36 -0400 Subject: [PATCH 1156/1420] pockyt: rebuild for Python 3.11 --- srcpkgs/pockyt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template index 205d4878ce4a..f0b064e77da5 100644 --- a/srcpkgs/pockyt/template +++ b/srcpkgs/pockyt/template @@ -1,7 +1,7 @@ # Template file for 'pockyt' pkgname=pockyt version=1.4.6 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-parse" From 474b477db3336d6e8ecb1ce6ae266dcf8f5f91a0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:36 -0400 Subject: [PATCH 1157/1420] pmbootstrap: rebuild for Python 3.11 --- srcpkgs/pmbootstrap/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template index 61d6d96804ad..f5bfb706a1b1 100644 --- a/srcpkgs/pmbootstrap/template +++ b/srcpkgs/pmbootstrap/template @@ -1,7 +1,7 @@ # Template file for 'pmbootstrap' pkgname=pmbootstrap version=1.46.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="git openssl python3" From 1d5ef6c3c3be758a4e4fbe1911abebbce4e66e6d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:36 -0400 Subject: [PATCH 1158/1420] pluma: rebuild for Python 3.11 --- srcpkgs/pluma/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pluma/template b/srcpkgs/pluma/template index 78c3a67494b6..91e95138b3cc 100644 --- a/srcpkgs/pluma/template +++ b/srcpkgs/pluma/template @@ -1,7 +1,7 @@ # Template file for 'pluma' pkgname=pluma version=1.26.0 -revision=1 +revision=2 build_style=gnu-configure build_helper=gir pycompile_dirs="usr/lib/pluma/plugins" From a81ae833470102455fba7f96e19edb1c2777b62f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:36 -0400 Subject: [PATCH 1159/1420] plplot: rebuild for Python 3.11 --- srcpkgs/plplot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/plplot/template b/srcpkgs/plplot/template index 109fca355120..221562823b60 100644 --- a/srcpkgs/plplot/template +++ b/srcpkgs/plplot/template @@ -1,7 +1,7 @@ # Template file for 'plplot' pkgname=plplot version=5.15.0 -revision=2 +revision=3 build_style=cmake build_helper="qemu" configure_args="-DPL_FREETYPE_FONT_PATH=/usr/share/fonts/TTF From 5c459aa5add0d961ba3af6ee9134c62e1937e3b9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:36 -0400 Subject: [PATCH 1160/1420] playitslowly: rebuild for Python 3.11 --- srcpkgs/playitslowly/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template index ba717f398bf0..93a7df151fec 100644 --- a/srcpkgs/playitslowly/template +++ b/srcpkgs/playitslowly/template @@ -1,7 +1,7 @@ # Template file for 'playitslowly' pkgname=playitslowly version=1.5.1 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3" depends="python3 python3-gobject gtk+3 gstreamer1 gst-plugins-base1 gst-plugins-good1 From cf149dee9eb38c350fa9100ec3d84e48928cc070 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:36 -0400 Subject: [PATCH 1161/1420] platformio: rebuild for Python 3.11 --- srcpkgs/platformio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/platformio/template b/srcpkgs/platformio/template index a962cf04c600..e9d8f7eb6cfe 100644 --- a/srcpkgs/platformio/template +++ b/srcpkgs/platformio/template @@ -1,7 +1,7 @@ # Template file for 'platformio' pkgname=platformio version=5.2.5 -revision=1 +revision=2 wrksrc="platformio-core-${version}" build_style=python3-module # According to https://github.com/platformio/platformio-core/blob/9c20ab81cb68f1ffb7a8cac22ce95c4c797643ec/Makefile#L13 From ed281add1018aea01bab679178ee5ae8bf976dee Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:37 -0400 Subject: [PATCH 1162/1420] piper: rebuild for Python 3.11 --- srcpkgs/piper/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template index 37f5170c77a5..a68809ee757b 100644 --- a/srcpkgs/piper/template +++ b/srcpkgs/piper/template @@ -1,7 +1,7 @@ # Template file for 'piper' pkgname=piper version=0.7 -revision=1 +revision=2 build_style=meson hostmakedepends="gettext libratbag pkg-config glib-devel python3-lxml python3-evdev python3-cairo python3-gobject" From c14206b662e14940a79493aec9d730b1d9e4ccc1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:37 -0400 Subject: [PATCH 1163/1420] picard: rebuild for Python 3.11 --- srcpkgs/picard/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template index 5acdbd8855c1..24281adbd2f2 100644 --- a/srcpkgs/picard/template +++ b/srcpkgs/picard/template @@ -1,7 +1,7 @@ # Template file for 'picard' pkgname=picard version=2.8.3 -revision=1 +revision=2 wrksrc="${pkgname}-release-${version}" build_style=python3-module make_install_args="--disable-autoupdate" From af4105bde74f624038a0fc7d135d1108780409c6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:37 -0400 Subject: [PATCH 1164/1420] pgcli: rebuild for Python 3.11 --- srcpkgs/pgcli/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template index e5463eb7ac6a..db228c7c00d9 100644 --- a/srcpkgs/pgcli/template +++ b/srcpkgs/pgcli/template @@ -1,7 +1,7 @@ # Template file for 'pgcli' pkgname=pgcli version=3.5.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pgspecial python3-click python3-Pygments python3-prompt_toolkit From e371fb063c39a87ab16893c94890b055305f0ee0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:37 -0400 Subject: [PATCH 1165/1420] pex: rebuild for Python 3.11 --- srcpkgs/pex/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pex/template b/srcpkgs/pex/template index 4b0fc2112453..252b04cdc3c9 100644 --- a/srcpkgs/pex/template +++ b/srcpkgs/pex/template @@ -1,7 +1,7 @@ # Template file for 'pex' pkgname=pex version=2.1.103 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-flit_core python3-Sphinx" depends="python3" From 397413adf7d989f81e12433877094289a076bd1d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:37 -0400 Subject: [PATCH 1166/1420] peru: rebuild for Python 3.11 --- srcpkgs/peru/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template index 7f77496c6fa4..164984d6f4fc 100644 --- a/srcpkgs/peru/template +++ b/srcpkgs/peru/template @@ -1,7 +1,7 @@ # Template file for 'peru' pkgname=peru version=1.2.0 -revision=4 +revision=5 build_style=python3-module pycompile_module="peru" hostmakedepends="python3-setuptools" From a1d647a9165ccae83cd98d822ed1b36ec83a5cab Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:37 -0400 Subject: [PATCH 1167/1420] persepolis: rebuild for Python 3.11 --- srcpkgs/persepolis/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/persepolis/template b/srcpkgs/persepolis/template index 81d5b3414851..c00f18876cc9 100644 --- a/srcpkgs/persepolis/template +++ b/srcpkgs/persepolis/template @@ -1,7 +1,7 @@ # Template file for 'persepolis' pkgname=persepolis version=3.2.0 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools python3-setproctitle python3-requests python3-psutil aria2 ffmpeg libnotify pulseaudio-utils youtube-dl From fdf543395f0f747efc0288dbd4b921b8818760c6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:37 -0400 Subject: [PATCH 1168/1420] pelican: rebuild for Python 3.11 --- srcpkgs/pelican/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pelican/template b/srcpkgs/pelican/template index 6bca8b41203d..4c02a4a9b850 100644 --- a/srcpkgs/pelican/template +++ b/srcpkgs/pelican/template @@ -1,7 +1,7 @@ # Template file for 'pelican' pkgname=pelican version=4.5.1 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-feedgenerator python3-Jinja2 python3-Pygments From 96ee5338194270d6b6f9210710f3e79927e88ae0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:37 -0400 Subject: [PATCH 1169/1420] peframe: rebuild for Python 3.11 --- srcpkgs/peframe/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template index 8e39757fa5e9..2c58f2a93783 100644 --- a/srcpkgs/peframe/template +++ b/srcpkgs/peframe/template @@ -1,7 +1,7 @@ # Template file for 'peframe' pkgname=peframe version=6.0.3 -revision=5 +revision=6 build_style="python3-module" hostmakedepends="python3-setuptools" depends="python3-pefile python3-magic python3-M2Crypto python3-virustotal-api From 656bfcf588ff995cdfd0e465d87bed16984e5164 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:37 -0400 Subject: [PATCH 1170/1420] pass-import: rebuild for Python 3.11 --- 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 49a1a710f924..05b93ebdd1b0 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.2 -revision=1 +revision=2 build_style=python3-module # This test requires gnome-keyring which requires running dbus make_check_args="--deselect=tests/imports/test_parse.py" From 3b3a06f3ea273a5de2d0f189cfd71d92fb015129 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:38 -0400 Subject: [PATCH 1171/1420] pass-git-helper: rebuild for Python 3.11 --- 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 863a14a28137..13f2564606e2 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=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="pass python3-xdg" From 28570f0b54b568a65bb4fb842b9f1800a535e378 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:38 -0400 Subject: [PATCH 1172/1420] papis: rebuild for Python 3.11 --- srcpkgs/papis/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/papis/template b/srcpkgs/papis/template index 9f52b2f3f713..cdc91d82b75a 100644 --- a/srcpkgs/papis/template +++ b/srcpkgs/papis/template @@ -1,7 +1,7 @@ # Template file for 'papis' pkgname=papis version=0.12 -revision=2 +revision=3 build_style=python3-module make_check_args="--deselect=tests/downloaders/test_project_euclid.py::test_1" make_check_target="papis tests" From 64e2f97a1d7c17e70c322f4f1f92547be6ce73c2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:38 -0400 Subject: [PATCH 1173/1420] pantalaimon: rebuild for Python 3.11 --- srcpkgs/pantalaimon/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pantalaimon/template b/srcpkgs/pantalaimon/template index 78970b22f632..21e33c16f848 100644 --- a/srcpkgs/pantalaimon/template +++ b/srcpkgs/pantalaimon/template @@ -1,7 +1,7 @@ # Template file for 'pantalaimon' pkgname=pantalaimon version=0.8.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-attrs python3-aiohttp python3-appdirs python3-click From 463edcc36359227013c4af7c0286d0bfe87dcee7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:38 -0400 Subject: [PATCH 1174/1420] pam_wrapper: rebuild for Python 3.11 --- 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 cea57da57f49..bc3ad1c4a39f 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.4 -revision=1 +revision=2 build_style=cmake configure_args="-DUNIT_TESTING=ON" hostmakedepends="cmake python3" From 32dcd0ee260ee8dae0147b32b8094b73d396002f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:38 -0400 Subject: [PATCH 1175/1420] othman: rebuild for Python 3.11 --- srcpkgs/othman/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/othman/template b/srcpkgs/othman/template index ef2fd1baca68..e448aeea8b32 100644 --- a/srcpkgs/othman/template +++ b/srcpkgs/othman/template @@ -1,7 +1,7 @@ # Template file for 'othman' pkgname=othman version=0.6.0 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3 ImageMagick sqlite intltool" depends="gtk+3 python3-gobject amiri-font" From ec88476a66e223fa7bdb9272926659f1d4e9cedf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:38 -0400 Subject: [PATCH 1176/1420] orca: rebuild for Python 3.11 --- srcpkgs/orca/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template index 80d7e856d358..ad4d14ce838e 100644 --- a/srcpkgs/orca/template +++ b/srcpkgs/orca/template @@ -1,7 +1,7 @@ # Template file for 'orca' pkgname=orca version=42.3 -revision=1 +revision=2 build_style=gnu-configure hostmakedepends="gettext itstool pkg-config" makedepends="at-spi2-atk-devel liblouis-devel python3-gobject-devel" From f98fd9251878b9f76d9f277e0bd9fdde96927941 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:38 -0400 Subject: [PATCH 1177/1420] openshot: rebuild for Python 3.11 --- srcpkgs/openshot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/openshot/template b/srcpkgs/openshot/template index ffc460364e40..d5c89c51d58b 100644 --- a/srcpkgs/openshot/template +++ b/srcpkgs/openshot/template @@ -1,7 +1,7 @@ # Template file for 'openshot' pkgname=openshot version=2.6.1 -revision=2 +revision=3 wrksrc="${pkgname}-qt-${version}" build_style=python3-module hostmakedepends="python3 python3-setuptools" From c3b42b92081ae752550102e2c362135314758ad4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:38 -0400 Subject: [PATCH 1178/1420] openrazer-meta: rebuild for Python 3.11 --- 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 450fb632b878..e595bd2c0440 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.4.0 -revision=1 +revision=2 wrksrc="openrazer-${version}" build_style=gnu-makefile make_install_target="setup_dkms udev_install daemon_install xdg_install From 3ae8a51988f26b18a9c8e3247322ee1afc453b1d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:38 -0400 Subject: [PATCH 1179/1420] opencamlib: rebuild for Python 3.11 --- srcpkgs/opencamlib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/opencamlib/template b/srcpkgs/opencamlib/template index 8ecfbeeac701..162a97304c26 100644 --- a/srcpkgs/opencamlib/template +++ b/srcpkgs/opencamlib/template @@ -1,7 +1,7 @@ # Template file for 'opencamlib' pkgname=opencamlib version=2019.07 -revision=5 +revision=6 build_style=cmake configure_args="-DBUILD_PY_LIB=ON -DUSE_PY_3=ON -DVERSION_STRING=${version}" hostmakedepends="python3" From df62d206fffcc830504d975643b44ac2018674ee Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:39 -0400 Subject: [PATCH 1180/1420] onboard: rebuild for Python 3.11 --- srcpkgs/onboard/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/onboard/template b/srcpkgs/onboard/template index b138fae61897..55aba665ed25 100644 --- a/srcpkgs/onboard/template +++ b/srcpkgs/onboard/template @@ -1,7 +1,7 @@ # Template file for 'onboard' pkgname=onboard version=1.4.1 -revision=10 +revision=11 build_style=python3-module hostmakedepends="intltool pkg-config python3-distutils-extra" makedepends="dconf-devel eudev-libudev-devel gtk+3-devel hunspell-devel From 9259f1069e5cd7e5f89c2a961417087074e1e7b8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:39 -0400 Subject: [PATCH 1181/1420] offlineimap: rebuild for Python 3.11 --- srcpkgs/offlineimap/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/offlineimap/template b/srcpkgs/offlineimap/template index ea68ab99738d..8c574750f002 100644 --- a/srcpkgs/offlineimap/template +++ b/srcpkgs/offlineimap/template @@ -1,7 +1,7 @@ # Template file for 'offlineimap' pkgname=offlineimap version=8.0.0 -revision=1 +revision=2 wrksrc="offlineimap3-${version}" build_style=python3-module make_check_args="--ignore test/tests/test_00_imaputil.py From 17e98e00d2eaadfcfbea427a4903f83344db4b2f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:39 -0400 Subject: [PATCH 1182/1420] obs: rebuild for Python 3.11 --- srcpkgs/obs/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/obs/template b/srcpkgs/obs/template index 2504b3692539..5f320dcb90fe 100644 --- a/srcpkgs/obs/template +++ b/srcpkgs/obs/template @@ -1,7 +1,7 @@ # Template file for 'obs' pkgname=obs version=28.1.1 -revision=1 +revision=2 archs="i686* x86_64* ppc64le* aarch64*" wrksrc="obs-studio-${version}" build_style=cmake From 4835ba24d0fb5329c45b8271d9113092994afe8e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:39 -0400 Subject: [PATCH 1183/1420] nyx: rebuild for Python 3.11 --- srcpkgs/nyx/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template index 013ae3c51be1..78b3f58ae0d3 100644 --- a/srcpkgs/nyx/template +++ b/srcpkgs/nyx/template @@ -1,7 +1,7 @@ # Template file for 'nyx' pkgname=nyx version=2.1.0 -revision=4 +revision=5 build_style=python3-module pycompile_module="nyx" hostmakedepends="python3-setuptools" From cb7147c998dadd32407fb80b54e27abb52a89c18 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:39 -0400 Subject: [PATCH 1184/1420] nicotine+: rebuild for Python 3.11 --- srcpkgs/nicotine+/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nicotine+/template b/srcpkgs/nicotine+/template index 8c2e1197a550..0321020f25d0 100644 --- a/srcpkgs/nicotine+/template +++ b/srcpkgs/nicotine+/template @@ -1,7 +1,7 @@ # Template file for 'nicotine+' pkgname=nicotine+ version=3.2.5 -revision=1 +revision=2 wrksrc="nicotine-plus-${version}" build_style=python3-module hostmakedepends="python3-setuptools gettext" From 505c83f6238e9a4b830298d398e6924374129024 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:39 -0400 Subject: [PATCH 1185/1420] newt: rebuild for Python 3.11 --- srcpkgs/newt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/newt/template b/srcpkgs/newt/template index 2a44dc7f4c66..315c1ccf678e 100644 --- a/srcpkgs/newt/template +++ b/srcpkgs/newt/template @@ -1,7 +1,7 @@ # Template file for 'newt' pkgname=newt version=0.52.21 -revision=5 +revision=6 build_style=gnu-configure hostmakedepends="python3-devel" makedepends="slang-devel popt-devel python3-devel" From 2fbfa41225f80cef42406d1e6d23631fc8400324 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:39 -0400 Subject: [PATCH 1186/1420] neovim-remote: rebuild for Python 3.11 --- 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 ffe271e263e3..c510d263ec45 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=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-neovim python3-psutil" From 53c9e9456930a0e5497b17115651413f42875ee3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:39 -0400 Subject: [PATCH 1187/1420] nemo-terminal: rebuild for Python 3.11 --- 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 87db25508dae..4c8ca615c780 100644 --- a/srcpkgs/nemo-terminal/template +++ b/srcpkgs/nemo-terminal/template @@ -1,7 +1,7 @@ # Template file for 'nemo-terminal' pkgname=nemo-terminal version=5.4.1 -revision=1 +revision=2 wrksrc="nemo-extensions-${version}" build_wrksrc=nemo-terminal build_style=python3-module From 3039ceb44e20df50fd075c756266c05fc8ae42ab Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:39 -0400 Subject: [PATCH 1188/1420] nemo-emblems: rebuild for Python 3.11 --- 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 11b312b07b98..3d2efb89416f 100644 --- a/srcpkgs/nemo-emblems/template +++ b/srcpkgs/nemo-emblems/template @@ -1,7 +1,7 @@ # Template file for 'nemo-emblems' pkgname=nemo-emblems version=5.4.1 -revision=1 +revision=2 wrksrc="nemo-extensions-${version}" build_wrksrc=nemo-emblems build_style=python3-module From b1d67fc37399cb190e19c0428e1ae02b83a7e471 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:40 -0400 Subject: [PATCH 1189/1420] nemo-compare: rebuild for Python 3.11 --- 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 011f875c8c74..f030ffa0855c 100644 --- a/srcpkgs/nemo-compare/template +++ b/srcpkgs/nemo-compare/template @@ -1,7 +1,7 @@ # Template file for 'nemo-compare' pkgname=nemo-compare version=5.4.1 -revision=1 +revision=2 wrksrc="nemo-extensions-${version}" build_wrksrc=nemo-compare build_style=python3-module From acf138e79dfd6a899feb840c23068834c5fab452 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:40 -0400 Subject: [PATCH 1190/1420] nemo-audio-tab: rebuild for Python 3.11 --- 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 58c102840c9f..c9ebbd73494a 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=5.4.1 -revision=1 +revision=2 wrksrc="nemo-extensions-${version}" build_wrksrc=nemo-audio-tab build_style=python3-module From 19b98fbf4e27db0b59c721b2eb04171d414347af Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:40 -0400 Subject: [PATCH 1191/1420] navit: rebuild for Python 3.11 --- srcpkgs/navit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/navit/template b/srcpkgs/navit/template index d59e0146f3a2..58bc4610f288 100644 --- a/srcpkgs/navit/template +++ b/srcpkgs/navit/template @@ -1,7 +1,7 @@ # Template file for 'navit' pkgname=navit version=0.5.6 -revision=2 +revision=3 build_style=cmake configure_args="-DLIBDIR=lib/navit -DSAMPLE_MAP=n -Wno-dev" hostmakedepends="pkg-config qt5-host-tools qt5-qmake" From 2b6829c09ded23672f149575ccac8891274a8f77 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:40 -0400 Subject: [PATCH 1192/1420] nautilus-python: rebuild for Python 3.11 --- 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 0b4ef4d77418..b65f4808f4f1 100644 --- a/srcpkgs/nautilus-python/template +++ b/srcpkgs/nautilus-python/template @@ -1,7 +1,7 @@ # Template file for 'nautilus-python' pkgname=nautilus-python version=1.2.3 -revision=5 +revision=6 build_style=gnu-configure configure_args="$(vopt_enable gtk_doc gtk-doc) PYTHON=python3 PYTHON_INCLUDES=-I${XBPS_CROSS_BASE}/${py3_inc} From e73652416c467862a1b70905a7011d2bffe8b22b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:40 -0400 Subject: [PATCH 1193/1420] nagstamon: rebuild for Python 3.11 --- srcpkgs/nagstamon/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template index d59b2bd4cfba..3b7598bbf474 100644 --- a/srcpkgs/nagstamon/template +++ b/srcpkgs/nagstamon/template @@ -1,7 +1,7 @@ # Template file for 'nagstamon' pkgname=nagstamon version=3.6.0 -revision=1 +revision=2 wrksrc="Nagstamon-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-keyring python3-psutil" From 5528506c7ac2bc34c36d18ce7e842ecbf2562a82 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:40 -0400 Subject: [PATCH 1194/1420] mypaint: rebuild for Python 3.11 --- srcpkgs/mypaint/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mypaint/template b/srcpkgs/mypaint/template index 2b39d66c42bd..542ce34589de 100644 --- a/srcpkgs/mypaint/template +++ b/srcpkgs/mypaint/template @@ -1,7 +1,7 @@ # Template file for 'mypaint' pkgname=mypaint version=2.0.1 -revision=2 +revision=3 build_style=python3-module pycompile_dirs="/usr/share/mypaint" hostmakedepends="swig pkg-config gettext python3-setuptools python3-numpy python3" From 7e311db2d9778ecb3e5440e8d97a24afcc844534 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:40 -0400 Subject: [PATCH 1195/1420] mymcplus: rebuild for Python 3.11 --- srcpkgs/mymcplus/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template index 230950c1589d..11a3ca5e3b9f 100644 --- a/srcpkgs/mymcplus/template +++ b/srcpkgs/mymcplus/template @@ -1,7 +1,7 @@ # Template file for 'mymcplus' pkgname=mymcplus version=3.0.5 -revision=1 +revision=2 wrksrc=${pkgname}-v${version} build_style=python3-module hostmakedepends="python3-setuptools" From 29a5ee3b89f87c52af1b10dd885834fa0bc0bea5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:40 -0400 Subject: [PATCH 1196/1420] muse: rebuild for Python 3.11 --- srcpkgs/muse/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/muse/template b/srcpkgs/muse/template index bfc011eb1037..3da24ecc4c7b 100644 --- a/srcpkgs/muse/template +++ b/srcpkgs/muse/template @@ -1,7 +1,7 @@ # Template file for 'muse' pkgname=muse version=4.1.0 -revision=1 +revision=2 build_wrksrc=src build_style=cmake build_helper=qmake From 6a94add3ed2bf9f5c50f62b6b2df0d15685b4ad5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:40 -0400 Subject: [PATCH 1197/1420] multibootusb: rebuild for Python 3.11 --- srcpkgs/multibootusb/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template index d6dc80a33902..466b25de0da1 100644 --- a/srcpkgs/multibootusb/template +++ b/srcpkgs/multibootusb/template @@ -1,7 +1,7 @@ # Template file for 'multibootusb' pkgname=multibootusb version=9.2.0 -revision=5 +revision=6 build_style=python3-module pycompile_module="scripts" hostmakedepends="python3-setuptools" From 7d0fe22162af41ed6d575e09a48a9f63f9f9b8e3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:41 -0400 Subject: [PATCH 1198/1420] mugshot: rebuild for Python 3.11 --- srcpkgs/mugshot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template index 51117b132007..e7b55cf90bb0 100644 --- a/srcpkgs/mugshot/template +++ b/srcpkgs/mugshot/template @@ -1,7 +1,7 @@ # Template file for 'mugshot' pkgname=mugshot version=0.4.3 -revision=2 +revision=3 wrksrc="${pkgname}-${pkgname}-${version}" build_style=python3-module hostmakedepends="intltool python3-distutils-extra" From 11ad94fae23bf53b0b4ff9c8710b8e8959af85d0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:41 -0400 Subject: [PATCH 1199/1420] mps-youtube: rebuild for Python 3.11 --- srcpkgs/mps-youtube/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mps-youtube/template b/srcpkgs/mps-youtube/template index 8a7aa1911359..92b190949861 100644 --- a/srcpkgs/mps-youtube/template +++ b/srcpkgs/mps-youtube/template @@ -1,7 +1,7 @@ # Template file for 'mps-youtube' pkgname=mps-youtube version=0.2.8 -revision=5 +revision=6 build_style=python3-module pycompile_module="mps_youtube" hostmakedepends="python3-setuptools" From e2cd20524579da74ae767ab9e921a1db43d68871 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:41 -0400 Subject: [PATCH 1200/1420] mpd-sima: rebuild for Python 3.11 --- 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 8785e7fd2e60..e663dbacec80 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=4 +revision=5 wrksrc="MPD_sima-${version}" build_style=python3-module pycompile_module="sima" From 10af177a55e14a32586940f7f2af7c531bf4cf43 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:41 -0400 Subject: [PATCH 1201/1420] mozo: rebuild for Python 3.11 --- srcpkgs/mozo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template index 64408791fc19..aa0212d44e75 100644 --- a/srcpkgs/mozo/template +++ b/srcpkgs/mozo/template @@ -1,7 +1,7 @@ # Template file for 'mozo' pkgname=mozo version=1.26.1 -revision=1 +revision=2 build_style=gnu-configure hostmakedepends="intltool itstool pkg-config" makedepends="glib-devel mate-menus-devel python3-gobject-devel" From e4d47b2951a60f1b8894d8f1bf829c485c78bc98 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:41 -0400 Subject: [PATCH 1202/1420] mopidy-spotify: rebuild for Python 3.11 --- srcpkgs/mopidy-spotify/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mopidy-spotify/template b/srcpkgs/mopidy-spotify/template index 6a643a90eaec..a75560133d94 100644 --- a/srcpkgs/mopidy-spotify/template +++ b/srcpkgs/mopidy-spotify/template @@ -1,7 +1,7 @@ # Template file for 'mopidy-spotify' pkgname=mopidy-spotify version=4.0.1 -revision=3 +revision=4 wrksrc="Mopidy-Spotify-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 1c984f568b2da071f380b721abd4937115e0b6bc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:41 -0400 Subject: [PATCH 1203/1420] mopidy-podcast: rebuild for Python 3.11 --- 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 057971c54be8..e4ad85c5c835 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=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="mopidy python3-cachetools python3-pykka python3-setuptools python3-uritools" From 54830cdc0521859b51fe325672869a3e4dce7182 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:41 -0400 Subject: [PATCH 1204/1420] mopidy-multisonic: rebuild for Python 3.11 --- 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 995c09070d32..65ce94d2cd6a 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=3 +revision=4 wrksrc="Mopidy-Multisonic-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 825de5cbab99fa2cb4837f4317e3b8f1a3314b1b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:41 -0400 Subject: [PATCH 1205/1420] mopidy-mpd: rebuild for Python 3.11 --- 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 e8f172a11b2f..7b4b418a5f59 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=3 +revision=4 wrksrc="Mopidy-MPD-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 0b72a3fe8c5b21169a180bc6f03430c5e409e4b7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:41 -0400 Subject: [PATCH 1206/1420] mopidy-local: rebuild for Python 3.11 --- 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 d21e0053242c..5bb27f6b97b0 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=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="mopidy python3-pykka python3-setuptools python3-uritools" From 1cde29ff797fb4be4fa080917bbe1da8ac649dda Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:42 -0400 Subject: [PATCH 1207/1420] mlt7: rebuild for Python 3.11 --- srcpkgs/mlt7/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mlt7/template b/srcpkgs/mlt7/template index 08c9b6a05052..fdd2ac4b1c4a 100644 --- a/srcpkgs/mlt7/template +++ b/srcpkgs/mlt7/template @@ -1,7 +1,7 @@ # Template file for 'mlt7' pkgname=mlt7 version=7.8.0 -revision=1 +revision=2 wrksrc="mlt-${version}" build_style=cmake configure_args="-DSWIG_PYTHON=ON" From 509141f451b9c459fac46a753359b921decb5a68 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:42 -0400 Subject: [PATCH 1208/1420] mlt: rebuild for Python 3.11 --- srcpkgs/mlt/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mlt/template b/srcpkgs/mlt/template index 857a88d3a3ce..5d00583083fc 100644 --- a/srcpkgs/mlt/template +++ b/srcpkgs/mlt/template @@ -1,7 +1,7 @@ # Template file for 'mlt' pkgname=mlt version=6.22.1 -revision=3 +revision=4 build_style=configure configure_args="--prefix=/usr --libdir=/usr/lib$XBPS_TARGET_WORDSIZE --enable-gpl --enable-gpl3 --disable-swfdec --without-kde From 2988fb685e8ea355ee868215001b8303be062901 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:42 -0400 Subject: [PATCH 1209/1420] mkchromecast: rebuild for Python 3.11 --- srcpkgs/mkchromecast/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mkchromecast/template b/srcpkgs/mkchromecast/template index 306abdb6613f..36392a10c38d 100644 --- a/srcpkgs/mkchromecast/template +++ b/srcpkgs/mkchromecast/template @@ -1,7 +1,7 @@ # Template file for 'mkchromecast' pkgname=mkchromecast version=0.3.8.1 -revision=5 +revision=6 pycompile_dirs="/usr/share/mkchromecast/mkchromecast" depends="python3-Flask python3-netifaces python3-setuptools python3-requests python3-mutagen python3-psutil python3-PyQt5 python3-SoCo python3-chromecast From 66a6cc4ae8cc1045b8f7e525d6b3939d8c244ecf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:42 -0400 Subject: [PATCH 1210/1420] mitmproxy: rebuild for Python 3.11 --- srcpkgs/mitmproxy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mitmproxy/template b/srcpkgs/mitmproxy/template index 9ddf143084a0..ea33d3571a35 100644 --- a/srcpkgs/mitmproxy/template +++ b/srcpkgs/mitmproxy/template @@ -1,7 +1,7 @@ # Template file for 'mitmproxy' pkgname=mitmproxy version=8.1.1 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-Brotli python3-Flask python3-asgiref python3-blinker python3-certifi From de7988d9238ab51400cae761ab136ec9d69142a7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:42 -0400 Subject: [PATCH 1211/1420] mirage: rebuild for Python 3.11 --- srcpkgs/mirage/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mirage/template b/srcpkgs/mirage/template index 2562d4a23a87..bfc7d8c5110d 100644 --- a/srcpkgs/mirage/template +++ b/srcpkgs/mirage/template @@ -1,7 +1,7 @@ # Template file for 'mirage' pkgname=mirage version=0.11.1 -revision=1 +revision=2 build_style="python3-module" hostmakedepends="python3-setuptools gettext glib-devel" makedepends="python3-devel libX11-devel" From 16807b02d877cc788ef1a670323ac0415c4a9623 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:42 -0400 Subject: [PATCH 1212/1420] mininet: rebuild for Python 3.11 --- srcpkgs/mininet/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mininet/template b/srcpkgs/mininet/template index 2ea62ca31ead..73e2eb9052f3 100644 --- a/srcpkgs/mininet/template +++ b/srcpkgs/mininet/template @@ -1,7 +1,7 @@ # Template file for 'mininet' pkgname=mininet version=2.3.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="help2man python3-setuptools" depends="bash ethtool inetutils-telnet iperf iproute2 iputils libcgroup-utils From 5f5cc1eb78a0e78e4cadf5a56a97bb9a2783847e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:42 -0400 Subject: [PATCH 1213/1420] minigalaxy: rebuild for Python 3.11 --- srcpkgs/minigalaxy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/minigalaxy/template b/srcpkgs/minigalaxy/template index f6c0ea792bfa..09885bb5afab 100644 --- a/srcpkgs/minigalaxy/template +++ b/srcpkgs/minigalaxy/template @@ -1,7 +1,7 @@ # Template file for 'minigalaxy' pkgname=minigalaxy version=1.2.2 -revision=1 +revision=2 build_style=python3-module hostmakedepends="gettext python3-setuptools" depends="hicolor-icon-theme webkit2gtk python3-gobject python3-requests" From 3b05fe070d9ea0125ff346f509abb37af37ffeb5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:42 -0400 Subject: [PATCH 1214/1420] mimeo: rebuild for Python 3.11 --- srcpkgs/mimeo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template index d64a76e69c9c..2db61c614e50 100644 --- a/srcpkgs/mimeo/template +++ b/srcpkgs/mimeo/template @@ -1,7 +1,7 @@ # Template file for 'mimeo' pkgname=mimeo version=2022.7 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3" depends="python3-xdg" From 14d835ef3a13e2caebd90e3609bc129891e97722 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:42 -0400 Subject: [PATCH 1215/1420] meson-cmake-wrapper: rebuild for Python 3.11 --- 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 11e1cd50209c..15baea5b1ebc 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=4 +revision=5 build_style=python3-module pycompile_module="mcw" hostmakedepends="python3-setuptools" From 695c696ac0530a18572b4d38249edbb2de0f8baa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:42 -0400 Subject: [PATCH 1216/1420] menumaker: rebuild for Python 3.11 --- srcpkgs/menumaker/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/menumaker/template b/srcpkgs/menumaker/template index db15e5a366f6..9e53fa76cffe 100644 --- a/srcpkgs/menumaker/template +++ b/srcpkgs/menumaker/template @@ -1,7 +1,7 @@ # Template file for 'menumaker' pkgname=menumaker version=0.99.14 -revision=1 +revision=2 build_style=gnu-configure pycompile_dirs="/usr/share/menumaker" hostmakedepends="python3" From dfeed95df97e924ee9b5cc1a208e0cded328430b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:43 -0400 Subject: [PATCH 1217/1420] menulibre: rebuild for Python 3.11 --- srcpkgs/menulibre/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template index 87b7054aba71..2fd709802059 100644 --- a/srcpkgs/menulibre/template +++ b/srcpkgs/menulibre/template @@ -1,7 +1,7 @@ # Template file for 'menulibre' pkgname=menulibre version=2.2.1 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-distutils-extra intltool" depends="gnome-menus gobject-introspection gsettings-desktop-schemas gtk+3 From b2a5b27e24399c57ff3ffd6021d35de7ab7e6125 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:43 -0400 Subject: [PATCH 1218/1420] mcomix: rebuild for Python 3.11 --- srcpkgs/mcomix/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mcomix/template b/srcpkgs/mcomix/template index 3dec47908693..5958942463d0 100644 --- a/srcpkgs/mcomix/template +++ b/srcpkgs/mcomix/template @@ -1,7 +1,7 @@ # Template file for 'mcomix' pkgname=mcomix version=2.0.2 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-gobject python3-cairo python3-Pillow xdg-utils" From c6d4f7281c46ff4c72dbc8cedc7401216260b16f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:43 -0400 Subject: [PATCH 1219/1420] mcg: rebuild for Python 3.11 --- srcpkgs/mcg/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mcg/template b/srcpkgs/mcg/template index 643feda78266..1c5b37b318ea 100644 --- a/srcpkgs/mcg/template +++ b/srcpkgs/mcg/template @@ -1,7 +1,7 @@ # Template file for 'mcg' pkgname=mcg version=2.1 -revision=3 +revision=4 wrksrc=${pkgname}-v${version} build_style=python3-module hostmakedepends="python3-setuptools glib-devel" From f8e0ec4c47a1c9f7ac187cf3630903d90c084ac2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:43 -0400 Subject: [PATCH 1220/1420] mate-tweak: rebuild for Python 3.11 --- 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 fd0dbd0747cf..511a09af4b39 100644 --- a/srcpkgs/mate-tweak/template +++ b/srcpkgs/mate-tweak/template @@ -1,7 +1,7 @@ # Template file for 'mate-tweak' pkgname=mate-tweak version=21.10.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools" depends="mate-panel python3-gobject python3-psutil python3-setproctitle From 5589fe6f3753930afb8669db7a94da5844e8b885 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:43 -0400 Subject: [PATCH 1221/1420] mate-menu: rebuild for Python 3.11 --- 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 bf85817b7717..d1405eb7338b 100644 --- a/srcpkgs/mate-menu/template +++ b/srcpkgs/mate-menu/template @@ -1,7 +1,7 @@ # Template file for 'mate-menu' pkgname=mate-menu version=20.04.3 -revision=4 +revision=5 build_style=python3-module hostmakedepends="intltool python3-distutils-extra python3-setuptools" depends="mate-panel python3-gobject python3-setproctitle python3-xdg python3-xlib" From b226aef0f53763ec9983f09e8d587953684d646d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:43 -0400 Subject: [PATCH 1222/1420] mat2: rebuild for Python 3.11 --- srcpkgs/mat2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/mat2/template b/srcpkgs/mat2/template index 30e222ddbcca..3bb4b183036b 100644 --- a/srcpkgs/mat2/template +++ b/srcpkgs/mat2/template @@ -1,7 +1,7 @@ # Template file for 'mat2' pkgname=mat2 version=0.13.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="bubblewrap python3-cairo python3-gobject python3-mutagen poppler-glib From ecfc13bac7e54778a34cd02b7f74a88ba1037d12 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:43 -0400 Subject: [PATCH 1223/1420] manuskript: rebuild for Python 3.11 --- srcpkgs/manuskript/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/manuskript/template b/srcpkgs/manuskript/template index bab0ad0bc53e..67ee91d3428b 100644 --- a/srcpkgs/manuskript/template +++ b/srcpkgs/manuskript/template @@ -1,7 +1,7 @@ # Template file for 'manuskript' pkgname=manuskript version=0.14.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 83c117a8dd18d14178957cba15eb1481a760d840 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:43 -0400 Subject: [PATCH 1224/1420] mailnag-goa-plugin: rebuild for Python 3.11 --- 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 c463d27970a2..1a29ecd18a48 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=2 +revision=3 build_style=python3-module hostmakedepends="python3" depends="mailnag gnome-online-accounts" From 170805b570b9288d5c4f8029e57d2f2e6b58166b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:43 -0400 Subject: [PATCH 1225/1420] magic-wormhole: rebuild for Python 3.11 --- 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 23f3853826db..18a4a9418b2b 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.12.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3 python3-setuptools" depends="python3-autobahn python3-cffi python3-click python3-humanize From 184627ca43f3bde176587d809ba4b4a1906e0ff3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:44 -0400 Subject: [PATCH 1226/1420] lutris: rebuild for Python 3.11 --- srcpkgs/lutris/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template index 5156d545e767..3a70a7f34e74 100644 --- a/srcpkgs/lutris/template +++ b/srcpkgs/lutris/template @@ -1,7 +1,7 @@ # Template file for 'lutris' pkgname=lutris version=0.5.11 -revision=2 +revision=3 build_style=meson hostmakedepends="gettext python3-setuptools python3-gobject gtk+3-devel" depends="python3-dbus python3-gobject python3-yaml python3-evdev python3-Pillow From 5484e795f9f9b367c61b80097d81b70b71f1a5a3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:44 -0400 Subject: [PATCH 1227/1420] lollypop: rebuild for Python 3.11 --- srcpkgs/lollypop/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template index 497e3a059892..5beb42c689ff 100644 --- a/srcpkgs/lollypop/template +++ b/srcpkgs/lollypop/template @@ -1,7 +1,7 @@ # Template file for 'lollypop' pkgname=lollypop version=1.4.35 -revision=1 +revision=2 build_style=meson hostmakedepends="glib-devel gobject-introspection intltool itstool pkg-config" makedepends="gtk+3-devel libsoup-devel python3-gobject-devel python3-devel From 7ba07582f06df9068cf5bdc8b5547e3c2123560d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:44 -0400 Subject: [PATCH 1228/1420] litecli: rebuild for Python 3.11 --- srcpkgs/litecli/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/litecli/template b/srcpkgs/litecli/template index 015bce6f9b8b..2d94d3422c73 100644 --- a/srcpkgs/litecli/template +++ b/srcpkgs/litecli/template @@ -1,7 +1,7 @@ # Template file for 'litecli' pkgname=litecli version=1.8.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-click python3-Pygments python3-prompt_toolkit python3-sqlparse python3-configobj python3-cli_helpers" From 7e258437cde033e22b5dd98f85f1ba7b0fdf660c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 4 Oct 2022 20:08:48 -0400 Subject: [PATCH 1229/1420] linux-tools: rebuild for Python 3.11 --- 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 b55269b55522..e14ac8987a22 100644 --- a/srcpkgs/linux-tools/template +++ b/srcpkgs/linux-tools/template @@ -1,7 +1,7 @@ # Template file for 'linux-tools' pkgname=linux-tools version=5.10.4 -revision=7 +revision=8 wrksrc="linux-${version}" build_style=meta hostmakedepends="asciidoc automake flex gettext libtool perl python3 From 8561e17482139916c0dac70ab554d4499fa51576 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:44 -0400 Subject: [PATCH 1230/1420] lightdm-gtk-greeter-settings: rebuild for Python 3.11 --- 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 130fc3516ad8..fbdc3a1b9583 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=4 +revision=5 build_style=python3-module hostmakedepends="python3-distutils-extra intltool" depends="lightdm-gtk3-greeter python3-gobject" From 4a1af1c909c569246f2c23f7fb1a45386278cf31 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:44 -0400 Subject: [PATCH 1231/1420] libvoikko: rebuild for Python 3.11 --- srcpkgs/libvoikko/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libvoikko/template b/srcpkgs/libvoikko/template index 94427e1b1d9c..026b28582d1a 100644 --- a/srcpkgs/libvoikko/template +++ b/srcpkgs/libvoikko/template @@ -1,7 +1,7 @@ # Template file for 'libvoikko' pkgname=libvoikko version=4.3.1 -revision=1 +revision=2 build_style=gnu-configure configure_args="--enable-hfst=false --with-dictionary-path=/usr/share/voikko" pycompile_module="libvoikko.py" From aff1f0c836d4362d14146dc46be9dadf542a941e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:44 -0400 Subject: [PATCH 1232/1420] libsmbios: rebuild for Python 3.11 --- srcpkgs/libsmbios/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libsmbios/template b/srcpkgs/libsmbios/template index 2db17e7b87a6..8689bba677b0 100644 --- a/srcpkgs/libsmbios/template +++ b/srcpkgs/libsmbios/template @@ -1,7 +1,7 @@ # Template file for 'libsmbios' pkgname=libsmbios version=2.4.3 -revision=3 +revision=4 build_style=gnu-configure configure_args="--sbindir=/usr/bin --disable-static" hostmakedepends="automake doxygen gettext gettext-devel help2man libtool pkg-config" From 354894d03f66816022a199a3fd51985ae5e4c54c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:44 -0400 Subject: [PATCH 1233/1420] libsigrokdecode: rebuild for Python 3.11 --- srcpkgs/libsigrokdecode/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libsigrokdecode/template b/srcpkgs/libsigrokdecode/template index a5cceddf7ac5..9201aa03911d 100644 --- a/srcpkgs/libsigrokdecode/template +++ b/srcpkgs/libsigrokdecode/template @@ -1,7 +1,7 @@ # Template file for 'libsigrokdecode' pkgname=libsigrokdecode version=0.5.3 -revision=6 +revision=7 build_style=gnu-configure hostmakedepends="pkg-config python3 autoconf automake" makedepends="glib-devel python3-devel" From c5b806180d014916f0a0601f26b016f6483bcc9c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:44 -0400 Subject: [PATCH 1234/1420] libreoffice: rebuild for Python 3.11 --- srcpkgs/libreoffice/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template index 27b72eb2dbeb..7d1004672fa3 100644 --- a/srcpkgs/libreoffice/template +++ b/srcpkgs/libreoffice/template @@ -1,7 +1,7 @@ # Template file for 'libreoffice' pkgname=libreoffice version=7.4.2.3 -revision=1 +revision=2 build_style=meta make_build_target="build" nocross="Several dependencies are nocross=yes" From a77fa1ea176a2fab16f34451794722aedb0af11d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:45 -0400 Subject: [PATCH 1235/1420] libnvme: rebuild for Python 3.11 --- srcpkgs/libnvme/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libnvme/template b/srcpkgs/libnvme/template index 56fc82e44277..ea9de2f2f1f7 100644 --- a/srcpkgs/libnvme/template +++ b/srcpkgs/libnvme/template @@ -1,7 +1,7 @@ # Template file for 'libnvme' pkgname=libnvme version=1.1 -revision=1 +revision=2 build_style=meson configure_args="-Ddocs=man" hostmakedepends="pkg-config swig" From dcdc6288fe713a1b852218a34019dde142cf1536 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:45 -0400 Subject: [PATCH 1236/1420] libimobiledevice: rebuild for Python 3.11 --- srcpkgs/libimobiledevice/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libimobiledevice/template b/srcpkgs/libimobiledevice/template index aeb259d8da98..453e42f68594 100644 --- a/srcpkgs/libimobiledevice/template +++ b/srcpkgs/libimobiledevice/template @@ -1,7 +1,7 @@ # Template file for 'libimobiledevice' pkgname=libimobiledevice version=1.3.0 -revision=3 +revision=4 build_style=gnu-configure hostmakedepends="automake libtool pkgconf python3-Cython" makedepends="python3-devel libglib-devel openssl-devel From fada1392a690b3681c58a2bfa6fa75d27a987004 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:45 -0400 Subject: [PATCH 1237/1420] libffado: rebuild for Python 3.11 --- srcpkgs/libffado/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libffado/template b/srcpkgs/libffado/template index 9523835ae179..6f315b7639d8 100644 --- a/srcpkgs/libffado/template +++ b/srcpkgs/libffado/template @@ -1,7 +1,7 @@ # Template file for 'libffado' pkgname=libffado version=2.4.6 -revision=1 +revision=2 build_style=scons scons_use_destdir=yes make_build_args="PREFIX=/usr MANDIR=/usr/share/man From e3b23c8026c90cf3eb74fdac1196c84d094758d1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:45 -0400 Subject: [PATCH 1238/1420] libcaca: rebuild for Python 3.11 --- srcpkgs/libcaca/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libcaca/template b/srcpkgs/libcaca/template index 6bf452268258..56df4f77fad0 100644 --- a/srcpkgs/libcaca/template +++ b/srcpkgs/libcaca/template @@ -1,7 +1,7 @@ # Template file for 'libcaca' pkgname=libcaca version=0.99.beta19 -revision=11 +revision=12 build_style=gnu-configure configure_args="$(vopt_enable x11)" hostmakedepends="libtool automake pkg-config" From 3e241f318d2e79ed9b50c61e42a1ec2e4b2bc92e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:45 -0400 Subject: [PATCH 1239/1420] libblockdev: rebuild for Python 3.11 --- srcpkgs/libblockdev/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/libblockdev/template b/srcpkgs/libblockdev/template index 321736e4f059..b857dd3b4678 100644 --- a/srcpkgs/libblockdev/template +++ b/srcpkgs/libblockdev/template @@ -1,7 +1,7 @@ # Template file for 'libblockdev' pkgname=libblockdev version=2.26 -revision=1 +revision=2 build_style=gnu-configure hostmakedepends="pkg-config python3" makedepends="cryptsetup-devel device-mapper-devel dmraid-devel libbytesize-devel From 829f1d604399b6f71b23807d6e5674be8b8df6b9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:45 -0400 Subject: [PATCH 1240/1420] libaccounts-glib: rebuild for Python 3.11 --- 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 9b86ed45ed91..4815ba6a01ab 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.24 -revision=5 +revision=6 build_style=meson build_helper="gir" hostmakedepends="gtk-doc pkg-config python3-gobject-devel From 84a41c7b1066236dc4b129addfaeff63b04a2f0a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:45 -0400 Subject: [PATCH 1241/1420] lfm: rebuild for Python 3.11 --- srcpkgs/lfm/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template index aaaf6f3e344c..5e055fc89d91 100644 --- a/srcpkgs/lfm/template +++ b/srcpkgs/lfm/template @@ -1,7 +1,7 @@ # Template file for 'lfm' pkgname=lfm version=3.1 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3" From 4c37e74f87168d7aafcb1c70fcb938a9aa4b47f7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:45 -0400 Subject: [PATCH 1242/1420] legendary: rebuild for Python 3.11 --- srcpkgs/legendary/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/legendary/template b/srcpkgs/legendary/template index 6143c1f5cf43..16c750b028fa 100644 --- a/srcpkgs/legendary/template +++ b/srcpkgs/legendary/template @@ -1,7 +1,7 @@ # Template file for 'legendary' pkgname=legendary version=0.20.29 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests" From d2858b10e80d2cbebeef3999424a5b4b666547ff Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 4 Oct 2022 20:08:47 -0400 Subject: [PATCH 1243/1420] kvirc: rebuild for Python 3.11 --- srcpkgs/kvirc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kvirc/template b/srcpkgs/kvirc/template index bb19b773097f..fba692c9d969 100644 --- a/srcpkgs/kvirc/template +++ b/srcpkgs/kvirc/template @@ -1,7 +1,7 @@ # Template file for 'kvirc' pkgname=kvirc version=5.0.0 -revision=10 +revision=11 wrksrc="KVIrc-$version" build_style=cmake configure_args="-DWANT_ENV_FLAGS=1 -DWANT_KDE=0" From f0c4f2255ab0325395157b946ac84ab06a560bf3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:46 -0400 Subject: [PATCH 1244/1420] kupfer: rebuild for Python 3.11 --- srcpkgs/kupfer/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kupfer/template b/srcpkgs/kupfer/template index 61f4e119c18c..8919323bb671 100644 --- a/srcpkgs/kupfer/template +++ b/srcpkgs/kupfer/template @@ -1,7 +1,7 @@ # Template file for 'kupfer' pkgname=kupfer version=321 -revision=2 +revision=3 wrksrc="${pkgname}-v${version}" build_style=waf3 pycompile_dirs="usr/share/kupfer/kupfer" From 62063add0c061b24c3d5f0bf896b3dbaa28cd53b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:46 -0400 Subject: [PATCH 1245/1420] krita: rebuild for Python 3.11 --- srcpkgs/krita/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/krita/template b/srcpkgs/krita/template index 081da6334b51..0ad47a7fb9ef 100644 --- a/srcpkgs/krita/template +++ b/srcpkgs/krita/template @@ -1,7 +1,7 @@ # Template file for 'krita' pkgname=krita version=5.0.8 -revision=1 +revision=2 build_style=cmake configure_args="-Wno-dev -DBUILD_TESTING=OFF" hostmakedepends="extra-cmake-modules gettext pkg-config python3 From 1626af11050d5abb5dd0492faa9028a17b6d834c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:46 -0400 Subject: [PATCH 1246/1420] kore: rebuild for Python 3.11 --- srcpkgs/kore/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kore/template b/srcpkgs/kore/template index 715f92118e9d..0927bc637dc7 100644 --- a/srcpkgs/kore/template +++ b/srcpkgs/kore/template @@ -1,7 +1,7 @@ # Template file for 'kore' pkgname=kore version=4.2.3 -revision=1 +revision=2 # arch specific seccomp stuff archs="x86_64* aarch64* ppc64*" build_style=gnu-makefile From 22eaae49b9960755f9d749a2007dddab90b495aa Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:46 -0400 Subject: [PATCH 1247/1420] kodi: rebuild for Python 3.11 --- srcpkgs/kodi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kodi/template b/srcpkgs/kodi/template index 65b515016585..5f6d852b1710 100644 --- a/srcpkgs/kodi/template +++ b/srcpkgs/kodi/template @@ -1,7 +1,7 @@ # Template file for 'kodi' pkgname=kodi version=19.4 -revision=4 +revision=5 _codename="Matrix" wrksrc="xbmc-${version}-${_codename}" build_style=cmake From fca6ade4e8cef23ace886c621824feeeb834f3b5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:46 -0400 Subject: [PATCH 1248/1420] kmymoney: rebuild for Python 3.11 --- srcpkgs/kmymoney/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kmymoney/template b/srcpkgs/kmymoney/template index 731454c4edf8..6e87ae96e744 100644 --- a/srcpkgs/kmymoney/template +++ b/srcpkgs/kmymoney/template @@ -1,7 +1,7 @@ # Template file for 'kmymoney' pkgname=kmymoney version=5.1.3 -revision=1 +revision=2 build_style=cmake configure_args="-DDESKTOPTOJSON_EXECUTABLE=/usr/bin/desktoptojson -DBUILD_TESTING=OFF" From 14ebb9ff51841c85496d0aee84aaf1c554c47956 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:46 -0400 Subject: [PATCH 1249/1420] kitty: rebuild for Python 3.11 --- srcpkgs/kitty/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template index cff8186af95d..9893313ce079 100644 --- a/srcpkgs/kitty/template +++ b/srcpkgs/kitty/template @@ -1,7 +1,7 @@ # Template file for 'kitty' pkgname=kitty version=0.26.3 -revision=1 +revision=2 pycompile_dirs="usr/lib/kitty" hostmakedepends="pkg-config python3 wayland-devel wayland-protocols" makedepends="gettext-devel glfw-devel harfbuzz-devel libxkbcommon-devel From 2956f0e9a66f5ee26a69bd9dca62a76ea4ed2b3a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:46 -0400 Subject: [PATCH 1250/1420] kig: rebuild for Python 3.11 --- srcpkgs/kig/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kig/template b/srcpkgs/kig/template index 49b55e87dc37..a0fecfd84c9e 100644 --- a/srcpkgs/kig/template +++ b/srcpkgs/kig/template @@ -1,7 +1,7 @@ # Template file for 'kig' pkgname=kig version=22.04.3 -revision=3 +revision=4 build_style=cmake hostmakedepends="extra-cmake-modules kcoreaddons kdoctools gettext pkg-config qt5-host-tools qt5-qmake" From 49fe1b4f3b5ac1a3195e56aeb28fd9087c3f3b6d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:46 -0400 Subject: [PATCH 1251/1420] kicad: rebuild for Python 3.11 --- srcpkgs/kicad/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kicad/template b/srcpkgs/kicad/template index 23b9ad9418d4..4db59d0bdd22 100644 --- a/srcpkgs/kicad/template +++ b/srcpkgs/kicad/template @@ -1,7 +1,7 @@ # Template file for 'kicad' pkgname=kicad version=6.0.7 -revision=1 +revision=2 build_style=cmake build_helper=cmake-wxWidgets-gtk3 configure_args="-DKICAD_SCRIPTING_WXPYTHON=ON From fbfd54e9be2b006853ab02c57b5fc703dfb13df9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:46 -0400 Subject: [PATCH 1252/1420] khard: rebuild for Python 3.11 --- srcpkgs/khard/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template index b3764e31d4a3..3f8ec969adf8 100644 --- a/srcpkgs/khard/template +++ b/srcpkgs/khard/template @@ -1,7 +1,7 @@ # Template file for 'khard' pkgname=khard version=0.17.0 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="python3-setuptools python3-atomicwrites python3-configobj From 46b2da5ada3ae89be0813a608fe8273b5e244bf6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:47 -0400 Subject: [PATCH 1253/1420] khal: rebuild for Python 3.11 --- srcpkgs/khal/template | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template index d4812abb9772..d5f991e7f0fd 100644 --- a/srcpkgs/khal/template +++ b/srcpkgs/khal/template @@ -1,7 +1,7 @@ # Template file for 'khal' pkgname=khal version=0.10.5 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools python3-Sphinx python3-sphinxcontrib python3-click python3-click-log python3-configobj python3-dateutil @@ -28,12 +28,18 @@ pre_build() { post_install() { vlicense COPYING + + local _pypath="${DESTDIR}/${py3_sitelib}" + if [ "$CROSS_BUILD" ]; then + _pypath="${_pypath}:${XBPS_CROSS_BASE}/${py3_lib}" + fi + for sh in bash fish zsh; do - env PYTHONPATH=$DESTDIR/$py3_sitelib _KHAL_COMPLETE="${sh}_source" $DESTDIR/usr/bin/khal > "khal.${sh}" + PYTHONPATH="${_pypath}" _KHAL_COMPLETE="${sh}_source" $DESTDIR/usr/bin/khal > "khal.${sh}" vcompletion "khal.${sh}" $sh done vsconf khal.conf.sample cd doc/ - PYTHONPATH=$DESTDIR/$py3_sitelib make man + PYTHONPATH="${_pypath}" make man vman build/man/khal.1 } From f85051b786c932bd30c55a31a71e7d45bc70ae83 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:47 -0400 Subject: [PATCH 1254/1420] kdevelop-python: rebuild for Python 3.11 --- srcpkgs/kdevelop-python/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kdevelop-python/template b/srcpkgs/kdevelop-python/template index 7032a51085fb..0939345a7a6c 100644 --- a/srcpkgs/kdevelop-python/template +++ b/srcpkgs/kdevelop-python/template @@ -1,7 +1,7 @@ # Template file for 'kdevelop-python' pkgname=kdevelop-python version=5.6.2 -revision=1 +revision=2 wrksrc="kdev-python-${version}" build_style=cmake configure_args="-DBUILD_TESTING=OFF" From c00af308d21ff63d742c572bcb6a2965924db03f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:47 -0400 Subject: [PATCH 1255/1420] kapidox: rebuild for Python 3.11 --- srcpkgs/kapidox/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kapidox/template b/srcpkgs/kapidox/template index af19c80c86f4..5300b1945bd9 100644 --- a/srcpkgs/kapidox/template +++ b/srcpkgs/kapidox/template @@ -1,7 +1,7 @@ # Template file for 'kapidox' pkgname=kapidox version=5.99.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3 python3-setuptools" makedepends="python3-Jinja2 python3-yaml" From 7b8ab874e0c0037881f593b74191178698ebc50e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:47 -0400 Subject: [PATCH 1256/1420] jupyterlab: rebuild for Python 3.11 --- srcpkgs/jupyterlab/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/jupyterlab/template b/srcpkgs/jupyterlab/template index 330d959bc154..bf9ab2c293da 100644 --- a/srcpkgs/jupyterlab/template +++ b/srcpkgs/jupyterlab/template @@ -1,7 +1,7 @@ # Template file for 'jupyterlab' pkgname=jupyterlab version=3.2.8 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-jupyterlab_server nodejs python3-nbclassic From 7df5dbacdbc8b07ab06d2fb124c8289b82512052 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:47 -0400 Subject: [PATCH 1257/1420] jrnl: rebuild for Python 3.11 --- srcpkgs/jrnl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template index 439e376a5ae2..d8158e5fb95f 100644 --- a/srcpkgs/jrnl/template +++ b/srcpkgs/jrnl/template @@ -1,7 +1,7 @@ # Template file for 'jrnl' pkgname=jrnl version=3.2 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-poetry-core" depends="python3-ansiwrap python3-colorama python3-cryptography From 4b5cdcaeb7ee2c5317f93b9aabc34e91446ea4a8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:47 -0400 Subject: [PATCH 1258/1420] jc: rebuild for Python 3.11 --- srcpkgs/jc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/jc/template b/srcpkgs/jc/template index 3904a9449f8b..1a34b441d4f6 100644 --- a/srcpkgs/jc/template +++ b/srcpkgs/jc/template @@ -1,7 +1,7 @@ # Template file for 'jc' pkgname=jc version=1.22.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-Pygments python3-ruamel.yaml python3-xmltodict" From aeec6b9cef2aae979c6206c741a0d29c519ad982 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:47 -0400 Subject: [PATCH 1259/1420] jack_mixer: rebuild for Python 3.11 --- 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 c0576b8d9132..b012cd8dfac3 100644 --- a/srcpkgs/jack_mixer/template +++ b/srcpkgs/jack_mixer/template @@ -1,7 +1,7 @@ # Template file for 'jack_mixer' pkgname=jack_mixer version=17 -revision=1 +revision=2 build_style=meson configure_args="-Dcheck-py-modules=false" hostmakedepends="gettext pkg-config python3-Cython" From ae5231cef9a625a9425cf7071f483c5afdea9e4a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:47 -0400 Subject: [PATCH 1260/1420] ite8291r3-ctl: rebuild for Python 3.11 --- 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 e147c6c12b34..a444d04fae8d 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=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-usb python3-xlib python3-Pillow" From 9190187dfe7d7710bf3aeb56a9549de85de37175 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:47 -0400 Subject: [PATCH 1261/1420] iotop: rebuild for Python 3.11 --- srcpkgs/iotop/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template index 7119d9420dcb..e6462af8657e 100644 --- a/srcpkgs/iotop/template +++ b/srcpkgs/iotop/template @@ -1,7 +1,7 @@ # Template file for 'iotop' pkgname=iotop version=0.6 -revision=9 +revision=10 build_style=python3-module hostmakedepends="python3" depends="${hostmakedepends}" From eefd833f3166fd65b18e0089cd7eae7c84ae10ad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:47 -0400 Subject: [PATCH 1262/1420] instaloader: rebuild for Python 3.11 --- srcpkgs/instaloader/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/instaloader/template b/srcpkgs/instaloader/template index 9c5bed15f2ea..668a541f8294 100644 --- a/srcpkgs/instaloader/template +++ b/srcpkgs/instaloader/template @@ -1,7 +1,7 @@ # Template file for 'instaloader' pkgname=instaloader version=4.9 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests" From e0fed947e50bec6d50a123c059b534cc1e6fbc41 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:48 -0400 Subject: [PATCH 1263/1420] impacket: rebuild for Python 3.11 --- srcpkgs/impacket/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/impacket/template b/srcpkgs/impacket/template index 42c058f9d464..6f27bb93ff90 100644 --- a/srcpkgs/impacket/template +++ b/srcpkgs/impacket/template @@ -1,7 +1,7 @@ # Template file for 'impacket' pkgname=impacket version=0.10.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-future python3-six python3-chardet python3-pyasn1 From 9cb399d488024a97f396ee915f104f344f5fbc83 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:48 -0400 Subject: [PATCH 1264/1420] img2pdf: rebuild for Python 3.11 --- srcpkgs/img2pdf/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/img2pdf/template b/srcpkgs/img2pdf/template index d3b30d5af5da..fa0cddcee186 100644 --- a/srcpkgs/img2pdf/template +++ b/srcpkgs/img2pdf/template @@ -1,7 +1,7 @@ # Template file for 'img2pdf' pkgname=img2pdf version=0.4.4 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-pikepdf python3-setuptools" depends="colord python3-pdfrw python3-pikepdf python3-Pillow python3-tkinter" From 277115fd38a8a9e5eab882ecf67feb019be7c7ec Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:48 -0400 Subject: [PATCH 1265/1420] idjc: rebuild for Python 3.11 --- srcpkgs/idjc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/idjc/template b/srcpkgs/idjc/template index ddabff2a4e74..df60318b3db9 100644 --- a/srcpkgs/idjc/template +++ b/srcpkgs/idjc/template @@ -1,7 +1,7 @@ # Template file for 'idjc' pkgname=idjc version=0.9.1 -revision=2 +revision=3 build_style=gnu-configure hostmakedepends="pkg-config git python3 automake gettext-devel libtool" makedepends="libvorbis-devel libogg-devel jack-devel libsamplerate-devel From 18338bfc8bacb51d91bc2b6978047c6d5ab101f4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:48 -0400 Subject: [PATCH 1266/1420] icdiff: rebuild for Python 3.11 --- srcpkgs/icdiff/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template index 14f656a597bf..462f1f7e5e10 100644 --- a/srcpkgs/icdiff/template +++ b/srcpkgs/icdiff/template @@ -1,7 +1,7 @@ # Template file for 'icdiff' pkgname=icdiff version=2.0.5 -revision=1 +revision=2 wrksrc="${pkgname}-release-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From bd12c959766cf22cb48719bf79ed7862deaafae7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:48 -0400 Subject: [PATCH 1267/1420] ibus: rebuild for Python 3.11 --- srcpkgs/ibus/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ibus/template b/srcpkgs/ibus/template index 28408f6a3383..77a7a06a3037 100644 --- a/srcpkgs/ibus/template +++ b/srcpkgs/ibus/template @@ -1,7 +1,7 @@ # Template file for 'ibus' pkgname=ibus version=1.5.27 -revision=1 +revision=2 build_style=gnu-configure build_helper="gir" configure_args="--enable-ui --enable-gtk3 --enable-gtk4 From 8eb34b17d5c2bf3e98d659a0d09db0dedb9ef32f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:48 -0400 Subject: [PATCH 1268/1420] i2c-tools: rebuild for Python 3.11 --- 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 1f0b2bcd1f6b..b07eedeb0f31 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.3 -revision=3 +revision=4 build_style=gnu-makefile build_helper=python3 make_build_args="EXTRA=py-smbus" From 3b53a64e48ebfc829fa35277699b4463cf84a1c7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:48 -0400 Subject: [PATCH 1269/1420] hugin: rebuild for Python 3.11 --- srcpkgs/hugin/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hugin/template b/srcpkgs/hugin/template index 72e1439d9933..fe335e8f1709 100644 --- a/srcpkgs/hugin/template +++ b/srcpkgs/hugin/template @@ -1,7 +1,7 @@ # Template file for 'hugin' pkgname=hugin version=2021.0.0 -revision=3 +revision=4 build_style=cmake build_helper=cmake-wxWidgets-gtk3 pycompile_dirs="usr/share/hugin/data/plugins usr/share/hugin/data/plugins-templates" From 59c77df5b445268fd8fc8d2cda8dc5e9a3cce140 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:48 -0400 Subject: [PATCH 1270/1420] httpie: rebuild for Python 3.11 --- srcpkgs/httpie/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template index 7cd6474db6bb..d2dfeb5d569a 100644 --- a/srcpkgs/httpie/template +++ b/srcpkgs/httpie/template @@ -1,7 +1,7 @@ # Template file for 'httpie' pkgname=httpie version=3.2.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-requests python3-requests-toolbelt From f812ef8d34ea9543d62b8967a29f0c66454872a1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:48 -0400 Subject: [PATCH 1271/1420] hplip: rebuild for Python 3.11 --- srcpkgs/hplip/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hplip/template b/srcpkgs/hplip/template index 9c06e7148686..063581e4e899 100644 --- a/srcpkgs/hplip/template +++ b/srcpkgs/hplip/template @@ -1,7 +1,7 @@ # Template file for 'hplip' pkgname=hplip version=3.22.6 -revision=1 +revision=2 build_style=gnu-configure pycompile_dirs="usr/share/hplip" # configure checks sys.version[:3] for Python versioning, so 3.10 becomes 3.1; From fd44f60c95d506f5f9783ed42de926057db0090a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:49 -0400 Subject: [PATCH 1272/1420] hobbits: rebuild for Python 3.11 --- srcpkgs/hobbits/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hobbits/template b/srcpkgs/hobbits/template index c45b8ff3560e..51d6b5b5c264 100644 --- a/srcpkgs/hobbits/template +++ b/srcpkgs/hobbits/template @@ -1,7 +1,7 @@ # Template file for 'hobbits' pkgname=hobbits version=0.53.2 -revision=1 +revision=2 _pffft_commit=7914df2127c206ae501a6cb2950ee65a94662215 _pffft_dir="jpommier-pffft-${_pffft_commit:0:12}" create_wrksrc=yes From 9629de486e2ac1f3f6d26942934735c3800cc2eb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 4 Oct 2022 20:08:47 -0400 Subject: [PATCH 1273/1420] hivex: rebuild for Python 3.11 --- srcpkgs/hivex/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hivex/template b/srcpkgs/hivex/template index dd984aa8a6ba..e6b15e5a990e 100644 --- a/srcpkgs/hivex/template +++ b/srcpkgs/hivex/template @@ -1,7 +1,7 @@ # Template file for 'hivex' pkgname=hivex version=1.3.21 -revision=6 +revision=7 build_style=gnu-configure configure_args="--disable-ocaml" # currently ocaml is broken hostmakedepends="python3 perl ruby ocaml ocaml-findlib perl-IO-stringy" From d21c95d900fe7615e7d662ee0c9d25cee752c457 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:49 -0400 Subject: [PATCH 1274/1420] hg-git: rebuild for Python 3.11 --- 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 89db4e79fffc..3d04ae447af6 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.0.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools python3-setuptools_scm" depends="python3-dulwich mercurial" From 609f3296037790982408c3d956e5c1200d6ebd92 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 4 Oct 2022 20:08:47 -0400 Subject: [PATCH 1275/1420] hexchat: rebuild for Python 3.11 --- srcpkgs/hexchat/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template index ef3b8c475004..3302adad30d8 100644 --- a/srcpkgs/hexchat/template +++ b/srcpkgs/hexchat/template @@ -1,7 +1,7 @@ # Template file for 'hexchat' pkgname=hexchat version=2.16.1 -revision=2 +revision=3 build_style=meson configure_args="-Ddbus=enabled -Dtls=enabled -Dwith-perl=/usr/bin/perl -Dwith-python=python3 From 3a1d11a5609cacb9a27cc0a58304e9fe216ee83c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:49 -0400 Subject: [PATCH 1276/1420] hatch: rebuild for Python 3.11 --- srcpkgs/hatch/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hatch/template b/srcpkgs/hatch/template index 56deb15988d5..670f9b987fa6 100644 --- a/srcpkgs/hatch/template +++ b/srcpkgs/hatch/template @@ -1,7 +1,7 @@ # Template file for 'hatch' pkgname=hatch version=1.6.3 -revision=1 +revision=2 build_style=python3-pep517 # ignore backend tests, because updating hatchling when there is no new hatch # version yet breaks these in hatch. From 7b6cef289410fade74c1a8fb855db103190c8ba0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:49 -0400 Subject: [PATCH 1277/1420] hangups: rebuild for Python 3.11 --- srcpkgs/hangups/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hangups/template b/srcpkgs/hangups/template index 359319caa9c4..d81bfba1c0a8 100644 --- a/srcpkgs/hangups/template +++ b/srcpkgs/hangups/template @@ -1,7 +1,7 @@ # Template file for 'hangups' pkgname=hangups version=0.4.18 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-MechanicalSoup python3-readlike python3-ReParser From 62bc13ecdca39c19683f274a735d74e7fc629c82 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:49 -0400 Subject: [PATCH 1278/1420] hamlib: rebuild for Python 3.11 --- srcpkgs/hamlib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/hamlib/template b/srcpkgs/hamlib/template index dd827260031e..04357f6c913b 100644 --- a/srcpkgs/hamlib/template +++ b/srcpkgs/hamlib/template @@ -1,7 +1,7 @@ # Template file for 'hamlib' pkgname=hamlib version=4.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 808bd6d174ed10beb1c8051a473ad76c70f337a0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:49 -0400 Subject: [PATCH 1279/1420] gwe: rebuild for Python 3.11 --- srcpkgs/gwe/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gwe/template b/srcpkgs/gwe/template index 1bb258ebecdd..c8592347cb15 100644 --- a/srcpkgs/gwe/template +++ b/srcpkgs/gwe/template @@ -1,7 +1,7 @@ # Template file for 'gwe' pkgname=gwe version=0.15.2 -revision=2 +revision=3 wrksrc="gwe-${version}" build_style=meson hostmakedepends="pkg-config meson ninja glib-devel gtk+3-devel python3 python3-devel From 9765cc5eaf760d9ef995dcb5efb3a9c578f6c50a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:49 -0400 Subject: [PATCH 1280/1420] gufw: rebuild for Python 3.11 --- srcpkgs/gufw/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template index b1cd0c5aa876..906f388ce9f7 100644 --- a/srcpkgs/gufw/template +++ b/srcpkgs/gufw/template @@ -1,7 +1,7 @@ # Template file for 'gufw' pkgname=gufw version=22.04 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-distutils-extra intltool" depends="python3-gobject net-tools ufw gtk+3 webkit2gtk" From 74712142de51e9fcfb09d464fcee70d0cc7d92a7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:50 -0400 Subject: [PATCH 1281/1420] guake: rebuild for Python 3.11 --- srcpkgs/guake/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template index 940564e72324..d73b9a43f468 100644 --- a/srcpkgs/guake/template +++ b/srcpkgs/guake/template @@ -1,7 +1,7 @@ # Template file for 'guake' pkgname=guake version=3.7.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="gettext python3-setuptools python3-pbr" makedepends="python3-devel python3-pbr" From ef1fe2fcbdec5d7393d1ff7d8c0ca02d4f978be1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:50 -0400 Subject: [PATCH 1282/1420] gscreenshot: rebuild for Python 3.11 --- srcpkgs/gscreenshot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gscreenshot/template b/srcpkgs/gscreenshot/template index 25f664c2289d..008172670ed4 100644 --- a/srcpkgs/gscreenshot/template +++ b/srcpkgs/gscreenshot/template @@ -1,7 +1,7 @@ # Template file for 'gscreenshot' pkgname=gscreenshot version=2.17.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools gettext" depends="gtk+3 python3-setuptools python3-Pillow python3-gobject scrot" From f16982289c5bcc4b6a97785dfc7c04a4ff781fad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:50 -0400 Subject: [PATCH 1283/1420] grip: rebuild for Python 3.11 --- srcpkgs/grip/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/grip/template b/srcpkgs/grip/template index 0f8e6cec2fea..622af5b5d85d 100644 --- a/srcpkgs/grip/template +++ b/srcpkgs/grip/template @@ -1,7 +1,7 @@ # Template file for 'grip' pkgname=grip version=4.6.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-docopt python3-Flask python3-Markdown python3-path-and-address From d2032d6c0b0aa1352ad46514942616b7850e226d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:50 -0400 Subject: [PATCH 1284/1420] greg: rebuild for Python 3.11 --- srcpkgs/greg/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template index cc5b632ff166..97eb4afb3fdc 100644 --- a/srcpkgs/greg/template +++ b/srcpkgs/greg/template @@ -1,7 +1,7 @@ # Template file for 'greg' pkgname=greg version=0.4.7 -revision=8 +revision=9 build_style=python3-module pycompile_module="greg" hostmakedepends="python3-setuptools" From 616f3e99af408db9872221166d8edb725e12a00d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:50 -0400 Subject: [PATCH 1285/1420] gramps: rebuild for Python 3.11 --- srcpkgs/gramps/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template index b4b786cfef88..b7c40d3d563e 100644 --- a/srcpkgs/gramps/template +++ b/srcpkgs/gramps/template @@ -1,7 +1,7 @@ # Template file for 'gramps' pkgname=gramps version=5.1.4 -revision=2 +revision=3 build_style=python3-module hostmakedepends="pkg-config intltool python3" depends="gtk+3 python3-gobject python3-bsddb3" From bff599ded5a35841e59a3c31ab98e17b870ddb80 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:50 -0400 Subject: [PATCH 1286/1420] gpodder: rebuild for Python 3.11 --- srcpkgs/gpodder/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template index 2669a2fb4ef0..2f4b1a2022ab 100644 --- a/srcpkgs/gpodder/template +++ b/srcpkgs/gpodder/template @@ -1,7 +1,7 @@ # Template file for 'gpodder' pkgname=gpodder version=3.11.0 -revision=1 +revision=2 hostmakedepends="python3 intltool" depends="eyeD3 gtk+3 hicolor-icon-theme python3-dbus python3-gobject python3-html5lib python3-mygpoclient python3-podcastparser python3-mutagen From 37881644866f5ef653ed3ef61c65ab2add63c812 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:50 -0400 Subject: [PATCH 1287/1420] gom: rebuild for Python 3.11 --- srcpkgs/gom/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gom/template b/srcpkgs/gom/template index dd323bde4252..993b0a7a8ab4 100644 --- a/srcpkgs/gom/template +++ b/srcpkgs/gom/template @@ -1,7 +1,7 @@ # Template file for 'gom' pkgname=gom version=0.4 -revision=3 +revision=4 build_style=meson build_helper="gir" configure_args="-Denable-introspection=$(vopt_if gir true false) From b06fa95b04a26923c45a48f646da064c0c35d45d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Sun, 25 Sep 2022 13:22:23 -0400 Subject: [PATCH 1288/1420] golly: rebuild for Python 3.11 --- srcpkgs/golly/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/golly/template b/srcpkgs/golly/template index e8a24b9074c0..05edcdc0b423 100644 --- a/srcpkgs/golly/template +++ b/srcpkgs/golly/template @@ -1,7 +1,7 @@ # Template file for 'golly' pkgname=golly version=4.1 -revision=1 +revision=2 wrksrc="${pkgname}-${version}-src" build_wrksrc="gui-wx" build_style=gnu-makefile @@ -27,7 +27,7 @@ post_extract() { pre_configure() { if [ "$CROSS_BUILD" ]; then - vsed -i "s,\(PYTHON_INCLUDE\) =.*,\1=-I${XBPS_CROSS_BASE}/usr/include/python3.10,g" makefile-gtk + vsed -i "s,\(PYTHON_INCLUDE\) =.*,\1=-I${XBPS_CROSS_BASE}/${py3_inc},g" makefile-gtk fi } From 77eeb1160c080c68d293adfee0fc7ffaf233010c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:50 -0400 Subject: [PATCH 1289/1420] gnuradio-rds: rebuild for Python 3.11 --- 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 45e91fe3463a..55b657e3389e 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=3 +revision=4 wrksrc="gr-rds-${version}" build_style=cmake configure_args="-Dpybind11_DIR=${XBPS_CROSS_BASE}/${py3_sitelib}/pybind11/share/cmake/pybind11" From 67899d88c8fe731817105c1f4b769c933455deea Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:50 -0400 Subject: [PATCH 1290/1420] gnuradio-osmosdr: rebuild for Python 3.11 --- 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 a62035e545d3..10ca3edaa1a0 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.3git20210128 -revision=4 +revision=5 _githash=a100eb024c0210b95e4738b6efd836d48225bd03 wrksrc="gr-osmosdr-${_githash}" build_style=cmake From 36d5c6103ea3b35077083fc3f1ddbda4f6dcf8e5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:51 -0400 Subject: [PATCH 1291/1420] gnuradio-nrsc5: rebuild for Python 3.11 --- 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 d3c7377168bc..422c501a8de3 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=2 +revision=3 wrksrc="gr-nrsc5-${version}" build_style=cmake make_cmd=make From 9359e3e3c3fe13280e495e4cac34aae0c65865a4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:51 -0400 Subject: [PATCH 1292/1420] gnucash: rebuild for Python 3.11 --- srcpkgs/gnucash/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnucash/template b/srcpkgs/gnucash/template index 6f1fb897e7e2..0c268b4bd924 100644 --- a/srcpkgs/gnucash/template +++ b/srcpkgs/gnucash/template @@ -1,7 +1,7 @@ # Template file for 'gnucash' pkgname=gnucash version=4.12 -revision=1 +revision=2 wrksrc="${pkgname}-${version%b}" build_style=cmake make_check_target=check From ea721bd4f98582c99b245557fda2b3671a0804f6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:51 -0400 Subject: [PATCH 1293/1420] gnubg: rebuild for Python 3.11 --- srcpkgs/gnubg/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnubg/template b/srcpkgs/gnubg/template index 3b9842b7bb43..dc7ddded0f22 100644 --- a/srcpkgs/gnubg/template +++ b/srcpkgs/gnubg/template @@ -1,7 +1,7 @@ # Template file for 'gnubg' pkgname=gnubg version=1.06.002 -revision=4 +revision=5 build_style=gnu-configure configure_args="--disable-cputest ax_cv_gcc_x86_cpuid_0x00000001=6000000" hostmakedepends="gdk-pixbuf-devel pkg-config python3-devel" From 3324b4b87a8ea1d35e6a665a47ba569b0de0de42 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:51 -0400 Subject: [PATCH 1294/1420] gns3-server: rebuild for Python 3.11 --- 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 e660a7e381b1..c795b151432d 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.34 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-jsonschema python3-aiohttp python3-aiohttp-cors From e1ef4a92096b6552721244dac1cd3619e83e0d9e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:51 -0400 Subject: [PATCH 1295/1420] gns3-gui: rebuild for Python 3.11 --- 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 d286e40900c5..5b83f9314837 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.34 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-psutil python3-jsonschema From 387b194cdba3ad69c943922e888105e5d5fe47b8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:51 -0400 Subject: [PATCH 1296/1420] gnome-tweaks: rebuild for Python 3.11 --- 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 34f1a56b9084..d134a71d998f 100644 --- a/srcpkgs/gnome-tweaks/template +++ b/srcpkgs/gnome-tweaks/template @@ -1,7 +1,7 @@ # Template file for 'gnome-tweaks' pkgname=gnome-tweaks version=42.beta -revision=1 +revision=2 build_style=meson hostmakedepends="pkg-config gettext" makedepends="libhandy1-devel" From 3156cb073cf80e3981ab16eeaef82a8b7216db68 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:51 -0400 Subject: [PATCH 1297/1420] gnome-secrets: rebuild for Python 3.11 --- 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 9c91229d62ad..936e40723e9c 100644 --- a/srcpkgs/gnome-secrets/template +++ b/srcpkgs/gnome-secrets/template @@ -1,7 +1,7 @@ # Template file for 'gnome-secrets' pkgname=gnome-secrets version=6.5 -revision=1 +revision=2 wrksrc="secrets-${version}" build_style=meson hostmakedepends="pkg-config gettext gobject-introspection python3-pykeepass From 9901a41b353179d59bb4ec81482cdbae110f4da4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:51 -0400 Subject: [PATCH 1298/1420] gnome-passbook: rebuild for Python 3.11 --- 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 44f011aed316..7ae4f3653102 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=4 +revision=5 _release_hash=5fea4e4fc19f1732d3a5270bc43eb8e9 wrksrc="passbook-${version}" build_style=meson From db462f04ac932c3ebf5c7c4074f82e047d3fd0dc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:51 -0400 Subject: [PATCH 1299/1420] gnome-music: rebuild for Python 3.11 --- 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 c19480dff00a..bbf89f50014f 100644 --- a/srcpkgs/gnome-music/template +++ b/srcpkgs/gnome-music/template @@ -1,7 +1,7 @@ # Template file for 'gnome-music' pkgname=gnome-music version=42.1 -revision=1 +revision=2 build_helper="gir" build_style=meson hostmakedepends="gettext glib-devel itstool pkg-config From d32bc4bfb2262aac1e6eaae71bf29922a12d2490 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:52 -0400 Subject: [PATCH 1300/1420] gnome-builder: rebuild for Python 3.11 --- srcpkgs/gnome-builder/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnome-builder/template b/srcpkgs/gnome-builder/template index 387d05aab1d8..726853f194fa 100644 --- a/srcpkgs/gnome-builder/template +++ b/srcpkgs/gnome-builder/template @@ -1,7 +1,7 @@ # Template file for 'gnome-builder' pkgname=gnome-builder version=42.1 -revision=2 +revision=3 build_style=meson build_helper=qemu configure_args="-Dhelp=true -Dnetwork_tests=false" From a006f31d292ef197efffa7603ae672240773dd7c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:52 -0400 Subject: [PATCH 1301/1420] gnome-browser-connector: rebuild for Python 3.11 --- 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 3692d54273cd..6d95b9e5873e 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=1 +revision=2 wrksrc="${pkgname}-v${version}" build_style=meson hostmakedepends="python3-gobject" From 38db53bf7f9b062616a79b0de095f5d84dc3ec77 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:52 -0400 Subject: [PATCH 1302/1420] gnome-authenticator: rebuild for Python 3.11 --- srcpkgs/gnome-authenticator/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnome-authenticator/template b/srcpkgs/gnome-authenticator/template index 415bc5355576..66275f83e8de 100644 --- a/srcpkgs/gnome-authenticator/template +++ b/srcpkgs/gnome-authenticator/template @@ -1,7 +1,7 @@ # Template file for 'gnome-authenticator' pkgname=gnome-authenticator version=3.32.2 -revision=4 +revision=5 wrksrc="Authenticator-${version}" build_style=meson build_helper="gir" From 5141314e0636ea89fbcbd6c95c2e739270457fb6 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:52 -0400 Subject: [PATCH 1303/1420] glances: rebuild for Python 3.11 --- srcpkgs/glances/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template index 5bfb6a87b0d0..5cb314aae32e 100644 --- a/srcpkgs/glances/template +++ b/srcpkgs/glances/template @@ -1,7 +1,7 @@ # Template file for 'glances' pkgname=glances version=3.2.7 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-future python3-psutil python3-defusedxml python3-packaging" From 10304fce7507b9a903c874917ea2ec6bf30c1173 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:52 -0400 Subject: [PATCH 1304/1420] gitg: rebuild for Python 3.11 --- srcpkgs/gitg/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gitg/template b/srcpkgs/gitg/template index b75798214223..9551b26ebad5 100644 --- a/srcpkgs/gitg/template +++ b/srcpkgs/gitg/template @@ -1,7 +1,7 @@ # Template file for 'gitg' pkgname=gitg version=41 -revision=1 +revision=2 build_style=meson build_helper="qemu" hostmakedepends="gettext glib-devel gobject-introspection pkg-config vala" From a71cae7139ab2343b8255201e616fcdf45fb6631 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:52 -0400 Subject: [PATCH 1305/1420] git-revise: rebuild for Python 3.11 --- 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 e2da512ace66..3d494ecc19ed 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=1 +revision=2 build_style=python3-module hostmakedepends="python3 python3-setuptools" depends="git python3-setuptools" From 9e2c43eb3fc046af744e99acd1259990cd9e554f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:52 -0400 Subject: [PATCH 1306/1420] git-review: rebuild for Python 3.11 --- 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 8f97599d2408..e48d32e9f1d6 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=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools python3-pbr" depends="python3-requests" From d6eb1d65f330b6118d7e14d9844953c74a5db377 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:52 -0400 Subject: [PATCH 1307/1420] git-filter-repo: rebuild for Python 3.11 --- 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 d2ec5d7647bc..70812e9d775d 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=1 +revision=2 depends="git python3" checkdepends="git python3 perl rsync dos2unix" short_desc="Versatile tool for rewriting git history" From f4bfa29fe66c88983c514f44cea84e70dec3e546 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:52 -0400 Subject: [PATCH 1308/1420] git-cola: rebuild for Python 3.11 --- 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 d988258bb6f4..cdd35c46c009 100644 --- a/srcpkgs/git-cola/template +++ b/srcpkgs/git-cola/template @@ -1,7 +1,7 @@ # Template file for 'git-cola' pkgname=git-cola version=3.12.0 -revision=1 +revision=2 build_style=python3-module pycompile_dirs="usr/share/git-cola/lib" hostmakedepends="python3" From e1ce4ba02375acfa30ec3c3a350f92f20b707d63 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:53 -0400 Subject: [PATCH 1309/1420] gfeeds: rebuild for Python 3.11 --- srcpkgs/gfeeds/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gfeeds/template b/srcpkgs/gfeeds/template index b6ae09f74fc5..f08389662976 100644 --- a/srcpkgs/gfeeds/template +++ b/srcpkgs/gfeeds/template @@ -1,7 +1,7 @@ # Template file for 'gfeeds' pkgname=gfeeds version=0.16.2 -revision=1 +revision=2 build_style=meson hostmakedepends="pkg-config gobject-introspection glib-devel gettext" makedepends="libglib-devel gtk+3-devel libhandy1-devel" From aba3f19edd86ed282ca625278658154ab1946a6a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:53 -0400 Subject: [PATCH 1310/1420] geis: rebuild for Python 3.11 --- srcpkgs/geis/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/geis/template b/srcpkgs/geis/template index b7f78fd42a2a..8c41cbc940b0 100644 --- a/srcpkgs/geis/template +++ b/srcpkgs/geis/template @@ -1,7 +1,7 @@ # Template file for 'geis' pkgname=geis version=2.2.17 -revision=10 +revision=11 build_style="gnu-configure" configure_args="--disable-static" hostmakedepends="pkg-config python3-devel" From a4e308dd2b12c9eafb678ba948a52eb18b0a502b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:53 -0400 Subject: [PATCH 1311/1420] gef: rebuild for Python 3.11 --- srcpkgs/gef/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gef/template b/srcpkgs/gef/template index 1309b0c7bffa..c19cdf5f77a9 100644 --- a/srcpkgs/gef/template +++ b/srcpkgs/gef/template @@ -1,7 +1,7 @@ # Template file for 'gef' pkgname=gef version=2022.06 -revision=1 +revision=2 pycompile_dirs="usr/lib/gef" depends="keystone-python3 capstone-python3 unicorn-python3 python3-Ropper" short_desc="GDB Enhanced Features for exploit devs & reversers" From d475d43922a524591252b0b72b6ed5995ee26ac1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:53 -0400 Subject: [PATCH 1312/1420] gedit-plugins: rebuild for Python 3.11 --- srcpkgs/gedit-plugins/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gedit-plugins/template b/srcpkgs/gedit-plugins/template index 939d068e074e..576c3a3dcdad 100644 --- a/srcpkgs/gedit-plugins/template +++ b/srcpkgs/gedit-plugins/template @@ -1,7 +1,7 @@ # Template file for 'gedit-plugins' pkgname=gedit-plugins version=42.1 -revision=1 +revision=2 build_style=meson pycompile_dirs="usr/lib/gedit/plugins" hostmakedepends="gettext glib-devel itstool pkg-config vala appstream-glib From 38c58faf14e6781c8fdfcda7e91b220d8a201209 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:53 -0400 Subject: [PATCH 1313/1420] gdown: rebuild for Python 3.11 --- srcpkgs/gdown/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gdown/template b/srcpkgs/gdown/template index 019647ef6a0f..6420b1c87e78 100644 --- a/srcpkgs/gdown/template +++ b/srcpkgs/gdown/template @@ -1,7 +1,7 @@ # Template file for 'gdown' pkgname=gdown version=4.2.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3 python3-setuptools" depends="python3-filelock python3-requests python3-six python3-tqdm From 35047ecb27eab36f917d58dcce98d512fbf97f0e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:53 -0400 Subject: [PATCH 1314/1420] gcovr: rebuild for Python 3.11 --- srcpkgs/gcovr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template index cb13a9d12628..70f9c3b94678 100644 --- a/srcpkgs/gcovr/template +++ b/srcpkgs/gcovr/template @@ -1,7 +1,7 @@ # Template file for 'gcovr' pkgname=gcovr version=4.2 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-Jinja2 python3-lxml python3-Pygments" From d192467ba5cb539bc077f13ac1adce943a5088bb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:53 -0400 Subject: [PATCH 1315/1420] gammastep: rebuild for Python 3.11 --- srcpkgs/gammastep/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gammastep/template b/srcpkgs/gammastep/template index 5c3898dc2d38..e75c837ef70d 100644 --- a/srcpkgs/gammastep/template +++ b/srcpkgs/gammastep/template @@ -1,7 +1,7 @@ # Template file for 'gammastep' pkgname=gammastep version=2.0.9 -revision=1 +revision=2 wrksrc="${pkgname}-v${version}" build_style=gnu-configure configure_args="--enable-gui --enable-drm --enable-vidmode --enable-randr From d5af09afc7a37a0563cc8770dadfed95a6a9ef30 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:53 -0400 Subject: [PATCH 1316/1420] gallery-dl: rebuild for Python 3.11 --- 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 4f1e1e529b4e..f3d0836d3b32 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.23.2 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-requests" From b6bbeb64cbaf80d8db0adaa2514acdadd42d4f42 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:54 -0400 Subject: [PATCH 1317/1420] gajim-omemo: rebuild for Python 3.11 --- srcpkgs/gajim-omemo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gajim-omemo/template b/srcpkgs/gajim-omemo/template index e218802485f0..3e1b4216bcb3 100644 --- a/srcpkgs/gajim-omemo/template +++ b/srcpkgs/gajim-omemo/template @@ -1,7 +1,7 @@ # Template file for 'gajim-omemo' pkgname=gajim-omemo version=2.8.16 -revision=1 +revision=2 create_wrksrc="omemo" hostmakedepends="unzip" depends="python3 python3-setuptools python3-cryptography python3-axolotl From 7a80499f29f66a33582d5fd7b81e257f132cf33c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:54 -0400 Subject: [PATCH 1318/1420] frr: rebuild for Python 3.11 --- srcpkgs/frr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/frr/template b/srcpkgs/frr/template index 71e3febce849..311a45bb1480 100644 --- a/srcpkgs/frr/template +++ b/srcpkgs/frr/template @@ -1,7 +1,7 @@ # Template file for 'frr' pkgname=frr version=7.5 -revision=3 +revision=4 wrksrc="${pkgname}-${pkgname}-${version}" build_style=gnu-configure # chroot-texinfo is not able to build frr's docs From 54dae559f13eed3753658f3a2e96ceba0e8ca100 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:54 -0400 Subject: [PATCH 1319/1420] freeorion: rebuild for Python 3.11 --- srcpkgs/freeorion/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/freeorion/template b/srcpkgs/freeorion/template index 1b2644d09618..912cf51965c9 100644 --- a/srcpkgs/freeorion/template +++ b/srcpkgs/freeorion/template @@ -1,7 +1,7 @@ # Template file for 'freeorion' pkgname=freeorion version=0.4.10.2 -revision=3 +revision=4 _release=${version}_2021-08-01.f663dad wrksrc=src-tarball build_style=cmake From f26a4376888f5c9265676257acfb66aab6771e25 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:54 -0400 Subject: [PATCH 1320/1420] freecad: rebuild for Python 3.11 --- srcpkgs/freecad/patches/python-3.11.patch | 236 ++++++++++++++++++++++ srcpkgs/freecad/template | 2 +- 2 files changed, 237 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/freecad/patches/python-3.11.patch diff --git a/srcpkgs/freecad/patches/python-3.11.patch b/srcpkgs/freecad/patches/python-3.11.patch new file mode 100644 index 000000000000..a50d02e47437 --- /dev/null +++ b/srcpkgs/freecad/patches/python-3.11.patch @@ -0,0 +1,236 @@ +From 1ae55905ba7e89278bf656ebcc57ea1088e8fa44 Mon Sep 17 00:00:00 2001 +From: wmayer +Date: Fri, 1 Jul 2022 17:54:50 +0200 +Subject: [PATCH] Py: make FreeCAD to compile with Py3.11 + +--- + src/Base/ConsoleObserver.cpp | 6 ++++ + src/Base/Interpreter.cpp | 56 ++++++++++++++++++++++++++++++++++++ + src/Base/PyObjectBase.cpp | 4 +++ + src/Base/PyTools.c | 10 ++++++- + src/Gui/Command.cpp | 7 +++++ + src/Gui/PythonDebugger.cpp | 17 +++++++++-- + 6 files changed, 97 insertions(+), 3 deletions(-) + +diff --git a/src/Base/ConsoleObserver.cpp b/src/Base/ConsoleObserver.cpp +index c6428a7f18be..ab3b3e9157b1 100644 +--- a/src/Base/ConsoleObserver.cpp ++++ b/src/Base/ConsoleObserver.cpp +@@ -266,7 +266,13 @@ std::stringstream &LogLevel::prefix(std::stringstream &str, const char *src, int + PyFrameObject* frame = PyEval_GetFrame(); + if (frame) { + line = PyFrame_GetLineNumber(frame); ++#if PY_VERSION_HEX < 0x030b0000 + src = PyUnicode_AsUTF8(frame->f_code->co_filename); ++#else ++ PyCodeObject* code = PyFrame_GetCode(frame); ++ src = PyUnicode_AsUTF8(code->co_filename); ++ Py_DECREF(code); ++#endif + } + } + if (print_src && src && src[0]) { +diff --git a/src/Base/Interpreter.cpp b/src/Base/Interpreter.cpp +index 2bacea30cbb7..5a476094b749 100644 +--- a/src/Base/Interpreter.cpp ++++ b/src/Base/Interpreter.cpp +@@ -523,6 +523,7 @@ void InterpreterSingleton::addPythonPath(const char* Path) + list.append(Py::String(Path)); + } + ++#if PY_VERSION_HEX < 0x030b0000 + const char* InterpreterSingleton::init(int argc,char *argv[]) + { + if (!Py_IsInitialized()) { +@@ -565,6 +566,61 @@ const char* InterpreterSingleton::init(int argc,char *argv[]) + PyGILStateLocker lock; + return Py_EncodeLocale(Py_GetPath(),nullptr); + } ++#else ++namespace { ++void initInterpreter(int argc,char *argv[]) ++{ ++ PyStatus status; ++ PyConfig config; ++ PyConfig_InitPythonConfig(&config); ++ ++ status = PyConfig_SetBytesArgv(&config, argc, argv); ++ if (PyStatus_Exception(status)) { ++ throw Base::RuntimeError("Failed to set config"); ++ } ++ ++ status = Py_InitializeFromConfig(&config); ++ if (PyStatus_Exception(status)) { ++ throw Base::RuntimeError("Failed to init from config"); ++ } ++ ++ PyConfig_Clear(&config); ++ ++ Py_Initialize(); ++ const char* virtualenv = getenv("VIRTUAL_ENV"); ++ if (virtualenv) { ++ PyRun_SimpleString( ++ "# Check for virtualenv, and activate if present.\n" ++ "# See https://virtualenv.pypa.io/en/latest/userguide/#using-virtualenv-without-bin-python\n" ++ "import os\n" ++ "import sys\n" ++ "base_path = os.getenv(\"VIRTUAL_ENV\")\n" ++ "if not base_path is None:\n" ++ " activate_this = os.path.join(base_path, \"bin\", \"activate_this.py\")\n" ++ " exec(open(activate_this).read(), {'__file__':activate_this})\n" ++ ); ++ } ++} ++} ++const char* InterpreterSingleton::init(int argc,char *argv[]) ++{ ++ try { ++ if (!Py_IsInitialized()) { ++ initInterpreter(argc, argv); ++ ++ PythonStdOutput::init_type(); ++ this->_global = PyEval_SaveThread(); ++ } ++ ++ PyGILStateLocker lock; ++ return Py_EncodeLocale(Py_GetPath(),nullptr); ++ } ++ catch (const Base::Exception& e) { ++ e.ReportException(); ++ throw; ++ } ++} ++#endif + + void InterpreterSingleton::replaceStdOutput() + { +diff --git a/src/Base/PyObjectBase.cpp b/src/Base/PyObjectBase.cpp +index 773a61b259b3..343ab26999f6 100644 +--- a/src/Base/PyObjectBase.cpp ++++ b/src/Base/PyObjectBase.cpp +@@ -60,7 +60,11 @@ PyObjectBase::PyObjectBase(void* p,PyTypeObject *T) + , baseProxy(nullptr) + , attrDict(nullptr) + { ++#if PY_VERSION_HEX < 0x030b0000 + Py_TYPE(this) = T; ++#else ++ Py_SET_TYPE(this, T); ++#endif + _Py_NewReference(this); + #ifdef FC_LOGPYOBJECTS + Base::Console().Log("PyO+: %s (%p)\n",T->tp_name, this); +diff --git a/src/Base/PyTools.c b/src/Base/PyTools.c +index 71569e26a200..492d0c8563a4 100644 +--- a/src/Base/PyTools.c ++++ b/src/Base/PyTools.c +@@ -15,8 +15,10 @@ is provided on an as is basis, without warranties of any kind. + #include + #include + #include +-#include + #include ++#if PY_VERSION_HEX < 0x030b0000 ++#include ++#endif + + + /***************************************************************************** +@@ -310,7 +312,13 @@ void PP_Fetch_Error_Text() + if(!frame) + return; + int line = PyFrame_GetLineNumber(frame); ++#if PY_VERSION_HEX < 0x030b0000 + const char *file = PyUnicode_AsUTF8(frame->f_code->co_filename); ++#else ++ PyCodeObject* code = PyFrame_GetCode(frame); ++ const char *file = PyUnicode_AsUTF8(code->co_filename); ++ Py_DECREF(code); ++#endif + #ifdef FC_OS_WIN32 + const char *_f = strstr(file, "\\src\\"); + #else +diff --git a/src/Gui/Command.cpp b/src/Gui/Command.cpp +index c9568e8f0e69..cf555439fcd2 100644 +--- a/src/Gui/Command.cpp ++++ b/src/Gui/Command.cpp +@@ -657,8 +657,15 @@ void Command::printPyCaller() { + if(!frame) + return; + int line = PyFrame_GetLineNumber(frame); ++#if PY_VERSION_HEX < 0x030b0000 + const char *file = PyUnicode_AsUTF8(frame->f_code->co_filename); + printCaller(file?file:"",line); ++#else ++ PyCodeObject* code = PyFrame_GetCode(frame); ++ const char* file = PyUnicode_AsUTF8(code->co_filename); ++ printCaller(file?file:"",line); ++ Py_DECREF(code); ++#endif + } + + void Command::printCaller(const char *file, int line) { +diff --git a/src/Gui/PythonDebugger.cpp b/src/Gui/PythonDebugger.cpp +index 7e731a9dd6af..cd44e9b1c233 100644 +--- a/src/Gui/PythonDebugger.cpp ++++ b/src/Gui/PythonDebugger.cpp +@@ -563,6 +563,14 @@ void PythonDebugger::hideDebugMarker(const QString& fn) + } + } + ++#if PY_VERSION_HEX < 0x030900B1 ++static PyCodeObject* PyFrame_GetCode(PyFrameObject *frame) ++{ ++ Py_INCREF(frame->f_code); ++ return frame->f_code; ++} ++#endif ++ + // http://www.koders.com/cpp/fidBA6CD8A0FE5F41F1464D74733D9A711DA257D20B.aspx?s=PyEval_SetTrace + // http://code.google.com/p/idapython/source/browse/trunk/python.cpp + // http://www.koders.com/cpp/fid191F7B13CF73133935A7A2E18B7BF43ACC6D1784.aspx?s=PyEval_SetTrace +@@ -578,7 +586,9 @@ int PythonDebugger::tracer_callback(PyObject *obj, PyFrameObject *frame, int wha + + //no = frame->f_tstate->recursion_depth; + //std::string funcname = PyString_AsString(frame->f_code->co_name); +- QString file = QString::fromUtf8(PyUnicode_AsUTF8(frame->f_code->co_filename)); ++ PyCodeObject* code = PyFrame_GetCode(frame); ++ QString file = QString::fromUtf8(PyUnicode_AsUTF8(code->co_filename)); ++ Py_DECREF(code); + switch (what) { + case PyTrace_CALL: + self->depth++; +@@ -592,7 +602,10 @@ int PythonDebugger::tracer_callback(PyObject *obj, PyFrameObject *frame, int wha + //PyObject *str; + //str = PyObject_Str(frame->f_code->co_filename); + //no = frame->f_lineno; +- int line = PyCode_Addr2Line(frame->f_code, frame->f_lasti); ++ PyCodeObject* f_code = PyFrame_GetCode(frame); ++ int f_lasti = PyFrame_GetLineNumber(frame); ++ int line = PyCode_Addr2Line(f_code, f_lasti); ++ Py_DECREF(f_code); + //if (str) { + // Base::Console().Message("PROFILING: %s:%d\n", PyString_AsString(str), frame->f_lineno); + // Py_DECREF(str); +From 6820e0a9ec85203a6f342ca72a2ff8fd417beaf1 Mon Sep 17 00:00:00 2001 +From: wmayer +Date: Sat, 2 Jul 2022 19:36:27 +0200 +Subject: [PATCH] Py3: properly port to Py3.11 + +--- + src/Base/PyObjectBase.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/Base/PyObjectBase.cpp b/src/Base/PyObjectBase.cpp +index 343ab26999f6..a8e1b327809b 100644 +--- a/src/Base/PyObjectBase.cpp ++++ b/src/Base/PyObjectBase.cpp +@@ -63,7 +63,7 @@ PyObjectBase::PyObjectBase(void* p,PyTypeObject *T) + #if PY_VERSION_HEX < 0x030b0000 + Py_TYPE(this) = T; + #else +- Py_SET_TYPE(this, T); ++ this->ob_type = T; + #endif + _Py_NewReference(this); + #ifdef FC_LOGPYOBJECTS diff --git a/srcpkgs/freecad/template b/srcpkgs/freecad/template index 85f6cf44daf6..ff6fad3cad42 100644 --- a/srcpkgs/freecad/template +++ b/srcpkgs/freecad/template @@ -1,7 +1,7 @@ # Template file for 'freecad' pkgname=freecad version=0.20.1 -revision=4 +revision=5 wrksrc="FreeCAD-${version}" build_style=cmake From 295c51cd2922c02adfac6887da8be3b3b1754fed Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:54 -0400 Subject: [PATCH 1321/1420] flinks: rebuild for Python 3.11 --- srcpkgs/flinks/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/flinks/template b/srcpkgs/flinks/template index bb21298ad50b..88b519f686f2 100644 --- a/srcpkgs/flinks/template +++ b/srcpkgs/flinks/template @@ -1,7 +1,7 @@ # Template file for 'flinks' pkgname=flinks version=0.5.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="lynx python3" From d0c42f00837cb525af2ae235ef25df18d98ee041 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:54 -0400 Subject: [PATCH 1322/1420] fierce: rebuild for Python 3.11 --- srcpkgs/fierce/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template index eba644f398cd..c59c1cf1554e 100644 --- a/srcpkgs/fierce/template +++ b/srcpkgs/fierce/template @@ -1,7 +1,7 @@ # Template file for 'fierce' pkgname=fierce version=1.5.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-dnspython" From c2bfb973c63465b2ac6cb7165693c77488bf0645 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:54 -0400 Subject: [PATCH 1323/1420] fetchmail: rebuild for Python 3.11 --- srcpkgs/fetchmail/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/fetchmail/template b/srcpkgs/fetchmail/template index 8fa7559569d2..357a22022a50 100644 --- a/srcpkgs/fetchmail/template +++ b/srcpkgs/fetchmail/template @@ -1,7 +1,7 @@ # Template file for 'fetchmail' pkgname=fetchmail version=6.4.30 -revision=1 +revision=2 build_style=gnu-configure configure_args="--with-ssl=${XBPS_CROSS_BASE}/usr" hostmakedepends="python3 pkg-config" From 18279eb99169c6c388ea2809ba7206d6c1dc2d62 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:54 -0400 Subject: [PATCH 1324/1420] fava: rebuild for Python 3.11 --- srcpkgs/fava/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template index 00daf0ec657f..b189e33cf0c1 100644 --- a/srcpkgs/fava/template +++ b/srcpkgs/fava/template @@ -1,7 +1,7 @@ # Template file for 'fava' pkgname=fava version=1.22.3 -revision=1 +revision=2 build_style=python3-pep517 make_check_args="--deselect tests/test_cli.py::test_cli" hostmakedepends="python3-setuptools_scm python3-wheel" From 505723b3127876c4748e715119126ea011aca470 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:54 -0400 Subject: [PATCH 1325/1420] fail2ban: rebuild for Python 3.11 --- srcpkgs/fail2ban/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template index 686ddb8dd0e3..db25a5f28826 100644 --- a/srcpkgs/fail2ban/template +++ b/srcpkgs/fail2ban/template @@ -1,7 +1,7 @@ # Template file for 'fail2ban' pkgname=fail2ban version=0.11.2 -revision=3 +revision=4 build_style=python3-module hostmakedepends="pkg-config python3" depends="python3" From 5dc326064f3da94d4a3c6998e2abe1de24844a88 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:55 -0400 Subject: [PATCH 1326/1420] evemu: rebuild for Python 3.11 --- srcpkgs/evemu/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/evemu/template b/srcpkgs/evemu/template index 08543bff0fae..ef2227246e81 100644 --- a/srcpkgs/evemu/template +++ b/srcpkgs/evemu/template @@ -1,7 +1,7 @@ # Template file for 'evemu' pkgname=evemu version=2.7.0 -revision=2 +revision=3 build_style=gnu-configure hostmakedepends="pkg-config python3 asciidoc xmlto" makedepends="libevdev-devel" From ac4c9da0e8e65d83255291842df23dcafc1c4591 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:55 -0400 Subject: [PATCH 1327/1420] etesync-dav: rebuild for Python 3.11 --- 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 16efaa70e611..667f5ec8563a 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=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-etesync python3-etebase radicale2 python3-Flask python3-Flask-WTF" From 4335e219cd29499b7cd0cfd168d1f97f9183b080 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:55 -0400 Subject: [PATCH 1328/1420] etcetera: rebuild for Python 3.11 --- srcpkgs/etcetera/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/etcetera/template b/srcpkgs/etcetera/template index 02983edebec0..cdeffcf5482d 100644 --- a/srcpkgs/etcetera/template +++ b/srcpkgs/etcetera/template @@ -1,7 +1,7 @@ # Template file for 'etcetera' pkgname=etcetera version=1.0 -revision=3 +revision=4 pycompile_dirs="usr/lib/etcetera" depends="python3" short_desc="Config file management with a touch of wisdom" From 3ccab62384d9f3731ffaf1954011a74ea2003692 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:55 -0400 Subject: [PATCH 1329/1420] esptool: rebuild for Python 3.11 --- srcpkgs/esptool/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/esptool/template b/srcpkgs/esptool/template index 2e93e0140549..2adcc46099bf 100644 --- a/srcpkgs/esptool/template +++ b/srcpkgs/esptool/template @@ -1,7 +1,7 @@ # Template file for 'esptool' pkgname=esptool version=4.2.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-bitstring python3-cryptography python3-ecdsa python3-pyserial From e8d180e649f52c097cac388519a24a98355bd95c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 3 Oct 2022 19:46:18 -0400 Subject: [PATCH 1330/1420] epy: rebuild for Python 3.11 --- srcpkgs/epy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/epy/template b/srcpkgs/epy/template index ba05ffd465d2..d1127ba6e990 100644 --- a/srcpkgs/epy/template +++ b/srcpkgs/epy/template @@ -1,7 +1,7 @@ # Template file for 'epy' pkgname=epy version=2022.4.18 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3 python3-setuptools" depends="python3" From 16efaf6b79f0d6ebe227dba15356dfb12be1ff8b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:55 -0400 Subject: [PATCH 1331/1420] eolie: rebuild for Python 3.11 --- srcpkgs/eolie/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/eolie/template b/srcpkgs/eolie/template index 6287ae622683..82e0f49b2533 100644 --- a/srcpkgs/eolie/template +++ b/srcpkgs/eolie/template @@ -1,7 +1,7 @@ # Template file for 'eolie' pkgname=eolie version=0.9.62 -revision=5 +revision=6 _eolie_hash=bb4aad19272cc636bd17f2f6602127fe build_style=meson pycompile_module="eolie" From 120e2c2a0cb018e34d64d187da753dea92adae48 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:55 -0400 Subject: [PATCH 1332/1420] eog-plugins: rebuild for Python 3.11 --- 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 5756e0467a9e..51068d1a8857 100644 --- a/srcpkgs/eog-plugins/template +++ b/srcpkgs/eog-plugins/template @@ -1,7 +1,7 @@ # Template file for 'eog-plugins' pkgname=eog-plugins version=42.2 -revision=1 +revision=2 build_style=meson pycompile_dirs="usr/lib/eog/plugins" hostmakedepends="glib-devel pkg-config gettext" From d193bd0f54a395103a3c23acd2cc59534fecabc5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:55 -0400 Subject: [PATCH 1333/1420] electrum-ltc: rebuild for Python 3.11 --- srcpkgs/electrum-ltc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/electrum-ltc/template b/srcpkgs/electrum-ltc/template index c679e5a4d8cb..f476e2de0ed6 100644 --- a/srcpkgs/electrum-ltc/template +++ b/srcpkgs/electrum-ltc/template @@ -1,7 +1,7 @@ # Template file for 'electrum-ltc' pkgname=electrum-ltc version=3.3.8.1 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools python3-PyQt5-devel-tools" depends="python3-aiohttp python3-aiohttp_socks python3-aiorpcx From 51c8480ff08ec7da29829e38cebfec3ec0d29d11 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:55 -0400 Subject: [PATCH 1334/1420] electrum: rebuild for Python 3.11 --- srcpkgs/electrum/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template index 8cc5b2d4bfc8..dcabed755423 100644 --- a/srcpkgs/electrum/template +++ b/srcpkgs/electrum/template @@ -1,7 +1,7 @@ # Template file for 'electrum' pkgname=electrum version=4.2.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools python3-PyQt5-devel-tools" depends="python3-aiohttp python3-aiohttp_socks python3-aiorpcx From 4a594ef6ec86bf44bbb5fb092ed666a09e439608 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:55 -0400 Subject: [PATCH 1335/1420] edx-dl: rebuild for Python 3.11 --- srcpkgs/edx-dl/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/edx-dl/template b/srcpkgs/edx-dl/template index ae797a42f10f..9961081aa424 100644 --- a/srcpkgs/edx-dl/template +++ b/srcpkgs/edx-dl/template @@ -1,7 +1,7 @@ # Template file for 'edx-dl' pkgname=edx-dl version=0.1.13 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-BeautifulSoup4 python3-html5lib python3-setuptools From b5c14de9bfb9aa32a6e6c21f0f6ca4f31a12c721 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:55 -0400 Subject: [PATCH 1336/1420] duplicity: rebuild for Python 3.11 --- srcpkgs/duplicity/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/duplicity/template b/srcpkgs/duplicity/template index afb1eeabaf66..91672d3c15cb 100644 --- a/srcpkgs/duplicity/template +++ b/srcpkgs/duplicity/template @@ -1,7 +1,7 @@ # Template file for 'duplicity' pkgname=duplicity version=0.8.23 -revision=1 +revision=2 build_style=python3-module hostmakedepends="gettext python3-setuptools_scm" makedepends="python3-devel librsync-devel" From 20819cb732240349f8f5de748cc649fe2389c2b1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:56 -0400 Subject: [PATCH 1337/1420] duiadns: rebuild for Python 3.11 --- srcpkgs/duiadns/template | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/srcpkgs/duiadns/template b/srcpkgs/duiadns/template index f9fc5ab5e0b9..8c9ad5753492 100644 --- a/srcpkgs/duiadns/template +++ b/srcpkgs/duiadns/template @@ -1,9 +1,7 @@ # Template file for 'duiadns' pkgname=duiadns version=1.2 -revision=2 -build_style=python3-module -hostmakedepends="python3-setuptools" +revision=3 depends="python3-netifaces python3-netaddr python3-requests" short_desc="Python client for Duiadns dynamic DNS hosting service" maintainer="Andrew J. Hesford " @@ -16,11 +14,12 @@ _duiadns_homedir="/var/empty" _duiadns_descr="duiadns user" make_dirs="/var/cache/duiadns 0755 _duiadns _duiadns" conf_files="/etc/duiadns.conf" -# Package defines no tests -make_check=no +python_version=3 -post_install() { - vlicense LICENSE.txt +do_install() { + vbin duiadns vinstall sample.conf 0600 etc duiadns.conf vsv duiadns + + vlicense LICENSE.txt } From 617eacd9358424e4a2e3783bab3111686c712f77 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:56 -0400 Subject: [PATCH 1338/1420] distcc: rebuild for Python 3.11 --- srcpkgs/distcc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/distcc/template b/srcpkgs/distcc/template index cc7c733399a0..de16773fc33b 100644 --- a/srcpkgs/distcc/template +++ b/srcpkgs/distcc/template @@ -1,7 +1,7 @@ # Template file for 'distcc' pkgname=distcc version=3.3.3 -revision=6 +revision=7 build_style=gnu-configure configure_args="--disable-Werror" conf_files=" From f2afe57d78a33155283e973b114ac103635d46b8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:56 -0400 Subject: [PATCH 1339/1420] diffoscope: rebuild for Python 3.11 --- srcpkgs/diffoscope/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/diffoscope/template b/srcpkgs/diffoscope/template index b598edc3222e..3f30086c9e48 100644 --- a/srcpkgs/diffoscope/template +++ b/srcpkgs/diffoscope/template @@ -1,7 +1,7 @@ # Template file for 'diffoscope' pkgname=diffoscope version=221 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-magic python3-libarchive-c python3-progressbar From 1caec3cfd2b4a19f872ccca55471fdd8022e6898 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:56 -0400 Subject: [PATCH 1340/1420] devedeng: rebuild for Python 3.11 --- srcpkgs/devedeng/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template index e99cf74e0356..9fcd565c98ae 100644 --- a/srcpkgs/devedeng/template +++ b/srcpkgs/devedeng/template @@ -1,7 +1,7 @@ # Template file for 'devedeng' pkgname=devedeng version=4.17.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="gettext python3" depends="cdrtools desktop-file-utils dvdauthor ffmpeg gtk+3 From deb29d9cf9cdf5e4819480befae57be72539cfa8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:56 -0400 Subject: [PATCH 1341/1420] deluge: rebuild for Python 3.11 --- srcpkgs/deluge/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template index 8124c09f0ca3..6ac544ff9fa6 100644 --- a/srcpkgs/deluge/template +++ b/srcpkgs/deluge/template @@ -1,7 +1,7 @@ # Template file for 'deluge' pkgname=deluge version=2.0.5 -revision=2 +revision=3 build_style=python3-module # TODO package python3-slimit to minify javascript hostmakedepends="intltool python3-setuptools python3-wheel" From fc27dfe2fbb0d8ad68189750e87fffc2e57d3c2b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:56 -0400 Subject: [PATCH 1342/1420] d-feet: rebuild for Python 3.11 --- 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 5d924c7ab3a4..197c2dabaf4e 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=2 +revision=3 build_style=meson hostmakedepends="pkg-config intltool itstool python3-pycodestyle" makedepends="gtk+3-devel gobject-introspection" From 975ba957b96383adcb4f8720a45320f63b3f1c6d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:56 -0400 Subject: [PATCH 1343/1420] cutter: rebuild for Python 3.11 --- srcpkgs/cutter/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cutter/template b/srcpkgs/cutter/template index 7dda20353abd..c740c82eaae4 100644 --- a/srcpkgs/cutter/template +++ b/srcpkgs/cutter/template @@ -1,7 +1,7 @@ # Template file for 'cutter' pkgname=cutter version=2.1.2 -revision=1 +revision=2 wrksrc=Cutter-v${version} build_style=cmake configure_args="-DCUTTER_EXTRA_PLUGIN_DIRS=/usr/lib/rizin/cutter/plugins From dc07a5602ebc7870a5087445399789ca659edf04 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:56 -0400 Subject: [PATCH 1344/1420] curseradio: rebuild for Python 3.11 --- srcpkgs/curseradio/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template index a938acfca0bc..e4c55e743be0 100644 --- a/srcpkgs/curseradio/template +++ b/srcpkgs/curseradio/template @@ -1,7 +1,7 @@ # Template file for 'curseradio' pkgname=curseradio version=0.0.20171017 -revision=6 +revision=7 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d wrksrc="curseradio-${_commit}" build_style=python3-module From c858e02e3ffc207c4190f26ac381877260b47158 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:56 -0400 Subject: [PATCH 1345/1420] cura: rebuild for Python 3.11 --- srcpkgs/cura/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template index 8e0cc09ab8d3..b3f862f1e8e5 100644 --- a/srcpkgs/cura/template +++ b/srcpkgs/cura/template @@ -1,7 +1,7 @@ # Template file for 'cura' pkgname=cura version=4.13.1 -revision=1 +revision=2 wrksrc="Cura-${version}" build_style=cmake configure_args="-DCURA_VERSION=${version} From 1423791ed36fc6bf432d64360a95ba7888487112 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:57 -0400 Subject: [PATCH 1346/1420] ctop: rebuild for Python 3.11 --- srcpkgs/ctop/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template index 9ce405632116..dec5e9cd0f6d 100644 --- a/srcpkgs/ctop/template +++ b/srcpkgs/ctop/template @@ -1,7 +1,7 @@ # Template file for 'ctop' pkgname=ctop version=1.0.0 -revision=6 +revision=7 build_style=python3-module pycompile_module="cgroup_top.py" hostmakedepends="python3-setuptools" From 404ee8f4b9aeee68846cf33eabd9ef7b33d964a1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:57 -0400 Subject: [PATCH 1347/1420] csound: rebuild for Python 3.11 --- srcpkgs/csound/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/csound/template b/srcpkgs/csound/template index e9d28427b38a..c11b12bf28a2 100644 --- a/srcpkgs/csound/template +++ b/srcpkgs/csound/template @@ -1,7 +1,7 @@ # Template file for 'csound' pkgname=csound version=6.17.0 -revision=1 +revision=2 build_style=cmake configure_args=" -DLUA_MODULE_INSTALL_DIR=${XBPS_CROSS_BASE}/usr/lib/lua/5.1 From 648e99b563753fe86a976727f9ec1b0aa83e6f29 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:57 -0400 Subject: [PATCH 1348/1420] cross-arm-none-eabi-gdb: rebuild for Python 3.11 --- 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 0518fa371306..e4719873d6bf 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=11.1 -revision=2 +revision=3 wrksrc=gdb-${version} build_style=gnu-configure configure_args="--target=arm-none-eabi --disable-werror --disable-nls --with-system-readline From 79734dd11c251a7601ff54a9543ff245d4703755 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:57 -0400 Subject: [PATCH 1349/1420] cropgui: rebuild for Python 3.11 --- srcpkgs/cropgui/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cropgui/template b/srcpkgs/cropgui/template index 918b5ae132f9..1f29bccd99ad 100644 --- a/srcpkgs/cropgui/template +++ b/srcpkgs/cropgui/template @@ -1,7 +1,7 @@ # Template file for 'cropgui' pkgname=cropgui version=0.5 -revision=2 +revision=3 hostmakedepends="which python3" depends="python3 python3-Pillow python3-gobject libjpeg-turbo-tools ImageMagick exiftool" From d1ecb0eeec44fb701c8e56892279b9949cc8630e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:57 -0400 Subject: [PATCH 1350/1420] criu: rebuild for Python 3.11 --- srcpkgs/criu/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/criu/template b/srcpkgs/criu/template index 1a102a36bd2f..fcc486358873 100644 --- a/srcpkgs/criu/template +++ b/srcpkgs/criu/template @@ -1,7 +1,7 @@ # Template file for 'criu' pkgname=criu version=3.17.1 -revision=1 +revision=2 # i686 unsupported upstream: https://criu.org/32bit_tasks_C/R#Compatible_applications # ppc64 big endian not supported upstream archs="x86_64* aarch64* ppc64le* armv7l*" From a07592202dcebf0657959406a89ca28444979e2f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:57 -0400 Subject: [PATCH 1351/1420] cpuset: rebuild for Python 3.11 --- srcpkgs/cpuset/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template index 7b02b6898bf3..5cb62e787478 100644 --- a/srcpkgs/cpuset/template +++ b/srcpkgs/cpuset/template @@ -1,7 +1,7 @@ # Template file for 'cpuset' pkgname=cpuset version=1.6 -revision=4 +revision=5 build_style=python3-module pycompile_module="cpuset" hostmakedepends="python3-setuptools" From 1010925ca4f68b719ff460e04ec2a755d323d1b1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:57 -0400 Subject: [PATCH 1352/1420] cppman: rebuild for Python 3.11 --- srcpkgs/cppman/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cppman/template b/srcpkgs/cppman/template index f97c6300b2e5..11a59e0b87eb 100644 --- a/srcpkgs/cppman/template +++ b/srcpkgs/cppman/template @@ -1,7 +1,7 @@ # Template file for 'cppman' pkgname=cppman version=0.5.3 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-BeautifulSoup4 python3-html5lib python3-lxml" From ccab9ac4d9bfb65a45ba32ced554eee4f73b610e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:57 -0400 Subject: [PATCH 1353/1420] cozy: rebuild for Python 3.11 --- srcpkgs/cozy/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template index 3e4690800df4..c8c640fc0011 100644 --- a/srcpkgs/cozy/template +++ b/srcpkgs/cozy/template @@ -1,7 +1,7 @@ # Template file for 'cozy' pkgname=cozy version=1.2.1 -revision=1 +revision=2 build_style=meson hostmakedepends="pkg-config glib-devel python3 python3-distro python3-peewee python3-mutagen python3-gobject-devel gettext desktop-file-utils From 826e16d45f3832ba741e40010246275d87303825 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:57 -0400 Subject: [PATCH 1354/1420] coursera-dl: rebuild for Python 3.11 --- 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 a79cecd680d1..d2b346752952 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=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-attrs python3-setuptools python3-pyasn1 python3-ConfigArgParse From 3db033f1a30a44565e190aeda1979f81ff37a0c3 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Tue, 4 Oct 2022 20:08:47 -0400 Subject: [PATCH 1355/1420] collectd: rebuild for Python 3.11 --- srcpkgs/collectd/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/collectd/template b/srcpkgs/collectd/template index 2364b11ffeaa..5e93c45866ac 100644 --- a/srcpkgs/collectd/template +++ b/srcpkgs/collectd/template @@ -1,7 +1,7 @@ # Template file for 'collectd' pkgname=collectd version=5.12.0 -revision=7 +revision=8 build_style=gnu-configure configure_args="$(vopt_enable rrdtool rrdtool) $(vopt_enable perl perl) $(vopt_enable notify notify_desktop) --with-libiptc --enable-virt From b4e6a5a6d2088604b9175d16b7a9b3d1dbf39298 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:58 -0400 Subject: [PATCH 1356/1420] coccigrep: rebuild for Python 3.11 --- srcpkgs/coccigrep/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template index 2723dc7f1c11..a0b1b75045d9 100644 --- a/srcpkgs/coccigrep/template +++ b/srcpkgs/coccigrep/template @@ -1,7 +1,7 @@ # Template file for 'coccigrep' pkgname=coccigrep version=1.20 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3-setuptools" depends="coccinelle python3-Pygments" From 850eb277052f96ee96953f495a564fb7fe0e6dc4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:58 -0400 Subject: [PATCH 1357/1420] clearine: rebuild for Python 3.11 --- srcpkgs/clearine/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/clearine/template b/srcpkgs/clearine/template index 8645e4ee9203..7fcccfaae0c1 100644 --- a/srcpkgs/clearine/template +++ b/srcpkgs/clearine/template @@ -1,7 +1,7 @@ # Template file for 'clearine' pkgname=clearine version=0.7 -revision=6 +revision=7 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-gobject gtk+3 python3-cairo" From 5de05fe152b40724fe587a50bb35e227d715df2e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:58 -0400 Subject: [PATCH 1358/1420] cinnamon: rebuild for Python 3.11 --- srcpkgs/cinnamon/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cinnamon/template b/srcpkgs/cinnamon/template index 45ba1fb2ea7a..5df0651e77c7 100644 --- a/srcpkgs/cinnamon/template +++ b/srcpkgs/cinnamon/template @@ -1,7 +1,7 @@ # Template file for 'cinnamon' pkgname=cinnamon version=5.4.9 -revision=1 +revision=2 build_helper=gir build_style=meson hostmakedepends="libtool pkg-config gobject-introspection gettext From 278bf568c67bcbc515357fc4a5a5365a05473370 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:58 -0400 Subject: [PATCH 1359/1420] certbot-nginx: rebuild for Python 3.11 --- 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 afea1c5a1a43..f3d3942242cf 100644 --- a/srcpkgs/certbot-nginx/template +++ b/srcpkgs/certbot-nginx/template @@ -1,7 +1,7 @@ # Template file for 'certbot-nginx' pkgname=certbot-nginx version=1.31.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="certbot python3-acme python3-parsing python3-zope.interface" From e0c9db480bef31af9916c87a231c127664fbc3ca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:58 -0400 Subject: [PATCH 1360/1420] certbot-apache: rebuild for Python 3.11 --- 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 0300fbdb7dba..41ac54c08898 100644 --- a/srcpkgs/certbot-apache/template +++ b/srcpkgs/certbot-apache/template @@ -1,7 +1,7 @@ # Template file for 'certbot-apache' pkgname=certbot-apache version=1.31.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="certbot python3-acme python3-augeas python3-zope.interface" From 86e1ecad7ec8c42576a53a401934e96020727e70 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:58 -0400 Subject: [PATCH 1361/1420] ccsm: rebuild for Python 3.11 --- srcpkgs/ccsm/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template index d8cf25e980bb..6d17485b9027 100644 --- a/srcpkgs/ccsm/template +++ b/srcpkgs/ccsm/template @@ -1,7 +1,7 @@ # Template file for 'ccsm' pkgname=ccsm version=0.8.18 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3 intltool" depends="compizconfig-python python3-xlib python3-gobject" From 9f1fd4545ddeaac7d842189f35634901900c2ac4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:58 -0400 Subject: [PATCH 1362/1420] catfish: rebuild for Python 3.11 --- srcpkgs/catfish/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template index 9bdd7e4779e5..67109dfcdbd5 100644 --- a/srcpkgs/catfish/template +++ b/srcpkgs/catfish/template @@ -1,7 +1,7 @@ # Template file for 'catfish' pkgname=catfish version=4.16.4 -revision=1 +revision=2 build_style=python3-module hostmakedepends="intltool python3-distutils-extra python3-gobject" depends="desktop-file-utils gtk+3 hicolor-icon-theme python3-gobject From de9493145cf5aa1d87ff3753a5a66e5cb64c163a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:58 -0400 Subject: [PATCH 1363/1420] castero: rebuild for Python 3.11 --- srcpkgs/castero/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/castero/template b/srcpkgs/castero/template index 73fa37d1d2b3..aeee6933061d 100644 --- a/srcpkgs/castero/template +++ b/srcpkgs/castero/template @@ -1,7 +1,7 @@ # Template file for 'castero' pkgname=castero version=0.9.4 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" # taken from https://github.com/xgi/castero/blob/master/requirements.txt, From bfaa517fdb800e8c1c0701f0d2f7f940966b9ae9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:59 -0400 Subject: [PATCH 1364/1420] canto-curses: rebuild for Python 3.11 --- 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 c3054b8c02f2..934758aaf90c 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=8 +revision=9 build_style=python3-module pycompile_dirs="/usr/lib/canto/plugins" hostmakedepends="python3-setuptools" From 94abd54499da2a6bb2a19eba3eb87a455664a46b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:59 -0400 Subject: [PATCH 1365/1420] calibre: rebuild for Python 3.11 --- srcpkgs/calibre/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/calibre/template b/srcpkgs/calibre/template index 1ecfaacf8f63..49c132d0c187 100644 --- a/srcpkgs/calibre/template +++ b/srcpkgs/calibre/template @@ -1,7 +1,7 @@ # Template file for 'calibre' pkgname=calibre version=5.44.0 -revision=1 +revision=2 build_style=python3-module pycompile_dirs="/usr/lib/calibre/" hostmakedepends="pkg-config python3-BeautifulSoup4 python3-Pillow python3-PyQt5-svg From 6397a1ebfeea96bc193d594b73685f47cb3b515f Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:59 -0400 Subject: [PATCH 1366/1420] cairo-dock-plugins: rebuild for Python 3.11 --- 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 62137ba83adc..59385d1b5d09 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=16 +revision=17 build_style=cmake hostmakedepends="gettext pkg-config" makedepends="alsa-lib-devel fftw-devel pulseaudio-devel libexif-devel From 07d14af1f40edb0ddb7607c3020bce18d3beb095 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:59 -0400 Subject: [PATCH 1367/1420] caffeine-ng: rebuild for Python 3.11 --- 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 a1c05470097f..4f1b6774cdd2 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=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools_scm" depends="desktop-file-utils gtk+3 hicolor-icon-theme libnotify From f2fff2605314678276f2b0266d116a1fa25777a9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:59 -0400 Subject: [PATCH 1368/1420] cadence: rebuild for Python 3.11 --- srcpkgs/cadence/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/cadence/template b/srcpkgs/cadence/template index c11cc50df02e..bff3fa2c6aed 100644 --- a/srcpkgs/cadence/template +++ b/srcpkgs/cadence/template @@ -1,7 +1,7 @@ # Template file for 'cadence' pkgname=cadence version=0.9.2 -revision=2 +revision=3 wrksrc="Cadence-${version}" build_style=gnu-makefile pycompile_dirs="usr/share/cadence/src" From b0cfe6617845e4f6a8573877f38fa7b4fafb7ece Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:59 -0400 Subject: [PATCH 1369/1420] bumblebee-status: rebuild for Python 3.11 --- 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 072bbcd1bc84..2f7bfa487c10 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.4 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-netifaces python3-psutil python3-requests" From d298c8d81a3969c1df46124c005eb72f89ebeec1 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:59 -0400 Subject: [PATCH 1370/1420] bum: rebuild for Python 3.11 --- srcpkgs/bum/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template index ba85ad35b747..22c0434a209f 100644 --- a/srcpkgs/bum/template +++ b/srcpkgs/bum/template @@ -1,7 +1,7 @@ # Template file for 'bum' pkgname=bum version=0.1.3 -revision=7 +revision=8 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-mpd2 python3-musicbrainzngs python3-mpv" From aa540f47ce5528dbc52697bad5c2144534326aa8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:59 -0400 Subject: [PATCH 1371/1420] btrfs-backup: rebuild for Python 3.11 --- 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 a03de8a7d406..31201077ee06 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=4 +revision=5 wrksrc="${pkgname/-/_}-${version}" build_style=python3-module pycompile_module="${pkgname/-/_}" From 013e070781580ba8e74346e988acdc47bff8c2ca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:59 -0400 Subject: [PATCH 1372/1420] botan: rebuild for Python 3.11 --- srcpkgs/botan/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/botan/template b/srcpkgs/botan/template index 330cbcc93314..ce9541b69f35 100644 --- a/srcpkgs/botan/template +++ b/srcpkgs/botan/template @@ -1,7 +1,7 @@ # Template file for 'botan' pkgname=botan version=2.19.2 -revision=1 +revision=2 wrksrc="${pkgname^}-${version}" build_style=gnu-makefile hostmakedepends="doxygen python3" From cac79dce8305984515a7f71d60f6d3ef92363264 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:00 -0400 Subject: [PATCH 1373/1420] borgmatic: rebuild for Python 3.11 --- srcpkgs/borgmatic/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template index 231fb397c8ee..0ca51411ec76 100644 --- a/srcpkgs/borgmatic/template +++ b/srcpkgs/borgmatic/template @@ -1,7 +1,7 @@ # Template file for 'borgmatic' pkgname=borgmatic version=1.7.4 -revision=1 +revision=2 build_style=python3-module # test_borgmatic.py runs not yet installed self, # tests from test_execute.py sporadically fail in CI From a86aeaa04b74fd63f4ebcb46b8754670d67681e4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:00 -0400 Subject: [PATCH 1374/1420] bootchart2: rebuild for Python 3.11 --- srcpkgs/bootchart2/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/bootchart2/template b/srcpkgs/bootchart2/template index 8e8281a9e9f1..ebe17bac52e1 100644 --- a/srcpkgs/bootchart2/template +++ b/srcpkgs/bootchart2/template @@ -1,7 +1,7 @@ # Template file for 'bootchart2' pkgname=bootchart2 version=0.14.9 -revision=2 +revision=3 wrksrc="bootchart-${version}" build_style=gnu-makefile make_install_args="EARLY_PREFIX=/usr DOCDIR=/usr/share/doc/bootchart2" From bd638e28a30c22788f1260bf925831c605c9f979 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:00 -0400 Subject: [PATCH 1375/1420] blueprint-compiler: rebuild for Python 3.11 --- 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 a74d7acdffb8..55f8481285b4 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.4.0 -revision=1 +revision=2 wrksrc="${pkgname}-v${version}" build_style=meson depends="python3-gobject gobject-introspection" From fe4d0e5e09a0360aa01ff36f27a7d0af12fb2c31 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:00 -0400 Subject: [PATCH 1376/1420] blueman: rebuild for Python 3.11 --- srcpkgs/blueman/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/blueman/template b/srcpkgs/blueman/template index d2e6b46957ce..936ddfce8248 100644 --- a/srcpkgs/blueman/template +++ b/srcpkgs/blueman/template @@ -1,7 +1,7 @@ # Template file for 'blueman' pkgname=blueman version=2.3.4 -revision=1 +revision=2 build_style=gnu-configure configure_args="--disable-static" hostmakedepends="intltool iproute2 pkg-config python3-Cython glib-devel From 2032389cf0a30c8358b3d67aa08c24e802c8bbfc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:00 -0400 Subject: [PATCH 1377/1420] bluefish: rebuild for Python 3.11 --- srcpkgs/bluefish/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/bluefish/template b/srcpkgs/bluefish/template index 02dc207aa330..8ad3d7b0500c 100644 --- a/srcpkgs/bluefish/template +++ b/srcpkgs/bluefish/template @@ -1,7 +1,7 @@ # Template file for 'bluefish' pkgname=bluefish version=2.2.12 -revision=3 +revision=4 build_style=gnu-configure configure_args="--enable-spell-check --disable-update-databases --disable-xml-catalog-update $(vopt_enable python)" From fa70ae3679250931b896f5ab62776423402852f7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:00 -0400 Subject: [PATCH 1378/1420] blender: rebuild for Python 3.11 --- srcpkgs/blender/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/blender/template b/srcpkgs/blender/template index 2a59b9c32599..29481e40a7b6 100644 --- a/srcpkgs/blender/template +++ b/srcpkgs/blender/template @@ -1,7 +1,7 @@ # Template file for 'blender' pkgname=blender version=3.3.0 -revision=1 +revision=2 archs="x86_64* ppc64*" build_style="cmake" pycompile_dirs="/usr/share/blender/${version%.*}/scripts" From 501ceb497c5b7bdf2bf6d8fab1a3ab856a750e91 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:00 -0400 Subject: [PATCH 1379/1420] black: rebuild for Python 3.11 --- srcpkgs/black/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/black/template b/srcpkgs/black/template index 1ace4ae8a5ce..cf011b616ebf 100644 --- a/srcpkgs/black/template +++ b/srcpkgs/black/template @@ -1,7 +1,7 @@ # Template file for 'black' pkgname=black version=22.10.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="hatchling hatch-vcs" depends="python3-click python3-platformdirs python3-tomli python3-pathspec python3-mypy_extensions" From 72022930de84b1ca5983858ef8e47dfb64563fc0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:00 -0400 Subject: [PATCH 1380/1420] beets: rebuild for Python 3.11 --- srcpkgs/beets/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template index 90fab44dde87..494aec20800e 100644 --- a/srcpkgs/beets/template +++ b/srcpkgs/beets/template @@ -1,7 +1,7 @@ # Template file for 'beets' pkgname=beets version=1.6.0 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-munkres python3-musicbrainzngs python3-Unidecode python3-yaml From e4ae4005219e48241038e27e371c36c2dc7beabf Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:00 -0400 Subject: [PATCH 1381/1420] bcc: rebuild for Python 3.11 --- srcpkgs/bcc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/bcc/template b/srcpkgs/bcc/template index d7fd40774724..eb128dd836c5 100644 --- a/srcpkgs/bcc/template +++ b/srcpkgs/bcc/template @@ -1,7 +1,7 @@ # Template file for 'bcc' pkgname=bcc version=0.25.0 -revision=1 +revision=2 wrksrc="bcc" build_style=cmake configure_args="-DREVISION=${version} -DENABLE_LLVM_SHARED=1" From 19dd0c3a8eba527f98de8418f83c4990b4264bee Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:01 -0400 Subject: [PATCH 1382/1420] backintime: rebuild for Python 3.11 --- srcpkgs/backintime/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/backintime/template b/srcpkgs/backintime/template index 9763814a1350..2d8c9328216f 100644 --- a/srcpkgs/backintime/template +++ b/srcpkgs/backintime/template @@ -1,7 +1,7 @@ # Template file for 'backintime' pkgname=backintime version=1.3.1 -revision=1 +revision=2 configure_args="--python3" pycompile_dirs="/usr/share/backintime" hostmakedepends="gettext python3" From dce78aeb44bf6b578f515579febc9063ad9b3514 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:01 -0400 Subject: [PATCH 1383/1420] backblaze-b2: rebuild for Python 3.11 --- 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 c17e8a06683c..f1d315115dab 100644 --- a/srcpkgs/backblaze-b2/template +++ b/srcpkgs/backblaze-b2/template @@ -1,7 +1,7 @@ # Template file for 'backblaze-b2' pkgname=backblaze-b2 version=2.1.0 -revision=2 +revision=3 wrksrc="b2-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 588ceb3a934a81752ff327ffeeb091788ae423d4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:01 -0400 Subject: [PATCH 1384/1420] bCNC: rebuild for Python 3.11 --- srcpkgs/bCNC/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/bCNC/template b/srcpkgs/bCNC/template index 00e403f55fee..9e1a276daea7 100644 --- a/srcpkgs/bCNC/template +++ b/srcpkgs/bCNC/template @@ -1,7 +1,7 @@ # Template file for 'bCNC' pkgname=bCNC version=0.9.14.307 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pyserial python3-Pillow python3-tkinter python3-numpy python3-scipy" From 92153fee6b68130374dcc652f61cc00f941a28d7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:01 -0400 Subject: [PATCH 1385/1420] azote: rebuild for Python 3.11 --- srcpkgs/azote/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template index 0e2132d28781..8206ac307460 100644 --- a/srcpkgs/azote/template +++ b/srcpkgs/azote/template @@ -1,7 +1,7 @@ # Template file for 'azote' pkgname=azote version=1.9.5 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-setuptools python3-cairo python3-gobject python3-Pillow gtk+3" From 3da2d1a82d2a0d94f3240bb9b66e235af72f441c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:01 -0400 Subject: [PATCH 1386/1420] awsume: rebuild for Python 3.11 --- srcpkgs/awsume/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/awsume/template b/srcpkgs/awsume/template index 01ede3d4e3e4..12b15509b1fd 100644 --- a/srcpkgs/awsume/template +++ b/srcpkgs/awsume/template @@ -1,7 +1,7 @@ # Template file for 'awsume' pkgname=awsume version=4.5.3 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3 python3-setuptools" makedepends="python3-argcomplete python3-boto3 python3-colorama python3-coverage From 2a16bd800a96c2f205423298aa14db1f92b844b8 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:01 -0400 Subject: [PATCH 1387/1420] aws-cli: rebuild for Python 3.11 --- 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 6e543f674359..2fdbf1553033 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=1 +revision=2 wrksrc="aws-cli-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 383302143c9d9b83fe2cbfa998558b42217558cb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:01 -0400 Subject: [PATCH 1388/1420] avr-gdb: rebuild for Python 3.11 --- 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 c31d91cc4c5b..d1c2b68496bf 100644 --- a/srcpkgs/avr-gdb/template +++ b/srcpkgs/avr-gdb/template @@ -1,7 +1,7 @@ # Template file for 'avr-gdb' pkgname=avr-gdb version=11.1 -revision=2 +revision=3 wrksrc=gdb-${version} build_style=gnu-configure configure_args="--target=avr --disable-werror --disable-nls --with-system-readline From 0f0423edce70b304ab16643241fe55a9e55b272d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:01 -0400 Subject: [PATCH 1389/1420] avideo: rebuild for Python 3.11 --- srcpkgs/avideo/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template index ca74d42c3240..7b6b30ec4e82 100644 --- a/srcpkgs/avideo/template +++ b/srcpkgs/avideo/template @@ -1,7 +1,7 @@ # Template file for 'avideo' pkgname=avideo version=2017.9.27 -revision=7 +revision=8 wrksrc="avideo" build_style=python3-module hostmakedepends="python3" From 5982c7698ce3fdf7931ea37aabe4b45992217345 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:01 -0400 Subject: [PATCH 1390/1420] autotiling: rebuild for Python 3.11 --- srcpkgs/autotiling/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/autotiling/template b/srcpkgs/autotiling/template index af5d2baf7759..c75a2e8ca0ed 100644 --- a/srcpkgs/autotiling/template +++ b/srcpkgs/autotiling/template @@ -1,7 +1,7 @@ # Template file for 'autotiling' pkgname=autotiling version=1.7 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-wheel" depends="python3-i3ipc" From 33e15afbbb3f750994b568b3e1a1d9fffd9da94d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:02 -0400 Subject: [PATCH 1391/1420] autorandr: rebuild for Python 3.11 --- srcpkgs/autorandr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template index d3596f0703ac..d8674eb21e5a 100644 --- a/srcpkgs/autorandr/template +++ b/srcpkgs/autorandr/template @@ -1,7 +1,7 @@ # Template file for 'autorandr' pkgname=autorandr version=1.12.1 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools pkg-config" depends="python3-setuptools xrandr" From 46639a4fb8b900eb5bbe248187b9606f1a45584b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:02 -0400 Subject: [PATCH 1392/1420] autopep8: rebuild for Python 3.11 --- srcpkgs/autopep8/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/autopep8/template b/srcpkgs/autopep8/template index cf8753baa323..11352324593f 100644 --- a/srcpkgs/autopep8/template +++ b/srcpkgs/autopep8/template @@ -1,7 +1,7 @@ # Template file for 'autopep8' pkgname=autopep8 version=1.7.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-pycodestyle python3-toml" From c82b9017b50d7971b08650f77edc839bf67f8ff2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:02 -0400 Subject: [PATCH 1393/1420] audit: rebuild for Python 3.11 --- srcpkgs/audit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template index 800c1e50fb44..7e1e4dab2f45 100644 --- a/srcpkgs/audit/template +++ b/srcpkgs/audit/template @@ -1,7 +1,7 @@ # Template file for 'audit' pkgname=audit version=3.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 196cc91934e6f59ab4ce89d3c0c6cc0dc6da46b2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:02 -0400 Subject: [PATCH 1394/1420] attic: rebuild for Python 3.11 --- srcpkgs/attic/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/attic/template b/srcpkgs/attic/template index 2a52e536f94b..1721a0faeced 100644 --- a/srcpkgs/attic/template +++ b/srcpkgs/attic/template @@ -1,7 +1,7 @@ # Template file for 'attic' pkgname=attic version=0.16 -revision=21 +revision=22 wrksrc="Attic-$version" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython python3-Sphinx" From d3409596b336e86c3717dfa4592407c4e2949ef9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:02 -0400 Subject: [PATCH 1395/1420] asciinema: rebuild for Python 3.11 --- srcpkgs/asciinema/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template index 3cf6954c8298..f2449f888f7e 100644 --- a/srcpkgs/asciinema/template +++ b/srcpkgs/asciinema/template @@ -1,7 +1,7 @@ # Template file for 'asciinema' pkgname=asciinema version=2.2.0 -revision=1 +revision=2 build_style=python3-pep517 hostmakedepends="python3-wheel" depends="python3" From 1358b00c6df2afef189080842af6e2b2fb728c96 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:02 -0400 Subject: [PATCH 1396/1420] arandr: rebuild for Python 3.11 --- srcpkgs/arandr/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template index 9853f0d674f3..a54ee56be961 100644 --- a/srcpkgs/arandr/template +++ b/srcpkgs/arandr/template @@ -1,7 +1,7 @@ # Template file for 'arandr' pkgname=arandr version=0.1.10 -revision=6 +revision=7 build_style=python3-module hostmakedepends="gettext python3-setuptools python3-docutils" depends="python3-gobject gtk+3 xrandr" From 2ee46dcc970909e2a87a8a71ed8bff9b725b5617 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:02 -0400 Subject: [PATCH 1397/1420] apostrophe: rebuild for Python 3.11 --- srcpkgs/apostrophe/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/apostrophe/template b/srcpkgs/apostrophe/template index ac880ca649a2..1eaa8fa1a13c 100644 --- a/srcpkgs/apostrophe/template +++ b/srcpkgs/apostrophe/template @@ -1,7 +1,7 @@ # Template file for 'apostrophe' pkgname=apostrophe version=2.6.3 -revision=1 +revision=2 wrksrc="$pkgname-v$version" build_style=meson build_helper=gir From f44d0704ba3c4cebc2305ac0023d4e593e3f5ad2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:02 -0400 Subject: [PATCH 1398/1420] ansible: rebuild for Python 3.11 --- srcpkgs/ansible/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template index f3f88c745bf5..926ca06283e3 100644 --- a/srcpkgs/ansible/template +++ b/srcpkgs/ansible/template @@ -1,7 +1,7 @@ # Template file for 'ansible' pkgname=ansible version=6.4.0 -revision=1 +revision=2 build_style="python3-pep517" hostmakedepends="python3-setuptools python3-wheel" depends="ansible-core" From 7bc0f0bc422c07ec3b2ce62e3caf3b7eb815cf1a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:02 -0400 Subject: [PATCH 1399/1420] angrysearch: rebuild for Python 3.11 --- srcpkgs/angrysearch/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/angrysearch/template b/srcpkgs/angrysearch/template index fa126e31db38..d145d1642291 100644 --- a/srcpkgs/angrysearch/template +++ b/srcpkgs/angrysearch/template @@ -1,7 +1,7 @@ # Template file for 'angrysearch' pkgname=angrysearch version=1.0.1 -revision=4 +revision=5 wrksrc="ANGRYsearch-${version}" pycompile_dirs="usr/share/angrysearch" hostmakedepends="python3" From 674305e3bcb314aa5d1322d3f5266b9c9364cc26 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:02 -0400 Subject: [PATCH 1400/1420] alot: rebuild for Python 3.11 --- srcpkgs/alot/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template index 69db144f617a..e90765b84e95 100644 --- a/srcpkgs/alot/template +++ b/srcpkgs/alot/template @@ -1,7 +1,7 @@ # Template file for 'alot' pkgname=alot version=0.9.1 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-setuptools python3-Sphinx" depends="python3-setuptools python3-Twisted notmuch-python3 python3-configobj From 3770233e477eae21495cd5062ef57855c45ddab5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:03 -0400 Subject: [PATCH 1401/1420] alienfx: rebuild for Python 3.11 --- srcpkgs/alienfx/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/alienfx/template b/srcpkgs/alienfx/template index 1ce1f9188213..9b1420a4d366 100644 --- a/srcpkgs/alienfx/template +++ b/srcpkgs/alienfx/template @@ -1,7 +1,7 @@ # Template file for 'alienfx' pkgname=alienfx version=2.4.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-usb python3-cairo python3-gobject python3-setuptools From 395ea85af38e9c4f2ae33fa6249ebf532c5635f9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:03 -0400 Subject: [PATCH 1402/1420] aircrack-ng: rebuild for Python 3.11 --- 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 10e1677483d6..85e28931e5fb 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=1 +revision=2 build_style=gnu-configure hostmakedepends="automake ethtool libtool pkg-config python3" makedepends="libhwloc-devel libnl3-devel libpcap-devel libpciaccess-devel From 0a3e3fdb3213405f281789a201e03d1a7a3dc7c7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:03 -0400 Subject: [PATCH 1403/1420] afew: rebuild for Python 3.11 --- srcpkgs/afew/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template index 2b66b5c5e18c..eb0faa6d4984 100644 --- a/srcpkgs/afew/template +++ b/srcpkgs/afew/template @@ -1,7 +1,7 @@ # Template file for 'afew' pkgname=afew version=3.0.1 -revision=4 +revision=5 build_style=python3-module hostmakedepends="python3-setuptools_scm python3-Sphinx pkg-config" depends="notmuch-python3 python3-dkimpy python3-chardet notmuch" From 72709919ba59d403a35bb0285027c932932bdc41 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:03 -0400 Subject: [PATCH 1404/1420] activityrelay: rebuild for Python 3.11 --- srcpkgs/activityrelay/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/activityrelay/template b/srcpkgs/activityrelay/template index 9529e59238c6..0a9d13584ab5 100644 --- a/srcpkgs/activityrelay/template +++ b/srcpkgs/activityrelay/template @@ -1,7 +1,7 @@ # Template file for 'activityrelay' pkgname=activityrelay version=0.2.2 -revision=1 +revision=2 wrksrc="relay-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 1f693bf96c7f987c71eb3d40dc54fbe838f4508c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:03 -0400 Subject: [PATCH 1405/1420] TwitchNotifier: rebuild for Python 3.11 --- srcpkgs/TwitchNotifier/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template index b5fbfed27af1..4e955880c211 100644 --- a/srcpkgs/TwitchNotifier/template +++ b/srcpkgs/TwitchNotifier/template @@ -1,7 +1,7 @@ # Template file for 'TwitchNotifier' pkgname=TwitchNotifier version=0.5 -revision=5 +revision=6 build_style=python3-module hostmakedepends="python3-devel" makedepends="python3-devel" From 66d86b1c55f20862698cba0926af01293a90b058 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:03 -0400 Subject: [PATCH 1406/1420] Trimage: rebuild for Python 3.11 --- srcpkgs/Trimage/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/Trimage/template b/srcpkgs/Trimage/template index fe556186d503..1cc7385aa2be 100644 --- a/srcpkgs/Trimage/template +++ b/srcpkgs/Trimage/template @@ -1,7 +1,7 @@ # Template file for 'Trimage' pkgname=Trimage version=1.0.6 -revision=4 +revision=5 wrksrc="Trimage-${version}" build_style=python3-module hostmakedepends="python3" From 4eb4616838c78cf299328c91251c8ca11cd266ac Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:03 -0400 Subject: [PATCH 1407/1420] Solaar: rebuild for Python 3.11 --- srcpkgs/Solaar/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template index 50064f81a68c..854f058f6afe 100644 --- a/srcpkgs/Solaar/template +++ b/srcpkgs/Solaar/template @@ -1,7 +1,7 @@ # Template file for 'Solaar' pkgname=Solaar version=1.1.5 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3-setuptools" depends="python3-evdev python3-pyudev python3-psutil python3-yaml From d222cd1894ad099a1a230cc5f13d2117f1bbef41 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:03 -0400 Subject: [PATCH 1408/1420] ReText: rebuild for Python 3.11 --- srcpkgs/ReText/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template index 100044f19d08..4250e68c09ea 100644 --- a/srcpkgs/ReText/template +++ b/srcpkgs/ReText/template @@ -1,7 +1,7 @@ # Template file for 'ReText' pkgname=ReText version=7.2.1 -revision=2 +revision=3 wrksrc="${pkgname,,}-${version}" build_style=python3-module hostmakedepends="ImageMagick python3 qt5-host-tools qt5-tools python3-setuptools" From 1c8020e8619d2a4673ce0081c842d19b6e7c7f8b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:03 -0400 Subject: [PATCH 1409/1420] PyInstaller: rebuild for Python 3.11 --- srcpkgs/PyInstaller/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/PyInstaller/template b/srcpkgs/PyInstaller/template index aff08cf33e23..389544fd28d0 100644 --- a/srcpkgs/PyInstaller/template +++ b/srcpkgs/PyInstaller/template @@ -1,7 +1,7 @@ # Template file for 'PyInstaller' pkgname=PyInstaller version=4.1 -revision=2 +revision=3 wrksrc="pyinstaller-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 7c2f97e3246c7c9a1d3bcdca96cd7f31963822ed Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:04 -0400 Subject: [PATCH 1410/1420] PhotoCollage: rebuild for Python 3.11 --- srcpkgs/PhotoCollage/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template index 4e8ec2cb7ef5..ebfb776fc25d 100644 --- a/srcpkgs/PhotoCollage/template +++ b/srcpkgs/PhotoCollage/template @@ -1,7 +1,7 @@ # Template file for 'PhotoCollage' pkgname=PhotoCollage version=1.4.4 -revision=5 +revision=6 build_style=python3-module hostmakedepends="gettext python3" depends="python3-Pillow python3-gobject" From d66a32cbcdbacae5dc3847e6e0b276a1eff3ef8c Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:04 -0400 Subject: [PATCH 1411/1420] PackageKit: rebuild for Python 3.11 --- srcpkgs/PackageKit/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/PackageKit/template b/srcpkgs/PackageKit/template index 944bcc83f6c0..964ddde92c35 100644 --- a/srcpkgs/PackageKit/template +++ b/srcpkgs/PackageKit/template @@ -1,7 +1,7 @@ # Template file for 'PackageKit' pkgname=PackageKit version=1.2.4 -revision=1 +revision=2 wrksrc="PackageKit-PACKAGEKIT_${version//./_}" build_style=meson build_helper="gir" From a1e25d789c0b192ad939dd325731d202a985d288 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:04 -0400 Subject: [PATCH 1412/1420] OpenLP: rebuild for Python 3.11 --- srcpkgs/OpenLP/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template index e8dd194f52b5..7062545f0f16 100644 --- a/srcpkgs/OpenLP/template +++ b/srcpkgs/OpenLP/template @@ -1,7 +1,7 @@ # Template file for 'OpenLP' pkgname=OpenLP version=2.9.5 -revision=1 +revision=2 create_wrksrc=yes build_style=python3-module hostmakedepends="python3-setuptools qt5-host-tools" From a13e1151108bae3491fee8083d7a9fafc2748bfb Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:04 -0400 Subject: [PATCH 1413/1420] LabJackPython: rebuild for Python 3.11 --- srcpkgs/LabJackPython/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/LabJackPython/template b/srcpkgs/LabJackPython/template index 50b91a21f3e0..5c7f10938db4 100644 --- a/srcpkgs/LabJackPython/template +++ b/srcpkgs/LabJackPython/template @@ -1,7 +1,7 @@ # Template file for 'LabJackPython' pkgname=LabJackPython version=2.0.4 -revision=3 +revision=4 build_style=python3-module hostmakedepends="python3" depends="python3 exodriver" From c2366591bcc350699ba447c1a2f43c317a2287b4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:04 -0400 Subject: [PATCH 1414/1420] Komikku: rebuild for Python 3.11 --- srcpkgs/Komikku/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/Komikku/template b/srcpkgs/Komikku/template index ea3a92befc9f..6300fc1f8b13 100644 --- a/srcpkgs/Komikku/template +++ b/srcpkgs/Komikku/template @@ -1,7 +1,7 @@ # Template file for 'Komikku' pkgname=Komikku version=1.1.0 -revision=1 +revision=2 wrksrc=Komikku-v${version} build_style=meson hostmakedepends="gettext glib-devel gobject-introspection pkg-config From 27b71685177a1265334e799a3c91712c25fe6dad Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:04 -0400 Subject: [PATCH 1415/1420] Grammalecte: rebuild for Python 3.11 --- srcpkgs/Grammalecte/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/Grammalecte/template b/srcpkgs/Grammalecte/template index ead50b056cc1..683a025b55fc 100644 --- a/srcpkgs/Grammalecte/template +++ b/srcpkgs/Grammalecte/template @@ -1,7 +1,7 @@ # Template file for 'Grammalecte' pkgname=Grammalecte version=1.6.0 -revision=4 +revision=5 create_wrksrc=yes build_style=python3-module hostmakedepends="python3-setuptools" From 0f31e50a437a3e27f08b970b57dade4a18ccd430 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Fri, 7 Oct 2022 13:35:35 -0400 Subject: [PATCH 1416/1420] GCP-Guest-Environment: rebuild for Python 3.11 --- 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 1a237402da69..a03ab886e2ac 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=3 +revision=4 wrksrc="compute-image-packages-${version}" build_wrksrc="packages/python-google-compute-engine" build_style=python3-module From fd88b33d8f1d20ffa1563612d30b708fb02f2541 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:04 -0400 Subject: [PATCH 1417/1420] Electron-Cash: rebuild for Python 3.11 --- srcpkgs/Electron-Cash/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/Electron-Cash/template b/srcpkgs/Electron-Cash/template index fd54dfe07677..38ca3449b093 100644 --- a/srcpkgs/Electron-Cash/template +++ b/srcpkgs/Electron-Cash/template @@ -1,7 +1,7 @@ # Template file for 'Electron-Cash' pkgname=Electron-Cash version=4.2.10 -revision=2 +revision=3 build_style=python3-module hostmakedepends="python3-setuptools python3-PyQt5-devel-tools" depends="python3-PyQt5 python3-PyQt5-svg python3-qrcode python3-dateutil From 1d21e4da774beb486a6cf5b323c724cd15a2c52d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:04 -0400 Subject: [PATCH 1418/1420] Carla: rebuild for Python 3.11 --- srcpkgs/Carla/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/Carla/template b/srcpkgs/Carla/template index 44d7fc099ca8..c383f7b3133e 100644 --- a/srcpkgs/Carla/template +++ b/srcpkgs/Carla/template @@ -1,7 +1,7 @@ # Template file for 'Carla' pkgname=Carla version=2.5.1 -revision=1 +revision=2 archs="x86_64* i686* aarch64* arm*" build_style=gnu-makefile pycompile_dirs="usr/share/carla" From 7ed8e64f6a0c18a43263ddf97d6a7a31421396e4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Thu, 29 Sep 2022 15:22:17 -0400 Subject: [PATCH 1419/1420] firefox: fix build with Python 3.11 --- srcpkgs/firefox/patches/ply-python3.11.patch | 85 ++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 srcpkgs/firefox/patches/ply-python3.11.patch diff --git a/srcpkgs/firefox/patches/ply-python3.11.patch b/srcpkgs/firefox/patches/ply-python3.11.patch new file mode 100644 index 000000000000..8d1415a4b369 --- /dev/null +++ b/srcpkgs/firefox/patches/ply-python3.11.patch @@ -0,0 +1,85 @@ +The Ply lexer, which doesn't seem too active a project, wraps regular +expressions from grammar definitions in its own regular expressions that name +groups. This breaks re.compile in Python >= 3.11 when the original expressions +contain global flags, because the compiler requires that global flags appear at +the start of the expression instead of inside the named group. + +This patch wraps re.compile to scan the expression for any global flags and, +when found, moves them to the start of the expression. + +--- a/third_party/python/ply/ply/lex.py ++++ b/third_party/python/ply/ply/lex.py +@@ -49,6 +49,37 @@ + # Python 3.0 + StringTypes = (str, bytes) + ++ ++def _re_compile(expression, *args, **kwargs): ++ ''' ++ Rearrange global flags in the regular expression to appear at the ++ beginning, avoiding deprecation warnings on Python < 3.11 and hard ++ errors on Python >= 3.11. ++ ''' ++ flags = set() ++ remainder = '' ++ ++ pattern = re.compile(r'\(\?([aiLmsux]+)\)') ++ while m := pattern.search(expression): ++ # Location of the global flag spec ++ l, h = m.span(0) ++ # Accumulate global flags from this spec ++ flags.update(m.group(1)) ++ # Capture all text leading up to the match ++ remainder += expression[:l] ++ # Trim to the end fo the flag spec ++ expression = expression[h:] ++ ++ # Any remaining expression contains no flags ++ remainder += expression ++ ++ # If there are flags, they belong at the beginning ++ if flags: ++ remainder = f'(?{"".join(sorted(flags))})' + remainder ++ ++ return re.compile(remainder, *args, **kwargs) ++ ++ + # This regular expression is used to match valid token names + _is_identifier = re.compile(r'^[a-zA-Z0-9_]+$') + +@@ -230,7 +261,7 @@ + titem = [] + txtitem = [] + for pat, func_name in lre: +- titem.append((re.compile(pat, lextab._lexreflags), _names_to_funcs(func_name, fdict))) ++ titem.append((_re_compile(pat, lextab._lexreflags), _names_to_funcs(func_name, fdict))) + + self.lexstatere[statename] = titem + self.lexstateretext[statename] = txtitem +@@ -495,7 +526,7 @@ + return [] + regex = '|'.join(relist) + try: +- lexre = re.compile(regex, reflags) ++ lexre = _re_compile(regex, reflags) + + # Build the index to function map for the matching engine + lexindexfunc = [None] * (max(lexre.groupindex.values()) + 1) +@@ -758,7 +789,7 @@ + continue + + try: +- c = re.compile('(?P<%s>%s)' % (fname, _get_regex(f)), self.reflags) ++ c = _re_compile('(?P<%s>%s)' % (fname, _get_regex(f)), self.reflags) + if c.match(''): + self.log.error("%s:%d: Regular expression for rule '%s' matches empty string", file, line, f.__name__) + self.error = True +@@ -782,7 +813,7 @@ + continue + + try: +- c = re.compile('(?P<%s>%s)' % (name, r), self.reflags) ++ c = _re_compile('(?P<%s>%s)' % (name, r), self.reflags) + if (c.match('')): + self.log.error("Regular expression for rule '%s' matches empty string", name) + self.error = True From 1fc67efd7d686af6517e2b49c6c519855cd762b4 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:04 -0400 Subject: [PATCH 1420/1420] DarkRadiant: rebuild for Python 3.11 --- srcpkgs/DarkRadiant/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/DarkRadiant/template b/srcpkgs/DarkRadiant/template index f3d17865b93c..7192a74ebf5c 100644 --- a/srcpkgs/DarkRadiant/template +++ b/srcpkgs/DarkRadiant/template @@ -1,7 +1,7 @@ # Template file for 'DarkRadiant' pkgname=DarkRadiant version=2.14.0 -revision=2 +revision=3 build_style=cmake build_helper=cmake-wxWidgets-gtk3 hostmakedepends="pkg-config ruby-asciidoctor"