From a218742da440bd9a927bab7589638b1d5e2636d1 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 671d9b211175..362d6327b962 100644 --- a/common/shlibs +++ b/common/shlibs @@ -1741,7 +1741,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 1a576a1fcc04add1562eb953566d0ccd9de5ec12 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 cc499b1f7e4e24785589fc0078cc4c3b20ad208b 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 e3dccb7deb7b06ce9867aed3526b73c0bb4bfe6e 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 162727e60fd0841d331ef625dfdad66e2937669c 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 b5451bb38cb14f881db706bcbefde67fa3197158 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 17cb9af76dc3e190bd7ac20fd85c75fa767e5c3e 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 6fcee0431b22f9faf77f93467793abc595702b72 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 04aec56a8f575e3a789e8e12ca78e36d7850f735 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 fd6329e39940b120898b01e0c3e713a427e18f5e 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 d2a69585534261f1b3ccf76ad0c1253d4cda1b78 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 46f3cf05c5ae81b11e09d27a2a4dee96c3dcb744 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 37f77e24a865b158f85a1fbb654204d56b9ded10 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 805cf08eb78f9af7e3b0ba3fe3342906d8a545a6 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 d6728f1ebc655fbb82ed1dd3e00c3f1744b8998f 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 deb7c860ecde9e55a0d733c90f673e9f0594b10b 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 6e1b820483a2c2c7c87b8f1aeeb10a248ae0ddb0 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 5cfbb0120e08466f137da137d4356de86a60128f 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 d0ae1dba105087e31a437648b3b936f56acdbcd7 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 6bf1bbc41fdba40cb18abf2999f7bfae032f6c17 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 357b9da9d2914c9cf1151df651dc24c1757e01e1 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 13336c4ebc4c211c67abe1249ae61e9019316881 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 a1f1505ca2e81fa4e4801256f3bc8f203421d17f 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 b0d30a8073eec62706d331ad9d60282dee1222f0 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 1c967b6c64237165c88d4425f16afd8e0fa3ccd0 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 d3ed55bbeee85b6dbf39f09ac05eb3d77a5b7f30 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 f230ee7bbe5ceec514563f9fcd37c00da2ce20a2 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.5. --- 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..ce5634ee313e 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.5 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=c4d88f472f54d615e9cd582a5004d1e5f624854a6a27a6211591c251f22a6914 post_install() { # use system tz database From 3f34849aa8886139a51db9aaaabf849d4e2d6bc1 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 dc668105ce077a581672ac998197113f2c15392c 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 0a6a1ed1e4ba5a8227fc29ed329e76307f956b05 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 f6d2ba7733c121000b11ece6a30deeeefe3573b3 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 2367e66e3cc4d72ec9e068de11b79f8fed575c4b 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 c1d63b69fad579d0f33107d8a06be375a7f5e922 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 5604f7a69b7973fd58e04a337df33ec3de0d9a39 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 1eead2ebd534cd6203b0263b4ec572c4064c872e 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 b86b661ffb99b83c24f90ca0ae6dd015b416483c 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 8818cd0a38e49f0d454ea74794b4a9cbe302ec4b 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 b7f655f0eedb5110a93436f7e392e7b1da1911fa 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 b75aaf1ff4fa106ff04717e4673f3d2fbda5205b 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 869de264fd5d4d7c1943d101f215a7bf04a574ae 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: rebuild for Python 3.11 --- srcpkgs/python3-asttokens/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-asttokens/template b/srcpkgs/python3-asttokens/template index b3e4443811fa..beaf26914926 100644 --- a/srcpkgs/python3-asttokens/template +++ b/srcpkgs/python3-asttokens/template @@ -1,7 +1,7 @@ # Template file for 'python3-asttokens' pkgname=python3-asttokens version=2.0.8 -revision=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module # needs a specific astroid version From 9e198196439045207da13c3b3d18ced4fe8b8bd3 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: rebuild for Python 3.11 --- srcpkgs/python3-executing/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-executing/template b/srcpkgs/python3-executing/template index 3cb8e53439a3..e6e4f2b9a597 100644 --- a/srcpkgs/python3-executing/template +++ b/srcpkgs/python3-executing/template @@ -1,7 +1,7 @@ # Template file for 'python3-executing' pkgname=python3-executing version=1.1.1 -revision=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From 0bdca1248f30887753869a969c7788f03f17c7a5 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 f1adbbd95db490af0421fbdbe6c0bc02172a8345 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 c371e17b8c9468d26fe031e952fc06c23516c5c8 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 a66444c2da3a7e2b251205076a30a732318d2370 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 f2fae18f4caaaa117469116000da95334601b81e 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 a03bb7d95d405b8f9751af2d22ed61f80b7bcbb9 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 8879c5114afa90c9b1b239638958cf2c008c359b 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 da40ed12357fbadab066945b30f014c81fdb7957 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 1cd6e8f9d02884dcf0b4135011538edf553c1cd0 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 92f6372fecda8a433777a2ae99dac923a92e8cd5 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 2b94045b9ab0a09230cac38057560fd1ff604a46 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 91f2dfe3c081c1cea114353e9604cc999e107c28 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 80d557c8b4edaeff9dd9bfb8427f67f0fff99349 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 56947690a59dda75104184153ef02742ea7d4794 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 a6ebaafd73ce17cfaa4b1f1a80a7985d29e6028d 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 5b1260a245f56feab51594d978f641eadcb0e85d 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 de36dc395554098b39b5303b093d44d3707e9ffa 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 b008b5542ac0fa160df1ca7d77bb699268c593eb 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 56f2c27e2849cdc34cc7c8bfa8594c48b332ba73 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 41a7d3dd23f229dd5546760fd11637ab93fa6920 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 30185db2d7317dacf4c6f13b951db25250fd0c54 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 4907f06bdccc4a09952498d9d37d338d085817a5 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 528489f304e1c5902b8e7c0ca338bef64433cdaf 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 8187e138481dc6bf6fb037ddd7c90a0a8db0f46d 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 d7e88c6021b1d0d0d66c437337c61fdcc2f6bb5f 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 9d946553e263e396a9841d4c7a047a40024adff7 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 cea3e97bb14138e5726a4e37ce50aa2945bfda16 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 f8b41ae95ad2518402a06d3aab563a76b65e9ea3 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 63b92eb457a2c7287e3d674cde9f67ff050e2405 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 5004290316276e623f21ed627c163eea23954dc2 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 426c90b8ce967d200ba4f320cb9d9ccfff7fc6f0 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: rebuild for Python 3.11 --- srcpkgs/python3-stack_data/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-stack_data/template b/srcpkgs/python3-stack_data/template index 8ff71266a88f..5f68c6cb1654 100644 --- a/srcpkgs/python3-stack_data/template +++ b/srcpkgs/python3-stack_data/template @@ -1,7 +1,7 @@ # Template file for 'python3-stack_data' pkgname=python3-stack_data version=0.5.1 -revision=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From f0d1a7bbce078e1bdbbdc87086dc1621069fbd0d 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 42fc612fa818ee241a7609531530189b9022220a 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 4a72c1f464c9b5981b7a439236876cc443d69658 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 b988c89f73c3c19651bcaf88184ce87b02421960 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 2deb9d65b19e9d9a2a605ad1d5ee26dd263845e0 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 07ea4d06b42ca864432e2115483c7ca0f5d096ef 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 7ff5485ef9714ccf78ef314b1e108eb0a8be71f9 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 291db54a1bd8791b8b1e680db13d64b5a7edb3b9 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 484d3417e07fdae7250784f2b9850563412af47a 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 db62c62282973c0efdfeedefcf3fb73674f370ac 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 fb479c9f53a995b8bff15fe8bd060d3156907ff8 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 ab3481cbc484d1281803b84610dddaea4b93a417 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 5366d981f249a8b3ab48ea2f1bdd44eb087cbc0f 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 bec001e2b4e141598f21e22489fb1111506d89fc 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 62e41397c1e0a1f888131284f9017cfde9c7d880 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 f229937a996eb5e48709b52c04388ed6a9aaf0d0 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 50845127b7062f9a56475760dbea8bb7847cebb0 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 b8f2bc59942a6fbc27e81ab64d82c2c11ebc2457 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 cd8dec492c085c4674523df3eacb7078878f65b8 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 d82971accd95d2f02d6190c823804a9ab197f500 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 dae83849fe64e0bc760febd20cb463b6d51e6f03 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: rebuild for Python 3.11 --- srcpkgs/python3-ipython/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template index b391aa19d168..344d07b05417 100644 --- a/srcpkgs/python3-ipython/template +++ b/srcpkgs/python3-ipython/template @@ -1,7 +1,7 @@ # Template file for 'python3-ipython' pkgname=python3-ipython version=8.5.0 -revision=1 +revision=2 wrksrc="ipython-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From d3148c88a1d4b59284ef6bd48ead2b34293a3db2 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 86a423aa6c7b7917338dd7b64fc1f5a32207946c 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 dba6692710fe3db2b58bec8e7dd41c029d37afe0 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 fc22947c34aa4ee186a85c67c94d0652a954db47 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 4ce5fbab6f2db6edc7d8f1a3fbe772031bb6f5e4 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 affd694cd5a480f81f5e4e44714e36014d00817f 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 f0cae797a584dcf85bb8faa31e53d43117ef7aa5 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 ffc7b9278642c76cd83203aa40f548137e37ad1c 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 cd734bf60b259a286d955a6da4a8138dc983f86f 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 6ed5d9c5477420e9b779c0c7011d2ff08e1ea607 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 73b2702e1e473514378a156ea471841ecc67240a 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 0e11ac699ba6ca68f6c10068ccd6aea6efaf1d2e 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 99ab383c9046777d39362f3c1a6bc4fa6743b611 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 fd884d693c54933fe75ab29995e9253abc772f3d 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 a065c29bf6a64414d5b0dbcdb02c0359778055c1 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 59fef16cb138b001862bcae6e6ad7776b0600df5 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 24a8bbe7de79ec110a614a5be275aa64bf42897d 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 265d717a95e9fb494a4e191dd85e595b81e45034 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 73d04df54f0b8b9395b936baf5de4642cafdd78e 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 b72d0aa0840e321937e2e5ee8ccf55a936ceee0c 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 460fa72a1fc1b2d5a2494e914a9303a707f61fff 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 c14f34ce909d2f9239febdf4e27f8df517b74dcf 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 ab43fa0c891e70c8c5cc0c784ff2da5a44c9dfb9 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 43ef9f3409bb6c8d796b866fa2be0019c4e5ba50 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 9a95f73703fbb89e5401b1d74dfc483be488b929 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.2. --- 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..efe9f5b3a4de 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.2 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=eb637c7d82ed7d3a6add20a7f100cd54c62c0727de5ef11773b08070cfca8dd1 post_install() { vlicense LICENSE From 058c4159db66e5d4b667c13c0a818a25c1a70a08 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.2. --- 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..e9a0fed68a65 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.2 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=7a022ec87c7a8bdad99f516a4ee6ffcb3a2bc31487577f9eccbc9b2edb1a8fd4 if [ "$CROSS_BUILD" ]; then makedepends+=" rust-std" From dd7fa3fa2a7a4f9ea4632f2b4eb0fbaed319b991 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 1f2e2e6ae43c96c8f7c1f901dff3b97e5ec73d3f 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 3bb5a610094a3a9d82fd3d0ac42eeac0a380e945 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 1f6d05dd97f39c4b723bd7fae9bd53af9e8f0b26 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 4b180d9d3563d660082b455fa1292bad4685d9aa 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 d76c7855f1796aacabc502eeac8e57d68d79ca52 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 a95bf34342fe50dee935896d7af26aa1fd3ab514 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 39e5b1fffccd2b74c2cee8aa2f8567034a98d5f2 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 fec517f54726c7d3ac88259eb8302232b22c5816 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 a0ccce97b0864b209fb87ae968009ecf60bd94c6 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 ae257196c7d75a6769c363f15001c4c88ca05b7d 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 1b34db6daf611edda967e85d5e8071321e6f95ab 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 9ad40f8e8c91b9683fda23e789d5cf80c0879eb2 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 1142770f8698d9e13148e3b0d82d7d9aaf4b9f7a 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 416038159c48515fc840ae61feb536b33c55f56f 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 d7d7a89f21fd7ee865eed7f85b2664c275b5ba1a 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 465a8a1b97b132f2637a040395701ad2b4a5b589 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 b33b804cce140a9709d8412a14866692b919e75e 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 4f654cc2e4e4d2757db9789bb955735659a5a17a 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 d23a430b3a97fe16b22fe41f3c04a834790f636f 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 506a59d36ecc93a1a5950bcb78fc5345f53aa18c 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 f872de89488ca6fa6941921e6441e1a159485c9f 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 79fc8302d4c5b91e05911cd5e7222204eeb1ea54 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 cea22647dd7484addeff1c621b5b1d9bf9cc8440 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 81f3b9f54eda31ba615ddc18c29311e3d3da0c22 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 a5a9de9efbda2e728de26281805e7179bc00ac84 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 972056dce36529038eaaaf1d065e52fb1f26c3fa 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: rebuild for Python 3.11 --- srcpkgs/python3-pybind11/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pybind11/template b/srcpkgs/python3-pybind11/template index dd3640e5f375..2f96e33da5a5 100644 --- a/srcpkgs/python3-pybind11/template +++ b/srcpkgs/python3-pybind11/template @@ -1,7 +1,7 @@ # Template file for 'python3-pybind11' pkgname=python3-pybind11 version=2.10.0 -revision=1 +revision=2 wrksrc="pybind11-${version}" build_style=python3-module hostmakedepends="cmake python3-setuptools From 2564be5da5ba27b93396d3f8ddbb48c00fa9028b 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 b8d95fe4493758e84dea0e7f06799886ac03091a 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 c0643066a16258c08d2fafa67cb18ea4bef33674 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 73608600567cd16eb43410aaae3b2357a97bd300 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 0f50293efb2392d520d99f5ff8aae41a9bea0d18 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 9ae9d41d3802f594473feb7048537e79e5513d33 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 09742ce7c0df92a509b314b182b618348d078136 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 ff88e425dfc1cf7c8b6591ea327700d451ee6d1d 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 8a3eeaa9e19fb8993ed3492dfdebd4dae4b9ece0 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 7eb3096c2a574b0d6ce38e9ea86776d44151b06f 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 2f06cf93417aeb40a349e3a62835d3a9239f3830 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 228551b0846a31e4d4d8b4fb4932afe5c67cf344 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 41ef518aaef2f01f5620b3f3c106b69352246b06 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 7bea7143677609200ca33c7f46de6854ccdd5d01 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 65116951c1209341fd351e754a500a11ba860829 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 ba2c8312e2a6cd6a788520560e8a3ab0eed8f600 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 b476e84bd60415f23a2269d37fda78e59dc7894f 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 d49852d041769f078a8bf1e660c3c9b36911237b 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 9a1926d59219c7aad25cea4e662e24300065cc87 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 a1cdb3bd317f2579c973254b01c20d97d69b26ea 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 36400b5098e9a3f39e36a765921a27a3be6b593c 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 74e95a4e939fdffff00458baec51e4c3a9003a34 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 6d73942a7bcadd919d2e0476613dc09aae83b0b9 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 2834552d8037bd5fb6e3719161b46073da6ced1c 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 bb0a4ff147357bd1d181f01b6cdf123c7c6bd8d6 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 fa6484b7c2677ca4a3479403a4cbe5e9bcffbbb3 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 9f11ee95c6518f385d53b71dfd19ca93bccb8601 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 c4150cc94b868ddfaf1f4f152e5b08fe01f1493b 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 0bbc2259c4e44307794d0c49f360b2286878a3f2 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 88f23d7c65df80f68992da79267074eb48494ac9 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 6dcae2bbe973a8665c7ccbb681b222013c5afc32 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 8f4d834d3d30a0d6742329cfb9cd961cb95e0a96 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 8b1b9b6b4b776f859f308a95f3020ca97add485d 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 fcef254ae15aedd1cbbd350a4a9de55df343ae17 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 cc70e38751f778727775ed3f205761109b434c00 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 ff43581d8dd6a5e5f9f55c469af8dced93ecc379 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 d4bcd9788ae77dd7b171811da545654cd1156611 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 fd2d2f73eb44074eee8f1be4d45a79cf236e2331 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 cb3f9deceef92dfba4f405d0b9e092eebb6897b0 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 589fb3d8c6f9f9e9311c1d4b137353e82cf7b6d7 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 30817d3f1ce921853ec9f4672bcd9a8ef94a833b 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 0f802ac878d04530ff311ec248f6e0bbd4419316 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 b257c4b000e6b504ff25483261cbbd090a15e2fb 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 e4054c5bb98531470ba0a0f9cf756b04832ef933 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 3166c46d6664fde15c6f16028082dcd23163f4da 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 784e9b1665597a5303b1602b58d02aa1253fd54b 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 8b483497ac09860bcaaa60fd4fc36c5e8adf4ce4 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 4a7c25ba4196830dd0547f4e77aa565e6f2a9760 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 401ce1c72746ac9d6945ca4867761938beef083e 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 136533081c5220b833aeabcd8575dcf7e82ffc35 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 e552e16131b8c7ed9e5824488b8fcca306f8f77c 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 3ce365d475708d26570b2ad4f6e9ef297a624c7d 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 3114e3bee25a8a81d3301c6e09ced0fcbac292f5 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 26283e6bba7c936cc8bba84903c6fe34f34bca9c 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 e8f2d48c09023b75638c009a04496403194ead5b 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 c552e9fad219d953a3aac62ceccafa1fc86f7197 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 24b96eaf1e37078815626edc879b12f37fde8e37 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 be04f1907260d1c30da67ea88e56b204d7925b05 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 f1dd287a65ffd7f055d797033a1e95bf081c8d39 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 072e5dc4e4b3939cb6475b03ca7d6bb88ad4cfdb 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 1f4f6446edb1b1dec2143a45875b35b70ca40fa0 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 b2d38fa9397f90a54cc79a95d5a8c2e2f0ddac5d 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 bd649bbe953e880c5648406d36b3ddafd254929c 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 362d6327b962..4ba8e5a5ae64 100644 --- a/common/shlibs +++ b/common/shlibs @@ -655,7 +655,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 2e86056b1e7bc7f2c20e7eb5e810541f2ba95eb6 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 21718a47664b33969b11e2d55ce4e9493e9e0eff 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: rebuild for Python 3.11 --- srcpkgs/python3-Pillow/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-Pillow/template b/srcpkgs/python3-Pillow/template index 418cb33f2ad2..49e1d4393253 100644 --- a/srcpkgs/python3-Pillow/template +++ b/srcpkgs/python3-Pillow/template @@ -1,7 +1,7 @@ # Template file for 'python3-Pillow' pkgname=python3-Pillow version=9.2.0 -revision=1 +revision=2 wrksrc="Pillow-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From e09ee374ec002f381ef5e78e9adf349b9a47b0d3 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 734261f523e56f0f4b308ade35a09d28a275d4fd 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 97fe7c8bbb0a3ec5aacebfb6a561f0e93d700eac 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 48538f0fe6887901c5a88c5a04cf36dedbf0c143 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 945610e354d740c08456ffa60cd0b7b8056cdb39 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 05c69e798c8e90be9943184e8f5b37960ab81ce2 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 1fdc7aeec0c062f79aca069755aa0635bd1eecbe 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 f8d2698488d05d8e64fec36a3670113c93ee8c84 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 69a6306d230030d95dcf300a04706e8a9d733471 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 23ee8d8686c207a3a0639f304255c85ad9b6fabe 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 4dd698b8a14158cd1e5a87dd0453577bcdba008e 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 f03f16858c7e64fdb296bac54f06a05ed8eeb987 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 601cb06c055820bbe52dc4528fb252b9dbcfb8e2 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 65438f88ee3516466624ef91fd6426d55b040089 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 204e523659d75c168cd26158dea5ef16cab88ca2 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 e750cc8e5b0479e7a20ae3685f1e69e2f4f5598d 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 a7f203244801debaf91e5399f771080272fd3de3 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 ac0689db8a4a967d9bf90714f736a03099c41d0a 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 f8ee2d85d4606a792b16c342e8184cd8a0d713f5 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 78b44ff6a0fd24e3fb4876658b34285ee0559e94 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 be022d949f4c53941b68f2756dfabf692627ff2a 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 dc5a4fcd1a9b5c10411873c1a7a47e57be7c295c 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 8b6b394c36a94845a2227ac1974fe9d2150a0753 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 874dd16d7fef882ba7b9583354aac87b11fa3d91 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 d7ab31795185a0c1add56341aa3a7224d1ef8d8d 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 93cd224ff511158cd266e8cf3e8b95e43863da85 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 c147a86d18bffccfe47baa402c9e2925f630b549 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 253e899ea4ee20393fcf4562c7dadd9944e5873d 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 ec262fa36dd8add63158aacfd6bad653afc17939 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 4ca4ce9775ab36717adc8759032ad77733ac55c4 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 f81d9c7f1301871eee6fc04e91916e7f84debdfc 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 152379547c170519750073a2162b62de90999964 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 8062221967af069c8051a2d3b32b9fc26e3c9112 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 29bc604d81d020ae28b38af8f9a0f71fa49947f4 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 77d0bd6b89bf896a968efc2d1db49fc510662da0 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 a33319bfb23da4ddc3193cff333694cd30d4159b 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 d85f577598362160d204f9846ca8980c86446617 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 e0bb0b4583b033d61792c6a796cd0469c59339af 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 9a252dd905e8d00c6254920f19795affead94d9f 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 e39ba4ab0a9c21251b70a77d0e3dfe6dc70fac9a 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 033235dd210dabc811911b5a1974fa7224ffe92e 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 836c19e5f9d9d450564a8ee9a4b6ff9d8bcd1f84 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 02178d180cbf70607f451b0e8e1b2eb11eba230d 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 83d5d9ff5272216ec5f5cb4da31f4027780e1897 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 ba0c640af29d526f0e8a17b1e8e56ca7b1735421 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 455a8ca834ab4d10ec1d7b6fe1934717a9434b49 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 54adf8443724bafe15a231577bedf7dbabe481ff 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 bdfd7de689831b06736e55b3eaf97238a652940f 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 8275c2ec75c2aafb3062eac8761392401b03c42e 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 d9d25c3312744fbb196b1ed374f1eec3ffe55968 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 1f8c94050b8f434d5ab0cadd347a1f6e145ab861 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 635e2d85d02cf1dd62d15fa1fce8cfb5b479c325 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 4ef36c96754e130a170d053ac0e382384e7acf3b 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 8a4fb9a2bdd1dade6b38e3782fd562a1930293d7 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 b1ed49341c40021a0241ca29a91aaee00362bda8 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 419e562d995aae901897630a5ea6d7ce8868fefe 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 9314bf796da46560f48e02935f51315ce3081369 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 9a89117a2454b945d92ebed49b009ae713b23adb 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 f520081ae6e62eec141d05b0aec5ca57873ce255 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 faff549e975164c8d5b49f52dff82072d3d92a22 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 11e57824b12f7d5cab2086cca142e14b3a51c5b4 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 b404870e76067dab698eaf3a06ad4ac049edc1ea 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 3f281c0eb5c5865f188d023058f915cc1f9b1e3a 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 eb4177e0ec5d52b0f4ebaf394918c55b8d38efd1 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 90a4749c628e9f812abfa2f93770f18c218e9127 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 e5b5b55a14cc39be41bee2f127649b9cc36222cd 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 f958d77fdab56ae996d1b318ed5fdc6bb100a72d 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 7b9b46cd78ac473e12b2ae7d9d89774d7b899926 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 c3a06c47601afdb3900c92914b0f145c6bf82948 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 5eb17043352c0e31325dccb121c6128b785982f4 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 6edfcc2873952e338ef5d9c229cd5a3b72838583 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 95d3ea53d64e7831abe32943a140054402a40635 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 75858e9268f18e298b862b5621686bb9a3e0dbde 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 5f5feba5867b59f7865d35e38c67c1bc7e5a5019 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 2cc476d1d5943116b88614fee1bc90d3c4d19483 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 febc978d60ca895422c6231542ead041abd63a58 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 330e4453643d25d8818879ce653e0d7f18ffe0dd 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 b269cf03d370f1a50e8b4fe94fb34d4b26a67cff 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 4212dd173ef8bb3167c6aba05f58909cc87b3110 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 a04d13893d89753f62131fec5c28604d8a7d451a 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 fa292834f2b17ff751488ddc68558874915a387a 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 46e27890fd1f928a7c43959d4fe51d6337883936 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 bdd8fd6673fb620af4bcf0309e778593d1488de7 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 8727baa187cb4ffc4163e7984c7d3d18160f479d 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 47722188f0aab2b4be521e2373fafd5ba3acb903 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 3b89ea08b65cab20a364e17eced8e71461e0d92b 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 092e36192513d62f211bc426ef21920dc89e6292 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 2b87b1715a4c1fcd840a8c604844f9d145d2c9a7 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 b52f1eba1e9cf8a7761b23c82b72edf0dbcdbd2e 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 448e7e12c4d82743a752360b88bc6048a89ad397 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 a7fc0516439333367bfab8c7f2cf09f1a275f8ae 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 0c8bc688155edab2d1e99d2d37874a172aa170b2 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 e0e7fc78d5dd48c072b13906a77205ca0e13894b 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 35cad7ed7b772ed6c40b1dcdf742b5dbf0c75b51 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 b48ab1909ffeb2abbe038807f84173f5fa13af3b 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 db29a4f42e22ff80fae631b560221f645c4d5678 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 cb8154a6fb0aba3d10c730033fc74cec390b8463 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 15a9e51bdea3a33e0ef38e8608b8ee95cae2ef69 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 0978cc1e6cfd54a36f1f316fcc7760ec675fe65b 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 c0e00af5e5d5e7cb369166b12b5bc780e78be69e 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 187dbe642d113c51939bd5e7bc1648117ecbc813 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 b9ef07edc9983e431ed4ab3cdf86356950304545 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 71b272aa843a0e4c03323957f41db5bea3ec080e 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 1b07a2c6101122c1e0b2f945f3d0801d2585d733 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 acfcb2b917accb8f9a01bf085429ec423572c471 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 7878683772ecb6d4a5a311cb20f98ec3e560a879 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 4d073fe4ee37aa3b410b3cf9bb895e6bbf355744 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 844331b80ee0f081d4bdd28c5d634e466863e69d 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 052bc73508dbd3c352be8c9b033abc26b39fe81a 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 2b41eee71e2456bf3441d0ad9b09cceecbbbed24 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 c8994e1b846cd8a38dda461f7312538555489a0c 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 a7f0f659df5996bdb76c7b60b087c332f8f38c4c 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 c06e77d556680294e160eda5abb7a11b3c828d80 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 bf2523a8d5f8dc09de1ba823e2e84514ae4c460a 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 ae2f9c07d52ded249ee924b02ac6b864ff6cc555 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 e6c057336f1c6c809a37d769fe8d0928cf0fe93e 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 ae96240b7b6b7d733262f10f4161dd24688e0bc4 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 812350413c64ff6244c82768e22eaa07df4382e5 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 616fd59e1d5e804f60d4ab8796663928ad51614c 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 bf381c690f30896be8d6ca1c1b0d4ba66e8f43b4 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 fe1d475039f2c0947528f442cf73e5f190584524 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 05157860e9f80dfeaa107bfd31d6a8868888a133 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 2d9008cc9ce29b056b583761a66b80fdfc66546e 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 0cdff6910d643afbbb91c40f433890e9622a0719 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 bab035fdb13f57ea5393362ec0de534c214a2471 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 6c471fdd87609d52e92aaaee3fc1f314cc02c369 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 0a2f4573f1c8410096f271b27079e916da880010 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 a96f8939ec75e267b662a1bcf8d264802f54e6ab 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 0ab27f8cd96475396fbd56869708e2c1692f8e13 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 771657154a1b49dc54c6aaee083221defe6a9de9 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 0ef44d5ade067d19651faf6e3c4826e6543831dc 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 bc3ffeacfdcbd0d6e51a5966795bb4e2374ee974 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 93a0d1dfa7057d5a63f546cdb4d9ea7b8dcf29ba 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 8454deeb340022d2593793a81533b87c44429e44 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 54668b4f21e2b0a3c4406a6015b8aad32845b23e 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 3fcdf65ce89756ea4e231a7b763bb8c4426e4faf 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 65e951f6bc385f9d2cc322096c3098ed6bfbe1d7 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 27c692a38781c5cf6b08046018e7a6c922d9d69c 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 88a28a88b27764850d70838b546e8461533b92d2 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 e9221aa7a3517be84c6bd86240b2f93c5084ebc7 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 67b54590b9ae5e32844b34098627f5b0783c1cc7 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 5f7b46ebffa601c381b4306fe568c274b0ff77f4 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 194d3f554f32f0910d801bc2382b3dc64ca79a29 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 35b6a8906f616039de19d3395b7472c20c83cd8c 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 7196a2c85aafb7bff6b3097a73a7c6ab62a25b12 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 6586f41cea1423533a737ebab7884498bf09b87c 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 6126bf24e4cb3461969964cfe20110223f7571a1 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 d59dd978f41a00d0bdc8869a21ac9ad9b3e0a809 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: rebuild for Python 3.11 --- srcpkgs/python3-matplotlib/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template index 752ef542b6a6..ca500aaa1f3b 100644 --- a/srcpkgs/python3-matplotlib/template +++ b/srcpkgs/python3-matplotlib/template @@ -1,7 +1,7 @@ # Template file for 'python3-matplotlib' pkgname=python3-matplotlib version=3.6.1 -revision=1 +revision=2 wrksrc="matplotlib-${version}" build_style=python3-module build_helper="numpy" From 27e5ed7d3493caba5bfa3cda6f353e1218f0c672 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 be8b6da5827b884d6e615628838959be1cfa655c 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 b54cfd44a698ceb7333069ff75ebf3b49fe3435f 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 cae0e75214e314ed515b2317af8836b072bf46b7 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 dff042f32d1e..35b2d544fbd8 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" build_style=cmake hostmakedepends="pkg-config python3-cheetah3 git python3-Mako python3-six" From f23d05e850c085f9ccf9b4ec01f99698302461eb 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 c99f3ddcd9af0a7581db6f4ce47476e07f8f308d 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 9ce9af2ae918858f926019e2461ffee2e290b201 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 0b33253e98ae162c461a72a634aae6df73de2979 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 c5d905525e27712b58ce619319baa69fd3243f73 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 c525ff959d8cfd78326165ef21f17fa512b81ae2 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 4643dc6d897d07072258d701ff27e5481f40a9b3 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 5a466930ccc8365e3edb9b76937efa445dd871ec 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 3a960755dd65724f5b347c023801bb36cb57a4d2 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 0dd6938118a415d499c7f71ae2dae9da3f1e20fc 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 7b40746b18c18197546d9221273e64dee8a228d8 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 9881734d81bd09bea1decbe9b05a9bc8ca25715e 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 cf231e83707b56f90345e8eeb692e661d29fb6ed 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 4f59ff21f41e5ab53830c877a2846f2b3097f4e6 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 50d6a95c180440186c1a848ba9295e3927fdb7c5 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 2f8f3472c8ad6d03195355cfd3446ae560f85991 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 82993c88c7480fe1c361e3465837ba6857f23199 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 14df9a76fbd2ed582022c1819e0045b780db35ce 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 5d6be7f1496c419225d38ad902e7116d875083e4 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 0ff8a907f313afd6c395cb0602b02003b07da02a 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 79b013d89bb1367f0b6d21540a635d1cb442ccb2 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 80a33227ac5a222f23191116963522191495f472 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 923c5bfdaf73788accbefd3a8a3eb750a868106c 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 1c5bf42bd8e55f7771adb6dfd0bd9a93f2c69b5b 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 084b06b535676c9936f7ddebaffaa20ec7716c3f 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 2609b5bf8299182dac3bcb87dab031586e220ad8 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 76d0cf6eb62b583b75bc312db56fd7427f905acd 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 a7536eaf365c5e884920d34a5d744f5293249bda 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 b484f5d8330d8e0046a5e730face911f8388a65b 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 358493af2d92d6a6706097ce5e6121b9dca471c9 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 a706a0745ad1b11c5a1a495ea09163ed8791b718 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 31d382b883656d6379bacb093e6a4dd19e8e350d 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 658716168d8667c9a4e387a6420e9d9acbf48e1d 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 e622f07393be104682657edd3041c1b076b5ff22 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 8ce7fbdf1c6e6bcea776f7b1b127d6b8edf94c6d 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 6ae15732de5ea539e87ffa7599edb2f7220f34b8 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 fc086ca8d342643bd1cc31320b4cad7e9964e41d 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 f4cc8359b56f5d2a6da0ed90eb4c3394311f30d0 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 b9eeb6424c9068d1d7452e762e7a1c54abbd9b07 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 951f656846a69df814075c26944b62cd0abc7c8f 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 2e96af9f519194d345001ad4145ec4f5c4f1dd59 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 dda72aa6cc302abb01a021afaae16258f6d9e0ee 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 6f929a60d987b169d41d09268d6b6cd67e66b19b 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 5dace6dede5680dd9ec777be9bed83f5adea6173 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 e5c9b2586483c0e1201b6c125842d0f3592f52e6 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 a3cb20422bcd4825517fd014ae9d9f928b3136ca 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 46e7e1e7af4eee089f5d51f3d8f9299b3c143ba4 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 ea25aaea83926bb29c54a9df95a4680613fc06ab 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 b018c9b5eccd287591bcca921372498c9ea92e42 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 cce397d03058365f7d9b6bf02b9766d71fa9e63b 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 11775b0063903118a214dc399c69f580a6a3dabb 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 8fdb838c096b064386bde80b3242d0f5727248a3 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 6a4c3e09368ff534815d6c64875489ce85e33f9c 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 c6e303e0585d87dac441d655628fe55bb350ac4c 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 fded00521530c7ae19e83196c5f5f35e964dcb09 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 952fdb4ac256d7e09857003760fa84556055f77e 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 648f68eb1fd6a61f1cf6a940a08dcc91087dd331 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 503680e5d36aea8675353c29089986891f841cd6 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 ab768b93460531034c20ee87fe09387b372f5758 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 df88a0b4fc78cdc0b28a43129bb6f4c05e8bb70d 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 cd2317eea01052289bf05b93d850042569ddca23 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 867de699ef4fbb4376f98db9ffc47e36dfdec51b 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 bc04f3605fbf7d3f310e0dad35da45e7f3cb14cf 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 a87221ccec424ca4a5f76a4652e6200fed097f61 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 f70fb9e44f870b79890b1ff4c4580fb18071012a 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 c1dcbb11f683c2d3bb0005f48a6e7dc7826898af 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 a9e0e154119b42d3c138eac1142a55fa271c9973 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 f243b8342454d2c7e10b4ba379b04ad05b083280 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 1aa349fbed366a252dd121b82697d20afc2c7e8f 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 a4977b2371d998f83d4fde8f8a9b3955a0dfb06f 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 45bdb1e67e9aed62ae7262f4010df75e9baca849 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 691fdfaa970d8d94af2feeaaf2dc282fc635d7a9 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 f6f3bf33f15618531a30fd1bc133a2ab6f7b31d3 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 09a8355958bf1b702c936dae4f3e5d9e51775302 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 ed0573a615c063497c4f06ae360913d88f5c5545 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 ff5323990e43b52dac4831be10b6759b14125117 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 aa24861d329e948d8bdd8bbe46adcda92270d629 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 f37ce4278e798c3a9ed1a6a0fe37818082ad2ad4 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 2d978e8b0ca35747760aed3939aed75f876afb87 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 e6765cab00919f993e922d0f289a849cd8573030 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 12e0c77d08a777f56cfa030dad4eca87871a6b93 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 0e82d0c4d68c41685ed9d9af191104230e0d5501 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 31e0c1939f4c3192cb620ea4f994a7711b78d927 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 6c16541970786dacc0f416442daad323feba6b65 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 6acadb30e5e560a7f2ac8e65c1ffaaea4fdd797f 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 7ab9f81563ac6f37af052bdd782f099fbb91be4c 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 e7e399cdad43e57ae18063031d7eafbb73eb1ab1 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 7606797852b335e3708546925485deed2282a694 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 42d2e7fda74509c39710e48bc7f9306970c9ed5a 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 0f36859189f745f01c8efee3754bbdbbf78a0b80 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 686f3955b276568554f83ca05df6ce9c1a971ab8 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 804a58f221eb46a56a8c74956d66925c113b32eb 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 21595aebcdcf2fd558d4090abbe1094af0723007 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 b16b0ac7810777f0b2fbc4ba928d6c77a1c9a052 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 4fc935c8d1341e63731f1a08442ff12643b84a5a 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 2445af683c656e5e1aed98241001684c2521e6b0 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 4bb7f34b06c0fdb283edda8f40e9b75f5e9a11bf 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 df829f734c3ce717604d302b91b66dd3281bf76c 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 462bc969b839fd8d61689394c266556efc3a6454 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 3fb5e0a8a3dc1cfb0186b82797bbb308e9930f83 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 317b6ec5db4ee63b8e621beb91f9c98168f4f1d0 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 337e445933814011f3155b166b164563c6db042d 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 1cb24517e421cb8c0c1646f29df594b2ac17e869 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 484a48eeee527f9dccb674f3bd94d4138271cf43 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 41138b206f1db09bdebc2d39c5736f0641c4c2db 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 465582ad2fb931fd1eab54b08ca73e2e56c76da1 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 6419ad7fd37a34f9da1ba05819a8a0aa3cb902f1 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 10b37e8be835ee624b051c51b9aae501e81539c4 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 6903e1711781caa3b0d4094c35a6916c68b158ca 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 914b1336032c624d18d91d4778577a6242c9e69c 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 853e1d696096a9206ece415c4a0371ae59cea83c 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 6d3da64f84dcdb1d3a580b08afef974076a217e8 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 605d9bbe05bb57a39876838c0c7de160c1f30bd2 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 6478c6751fac2ba752d9b51eb9d1f569690b03f5 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 011884ca34eb9a7dfbe59c6efa665c43859449f1 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 b00883be75d12885c4913323fa1e1bd21273888d 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 ce6e1cd2d8362014a7d741ab1c6c8b65063562a7 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 17d4b30bbc0b71fc03531807d77f8f3eaace8fee 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 8353f8b812b4c0a7c22e732a0d4ce3cf4891880d 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 0e44697b85da7b8f329970f198124251910ba269 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 612ab53acf56faa2c4d6c3b6b97fd195c364f2b1 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 7505794711d6cb8d7ad293e2f5d90b5f2c83e1e8 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 45f613c3c725d0afa9d51f4e2380449cd710f25f 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 24ab99ecb517bdeefe29e58b9a42f711ba577d10 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 df14de5c631a6877578716155716572407c20804 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 3528b4a3263e132e6c9847d2e47081f5e9e0fcb2 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 32984902134f4d339b691c0844925b4c027a4db0 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 d2c49e9a3f7e131f0b14832ad2ebe7e6c38bd65e 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 23f8b86397f63536998cc122c85e7ec6eafacf85 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 e460b8bd0279d3f71bff0f9f994b2e9a0c037a1e 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 6ec75f3b27955280a7e1ee7fa2a8c87210fcd02b 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 9d070d049b61b957eb3c28a4f44f5c9f856391cc 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 e0000db23266ca0d2d16e55c525238a414e9d171 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 e1c33f4d1af75af02bab21e22f18c58c2e788dd7 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 84db0d2147611763ef74777a05f45d327386a074 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 1879d8cae6d7c7a135104f7662d1297e31503e43 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 720dfabed3c3a1bc0b4f5af3cc6c0958e1ca19d9 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 b3bb997ba34956dd92bf3e6e8fbd65ca514849ff 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 0524190721d8da7333c41f82dce19287f63e69cb 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 96dc1a43205ec07497fb32abbf4fab2a40db95c7 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 7453007799e48d1f362c4e3caeaca99cc0ae4b74 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 87479f78d678b1ee3ddd38dd0e31a5efff87b076 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 8631ffe9748adcaaf7449cf3a8f6833510998c55 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 17921c96c5b1b8fefe848f489a2240340b97f698 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 66d43c56284009f623ef187d4da37384d26da42c 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 e8fa58c0d42f42606c6a55b34fe084e44680664b 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 3549259ff0d2ab58366db27c08fff3c7bb323ded 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 09c816589ba9482a83078daa2894e7561bf5efd8 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 ec6e402e965c77e17806717622930fe6aa3b65b8 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 f1a6832c5076c569bb59ddbdf942a9fb4190b498 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 f417a05fac6ba787a345df8fe90c5ca1d03cf78a 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 eee46e808bdd0fb695a7acf8dc8d5b28e9c5119c 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 d927a625cbe8d09eac669c8a52f749f4be663914 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 1458680ae2d88aeb8bc1ee7ff66d637d869dc49b 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 82220f7c5659dac539dc5d79b8d3f4f048190789 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 55e71166b1904f8d2f266e76c26b9100d0a554a2 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 dd3c8cea705c2189287d583e8020ee1841ac1d23 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 163ee630fffbdc476bd4b9de776c5bba1b28b703 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 0032ef3c7092ef850f13af07e3aa6daf04da5a42 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 fc29694eca1d142de19ada4ac997a89ac33b7c11 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 d0e223d61554fc92a722ef187b38bee7472ec81c 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 07bc26a617d91e7b88ea58e2e7dbeee706f708fa 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 3183d599f784e8e46904e9f3c3b8d5646846a038 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 9c6ec535d8a91c407a1125bf570f2f90495ec8c4 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 63f57f100b36fc264aeed9e7ea23fa9b5ca3dd9c 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 9b604b42eec38ddebfa90365a087814261f739d9 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 418aed167d35efc20d28b16d832f57e33820fdb2 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 28ea29dc8ea85225cfad34572f5b1d5298ded4f9 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 041af9027f673f7908f5e3b7817d3c40aa4f0d26 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 61ec2c82716e0c4114e172e9f240e56d73ef23b7 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 892b32530db22290b8c7d7cf0001757d7d771cb9 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 2bf560ed231b3c31e0f336738e46e9133253efd6 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 fd2e8ac3abfdc7ba882976275f8db605c63a928c 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 978c3942771522962d1a185fc26a7520a959c148 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 84d6c6d55848fe3804714db3d3515ede1a9e803f 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 dd58b8bc1b0f5ba0352b48fe977f8b02b79dd552 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 9a01c27de861ac91b0ea71e53e454e8f657728b8 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 b44a141962f7c29c70d6becccabbc85c9da25e63 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 f9b59832e7536ab2813319a0c71815f3ab7de3c8 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 e602d1fc4760e9cb91d215ece5bb3654cd83d678 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 78938d47c98f6948f7c5fffbec0f5659eeb52178 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.2. --- srcpkgs/python3-imageio/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-imageio/template b/srcpkgs/python3-imageio/template index d701c2b0da50..b943141bfcb6 100644 --- a/srcpkgs/python3-imageio/template +++ b/srcpkgs/python3-imageio/template @@ -1,6 +1,6 @@ # Template file for 'python3-imageio' pkgname=python3-imageio -version=2.22.1 +version=2.22.2 revision=1 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module @@ -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=057f2d40a45bcfde7acad51b7d9d434551231555dd34f004892e023e13dcbd8f post_install() { vlicense LICENSE From c97cee715b364e433fb0602271fbd11c4c72776d 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 4173309a41714180ee88f724420496f2230c6b99 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 7a72975d866b137996bb8bc0618edb566568e659 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 6b88bf5b6e160afa68d7aec26bf30ac20c8f9cd9 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 2afe2ce6e3bb9a2bc1d3e2de9c64b3d705bf78f2 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 fc64496f7c2784bd3853386cc23f2d17fcd7627b 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 c758f268ff7093d2b145cd1a2e78e4194ebbf34d 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 e9b4f757dc0c00a2922a96f2e93ddf83c8d4cf35 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 70e7dc0ca310419b2046d5a534fd64a4f0d61ac4 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 9e857355f48d28983bf0970a5ea1dc1a7a532746 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 de234a99b217b22a1f6e1d48e3d3a06e6c5ddf58 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 f3cc98bf2bb9af1238b98ba323831426f680f929 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 fded64302fc885a96142e41809db5dcb95036925 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 36f662b0d4b22b4a140d43a42c4664acd3089d77 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 ae857d2c63ea96662bbeb65a6022578e19cdb0a7 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 ca370b639cba7b15b7fa134a3ae4c99fe2533b3a 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 9731aee72aa048e83b55607ffe08748437372bfa 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 311b7092c423f78334a40427f37f50c236c12624 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 c85cebc41258fc8b72945ba350fa3429c722f0b1 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 37940c23bde3cace302655ad41a34725518c5763 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 01e06db9acb8a3bee2f60c03f6641707af5b445e 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 da51aa5cdd17c3e2037caca669a8722989b0c9d5 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 88dc4af3bc3f107ad09f17ae6d7157cb48ea592e 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 6ab6472050b8616d73b48d550d661bba257eb877 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 d8ea14809e8a0a02bc49804e460eddd9127b3eb1 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 f8e9272e25d987325cb4b265e59d649e0751a667 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 17442656939ec421c7538a024b5aa22901536515 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 bd1fd204567bece2734993e4f29a2d8060945a71 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 a17fe8e8ec421edda8deb7616bc402c694926733 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 bdd47e1c84627ad199128d3c5d16252c41a97a90 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 63e1031b54f0e3f6c87d4669efc99c0b0ef96cce 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 f11ea3f16543d50451f5804bd41a58255f9cb6de 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 e93276b4af26480a1151807eef40685040894fff 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 1e63ea4c3a7d3c7a601ff6679505cb79949f472e 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 38a7e825b4f2587d8fcb94b0c1c075989bf42ac9 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 12386714788e0c717e5e0e65ad12586bf1dd72e7 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 abde6f794ce9d2d247808f10561b1ed62a7701fc 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 01d3cec87a1c42235c196f0042b59f6118771db3 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 55720dabe62f3e078e13ca66742f34a56ca7d60c 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 58965fe9ba2cfd1962bfed77bb9efd30a45c1c0b 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 f8cee88ab6f28a6cc15ebf2e95b69c670eeb0de4 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 e062e6828081fd287476d1a6c17036f363b3de6f 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 a4d7077cd2f796f8bb0f32eda285538c4146ff3c 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 cd611460541daa130bd929b6d9c47acf7b0cdb69 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 f960d8a86b813672d0352f971d96ddeaa0c8b046 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 2324af78ea6f35dac3389c2f1a47545ec9912703 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 f25f96061d831abf85b2e99cb02f3b6724a6afed 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 562b9f356b7f9dc4b695a753b0ea9b1bea19f1c6 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 8e241985fd46ffae1534be6a066a80c776fd9af8 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 62f6c6cb04cca56e750f994fccdb97c9460aad7b 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 07811dc0ae682a2a49f183a185f66ae73c079915 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 696701d92f3d7a5e4235fef7337bb3c2d47bee7e 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 2571dc85a88ac8e79e4fde8b9b8f367d2fb1be2e 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 b8c9e7ec43edcb7743cb2db9841a58ceee320dfd 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 499bdbde3a12ac845a4f362d8803c652b4090784 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 28546426ce57bb36a3662735484674a57d809a9b 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 07d72a7c7832b159a05e7c5e223a9d15aff624a7 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 060af9ecfb9d409c69aff5208a795c38f76899b5 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 8270694bc1b9..8e178d762f29 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 build_style=python3-module build_helper="qemu rust" hostmakedepends="python3-setuptools-rust python3-tomli python3-wheel cargo" From ee1e7736539e210d12949516ac16dfb21ddb7ec4 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 d365a5b5c77a7e31185579fd8c68de8a43d93553 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 dc8098bec73cc092ae103bb6f78b5759a18ed870 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 e4048b70906e4deed5e8be7eac6c24e16993d03c 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 ebd7b9fe44f42b8adc4856ae176a1418a262a0c3 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 213bb938629f8d8d9336388911ce0d2918a46522 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 4fdd0115ecd6997b37c655f0903a75481795cea4 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 3454f3a6a774a179e64a13a597d1189a92e8153f 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 f063ed548e0f674f1c8c2ebe69a1941a419480e7 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 eaff5921de3e71137378a55373ad291c7549d70f 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 af69349b2cbcd163e011e9a238b88fa26c3cd686 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 435b705f91b962c58d9b6fa266e751917b89ecaa 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 26793930ab997a774dd52ea99fa1f4f48860ed6a 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 24e9f93e3d1234f6a83cea8ed5299a10dd918a32 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 dd0b5abcd435f3582d28fcdcdc7f12946edd70c1 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 f2437610a264752cddd612e4c6adf6d8d159598d 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 1a2947771ae1d40f75c1753e520d6f47ea29653f 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: rebuild for Python 3.11 --- srcpkgs/python3-websockets/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-websockets/template b/srcpkgs/python3-websockets/template index 7c02b7ec8ed7..49771ad2d059 100644 --- a/srcpkgs/python3-websockets/template +++ b/srcpkgs/python3-websockets/template @@ -1,7 +1,7 @@ # Template file for 'python3-websockets' pkgname=python3-websockets version=10.3 -revision=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From 3de7fba0d202a6d9ff2a20eb0481667fd74f9c5e 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 cebd3714abfc631d0ee99e527d32b5d578a45d90 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 5a495d90d7ff0c5d3dd37fce80221d4ae7746620 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 2f510f6515e84810fecc02e07e545f103dfe5291 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 40aebce41de53cd76428efeb1b70dfe3aa5ddfad 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 9c8e14d398ecf7b97d6a073d88c8687ede96f2d8 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 bd6ae25286b0e28804f80ebdd22ff1a72c172238 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 be1d7f2958344934f839a142a404105696343781 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 f2c748faa795167d5e79acf5869c63ab6271b43e 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 13db6d202a9be7ce26cfa9b568aa4bec2d57f5ee 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 4cbac99b10acd0751e719645c307333a45e8a809 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 c2deaf64ce2c84fbe84fca99bfefc54cf43c7d1a 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 fc78251ae2e1ca9f97634d77aa0d78c2b0defc51 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 26ce4c19439e4fd4c1cc5e9bd250e8a582492655 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 b1e1b4a5c2d68140558cba57560a120b0b7bbde5 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 cda5e95b44ced5594666b9c58026720a0fadc878 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 8531f2ae3e0719bdfea554bc6d7c3daf0a7a6253 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 f0d81c5d958949f166e3065fab34c5bb8018f1b6 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 bb6fdd06e3222c60dc10f341bf7de0ced8223d73 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 7e54b459badc52fbf87cd921b99b06384879dae8 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 1ae2625969d2cbecb60570f43b84cb7475429538 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 15890af3134525dbff84452da01aff7135eeba14 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 02e890fa55cbeb3619f7545d329634a6ff980142 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 9df6ed73fbfeda7d3341051f870a20652e4ca1ca 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 5d88a387903334860573c789f6544c214d72fa3f 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 e8671ea763379f99e999d239051f9ad0dcec03a7 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 66f83d5b47d5e3ee8b38be87160dfde57ce2f2cc 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 5facf96758b70c8c7e1e2a96f0ee3bb1522fe820 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 abf763a1cadd934c067ea682ca0a614918518307 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 9c9ed10177c18d1c04cbdad2626355cddc9a493e 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 e95c62e77bf920c84790e83d12e3ad2b0800821e 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 e8d56f2a5a5add1534c3b317a06c2c780472afd8 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 6548ae3fe8850b0af45acdc9d02f3e7bd44a3251 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 c087cec70fe26f15525fea306835541c8535d8c5 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 e95bc49bbb1f17a0f7502a70014337c0412e008e 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 37de296bf28ce0a515802062b7e0838b523c90ec 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 a3a9e080fc5d143e0934a939bbdd2b0ce1146609 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 ec41a5983433a2b20561e4060dfda3e38f4d8bf4 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 6da4181e7a4dce70a1909fef6ff015280386a343 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 c636d063d4a935d1cdfbcfb58d58f3d8ff37bc2d 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 a2b0d1d1820d5e0fa04510acec061040257f8c96 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 e40535716a97c992161ca5b390bd4a4ee03bb494 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 5844c798fcf8633f77605060d6b0ab323f19ce7b 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 dbeaa3ad5a300c0043654bb88031887a47865d91 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 061300bb05fc53c7856590d73ea3f5c8f35dc199 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 38327038967500d689a14a89e97887212f9b41c5 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 855578980e7c41014088851ce7421892ead22741 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 45c1c9fef5062f1d8709a3ca0b4ba4ef5606bceb 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 37ff997f0d2c7fab9cbcc102427dbaa7fdfc38ab 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 3fa26b964d7be5aa1203c1825d4a6b87ca233d63 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 f5b310350cefec1f93f79bc338a6bba7f466b726 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 3df946bd5c53c59055a0c2a0fd19faec3ef1aa39 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 79c68d58804b603adb30da371f6c2c3dcb1911c9 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 48e8718f84da7d0483ce61471db7f9f833bf13ad 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 4a6718abd780104d9bf12f0ebfc921090dc1dba4 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 3cf365ae25217667bb5858e50e47614de957f0e7 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 b85dd6cc752a67dca1510a023889f6bde0c18841 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 a6cfe59095e6e1b9964d8b8b39e8490919932406 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 635a478f87a677ac7b1e26bc01ea78668a1607f5 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 99b8d5fd54d2ccdba444094a1867fad8d773cd5c 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 373e58f7545b9f13daf47001dfb7635cecd73118 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 2d1ac2583c78a77850101ad072662290a71a7dbc 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 30df8ec82662b0b686b0a7578dba5802ef38d0ec 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 abd597b2a12bd8bd786449bccd7d265e6265b077 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 dd56ceae36948a5bfc387d4dabfd0dade12bc321 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 c9231a8a1e7ef6bed74ff72a9a32f74a4e95a249 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 ed4a57b46ba97a2c5e7cf5536de8a7e5183e5db9 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 066a4a45bcf768cbf196fec43a3f82beff709881 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 797f57e8f7795a9d6e76072d32d2ab1218adeadb 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 f9dec696c0963787da1366c943e9c1d4704714bb 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 8a2992c0e32d249e6231eb7119ed7bd0e7a9ff57 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 4bc0dd7c1a21de382ad7f028c8d19ef1b9a255e0 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 00e60f82bc09924d0ea360d4d3238eb381e05493 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 d44056d1addd2593a52624dd8002650d31ba7070 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 6c62e62e161ee5840f6cb887468621cdbc20b41f 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 e5d42c8deeb55b3a2824fc0958adeecc3b2161ea 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 6b93d98881b011e4f2cb8a9a4024ba89d420b1fc 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 a69d839e72afb39b0797399a51e1d1295af89693 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 3015e99d684937572a8b1a626c3aef5e096d7784 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 25e795231924d109b4c131ad540395a8187c64ff 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 e2fb4b98ba88406afcce219e7c3472c878fe7271 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 7d6919e25007a9b6a146c313fc3c5818c285dc1d 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 24c0cc5a9ce1094f9538c0425275765e3ee8714d 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 7d09fef3d30f3be304f1cacd420c1460e4c6040f 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 855dc58ec0e829ff836fa88af2b46797a5288073 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 e05d039e4764dbc92326e122fb70f850339fcc33 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 aab5a1081bbdf5fb469eaba2f8d798d464fb39c5 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 5680fa19296eb70c1ee079a9d0806c1d2b504a33 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 1ff94e8b3c155bcc038ca9c3188f783b20679ced 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 db32b4de94d5d9c9ba9084a92545e683d00b297a 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 f110857b9f01a8c74a19bd0f6717cb021363fab4 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 ea764d1f33f4b7ce4ae96435dc6a7998cddcad81 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 f5fc60ea29c2d9b815a56923985e37d1b34f86f6 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 d6bac5e81693fd84a8ae0716f157b7c47d79732a 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 fa51eb929517cde39ebfd8d4ed41a80f59b6e59c 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 9928365eb9399df4428b622e17d518b1bd656219 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 d1b354a0c5e5a7714876ef1080deae3da217cd2b 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 e82f741c5084354c9d65c708535ce86970499a7b 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 6fb126e9811998de98fbc1e514bf8b87568328a0 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 369c13e4bb90d49695a671ccd86b96889fc6e339 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 04229d5493e837f2c99f50d8721fa61106572a06 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 fda61a58a016d694654e5cc2bd7dab7c6a674a2b 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 c64d24890bd601b758b655b49e507e3da245e9b2 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 f762e2c89ed7405e0ec1291937ba31342ffcef5d 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 a9a7afd0787e9ce635e44fd2a93bf63736242255 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 9dcd41cd4931f5e3e238f6ed4f72e41d9163fc1f 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 ef44a4cee6dfc2a3ae4462482a388f361c0c63df 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 0ad1737b8518593762ae6c1e4f81a1ce548692b7 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 b423f6933e02de9cb437d1a020c75e3850306b02 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 07f29f2efefce40e4acbe845394c7821a1627af4 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 b194a2258d59cc1b3c1df3498295bad7e35002c4 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 f800b5e71f6ca2db7864ea28d11872241312058f 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 6611f33e40a70670553c84ff76adebeb884eb8e2 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 25e1ac3d98fe263c39e887e746d46ce163ef36ee 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 d1cf77c6aeaa5cd57182d30624f05d278bf01052 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 3852df1a80b93128f87135a0471e9a5e5095cc3e 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 55f400a6329e3b6d633dfe1a2fa94fb67aa88989 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 62a605e43d39e60ef2c0a49cc0c31becca5209bf 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 6acab83c09562125e247154ee0248b4b10513aa7 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 2f7f51b84829069a11ac284d6f3faba3d9cb39c4 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 bcb477734aa73411228a9ecc81ec964a925c6a9b 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 1565b6915e8d35d4d871e946bde8aff434b2652f 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 5aadb03c4f15d3d321daa17c2a697950520306c5 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 0d745cb834167cbb01c2498cec215d93a030e250 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 8f4085c89c8c626e49311c0f75d69da3a03b4452 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 6fc071f39bf5ee1e74f1be7fd927969b620bc8cc 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 42888f9c1a8ca3fc4ba8d97b01138345c3c024b5 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 96ec1963946efcf73e3e492b8ddfa7bab0628cc8 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 2178b852dc50cb92d3e98ff36b16a73ab7a175d7 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 adc9060f4db560d14aa1f228f520edbe6aefef85 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 aed44d45890a5a0ee9e2e555b535bed3fe01dbc9 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 b5da510dc8a13fcd3cc34e95635d1ac12f7955db 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 f3c053fbe0aa2eba31c2570816f02a6c335222af 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 6aa6373ba17ba34dc22ef654e697efc4f2f896c5 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 d48ba5876e19f7f9c96f05cb365326853f181616 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 8f0ceedd9bd5cff6c360ef8ebc53a1ca42a2880c 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 517924a9395fd4f0a1100b7928f5fcf412838451 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 8e71e6738de86f0b10c6ba76895e963d92299d00 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 231410799c6e5a498b18e77bb637c285d57d42bf 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 321794b9dcabc01c5ab3456915e6d23e701563b0 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 2f8673a294609d4745f0907830a15d2ffc7c2506 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 9f89c199f265f939b3a412ebb2a0a4a52ec6770c 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 00e1fd133af627994b181ed53a8289f0a3e759f4 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 7e0c0995bbcdc7fe3af3f89cc7e09cf9bb5ce53a 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 86d61b23c1a104e6f301ea60dfec9c9fa6f8b769 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 463e9ae041d3495d33eab6cfcd541c1beb90f2a0 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 b3eac6b544bbf30df493d3c3e60ae68b66fbbe64 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 9761238be2b446882e816c6864a1c5a66fae35df 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 e09d2570cbe539c62c483c8274d902d7e415ef91 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 118b3bc186cd1bcb9f8354112331049d30bb5bb9 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 138677578cb1778cfbbcd92867f1b1d8e0383811 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 1da873ae7c5483adeb14a40e8539a016f9f74161 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 4c44ee279c34a24989b85fb009ddb8bd8ec4e256 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 653bdb3ece66bc058451e13e4fca5d8472b3ae4c 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 0dab496507188299b2e6b6dbca1c85c132e5545c 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 2dd62e16d4857c33d9a0c0eec2360415ad0f90aa 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 e67be3445abda43df90b50c115d464dcf3d370ba 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 c3bb66208f12f61c87858da8352aa85467bc1efb 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 c87d8a4816f3216c5a0bbd9437f30b8b7fce9d19 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 ad5334b51c80058059ded61380a7f44f4bde4f81 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 695fe324536d9083ba13ba63287981c12f379385 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 5a1d8afa814624f0bb720f9a4de040c7034d1eac 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 70050824a1110287fccd4f91c5c4dfc806d616e5 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 9b88059c49da67af20c1cb3fac65c34fd35ae45b 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 e9607125d00ae8df812a1e2a4c6db2f3c7864155 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 9bdcee98f4f1fa67ae71ce2b2ee44fb37c801ff7 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 52ab39ec4a045c725741cf456b8850ad46b6e86b 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 ae35883b68c15330b68316fea9ca8bdab3aa70aa 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 17e4706fe7844486bb58141d4f8c0d3e0a365182 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 64bd8d53f5d143bd98ca3d62d586167a731a04a6 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 2f87a94c3b00a049bb7b2453e8cc67de5ca1824c 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 ae75503fe187d94d4b068c173663c67410c4c68f 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 9a4cd4cc6249b638d0ef6d93b75ae207eb38ced3 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 7fada7b4071e954c0d711e6fd581295ba95a18bd 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 902d6b61a81dcd9d84304d3a82be216933b77dd4 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 a4f2a4f5fda398716fb6051174be5f44bbf02a47 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 c712b975d158906c8b793a162b719b57f1d4056f 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 f32ad122c328c3a30197929a7c8df90c605c6771 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 55fb505dfe3bc218ea9df85197bc0f826164ab7b 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 94500e04d2fbfe065cdd56395256476b0706118f 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 1533ae6c2d5b2bd6de3637e7a55840eeb5527d1c 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 b118cf7a5f26443dec0266678f4ee46e33ce0542 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 00908673426ff15994263dc81cc9f514cb91c734 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 f19f71bd2862ff04604f8b4e3f748c9f35b7ae65 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 bb650721727a9d3fdb12b2c799149634717f4f86 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 def828fdc1034f34a970410269eaa980c2d9026c 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 823f57463933a0ed204fb3ea81f89320382a0e1d 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 0563ab719733190dfe6d956081c2df74adea73e9 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 67b516e8f1b9fa16549080055cf14419e9b92288 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 4986481a96940dd90ce02ae9737d87c5eff3cada 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 387d791817b848afc1782efdfa334aaaa143b380 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 07b054d06ee76eb3fdc38faf847b09f839fabb81 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 c17ca37e9137c0b1b29e23f5fdf14723653ace6a 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 9f4b9c9a101f7b0699684ba3cd2df3384fd97a4f 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 c13d24d3da0f6dcafbdcfd18247f3c560fab2b63 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 0c92c82551e69b4827c076c01d8e133587ebb002 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 781b165a82c32d51a886cde0cd1b56fe30c255ca 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 4c4c09ba21dd898c1c02f79413ee8d4674c23374 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 2a77cdee5a9355f90a58570f6fc9ea499398659e 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 e00e69da010e1f06f884c295416071b474a4d2c5 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 44e6b2e946afbfe9100c78643cd5f9db1fa522c2 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 ed45f041e393dbb96cf31f0e4d5387679e143c89 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 41d8bc004ecc98803a699ed6f0c1a67336314d2d 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 7f00808a71b9e29e03edd60592a3433b5de9b1d9 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 04c0816e6bc8af9c7e31958cbd568a4807e09ef0 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 21d8407b5d135655d316cd510df713424f902568 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 262bc41df2df9eab19345637b93d900180db3f2e 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 42a60d05fedd5b2d18ecb7b1670d8c5ef89b991f 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 cd5e6f410061603d4aed8e5fd1a2b47d9ae8b837 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 a548ccbe4e4b04017c6cc7c94d1034cad62f9586 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 7f6e0d3421e634a23bd2db6c2944d3f2f5ecd235 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 5671310bc68bfa92a2645109ed2f478f90b30047 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 f8e4e5935675f32a4a4903a80805ce00c5203456 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 fd3f543e908f937880f8cff9bb69023495fff200 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 be04c808e3e0d156bb5190243480cd7ff410bbb2 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 038dd89e8f083a621ffd37b0e92f5a011a7706d8 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 79a231a7b15972c4b3a9b80f771059835ac85bbd 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 858f284655f4fd98412324f63f636a25c8d6c483 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 184794bd02e4451eb0d9c85001418652e5566a43 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 7983f4b5e0ee61644357765a2ab175d4a3c3f3ab 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 35de4fdfc3d986b1572b1de7505035abb942be28 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 8329a421327f4c0732d28659236cf5cb0a3fa236 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 a2e9157ba8d0bc6fa61d86e63bf8850f980207a5 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 f3ba93c1ef192ee1c0522cf879760d914915cbc4 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 c474f7b8e3e89c421734e460267edadd126e964a 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 be8538706b7927a7bd84cf9c601763010114009e 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 87c8e24924c33d3a1199bfbb8dfd74251f8c1b85 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 2d6af9d0d09694d1223db5aabf3ea9ac958719ae 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 f21a5ca38e900ae5792dc87c515d4e9d6b224c70 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 b9fe91307184924f4feb34c61f24d7a8655c4d6f 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 ff999aa1ec300463b594247fa48f0dc1ed976fda 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 8ff172ce44202f238e8ef84dd69da91ea39812d9 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 4bdea1c7d0cd99a087c265d46ca5d965ffbef18a 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 4d2e5f7b17cd9b6999c60a9a6b6bb9b8621be20c 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 d60a416b056f8540ea589ead34e49ae504abc30e 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 4d3e0bf1cb38db6c4023f86c8560b70e8d2fe76d 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 735105dff218fd5a0d1c5fa1fdf58adb01dc00c4 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 bb966607307cd86fa14037ca36e8ddba8784fb27 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 369985d7d1b9ec01bdabf64548bcffd824f568f7 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 acbf4a3c1de5eae257a79d5131902daf55233101 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 b32bef1a253a52cadbcd3eed37dd718c74826ea6 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 09077d396760ebe7cc0e10bbe7eecb7841ecd9a1 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 ee89fbe30a34d5305c46c89a6a013dae2a1bbe94 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 ff7390f124390fd8f70eb60c21d6ad649db12d53 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 d1ea3ce0f74d7fe8cc57fd35b9cd64312dd26127 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 4a798b2869da72f239e122086e3fa58f367b0c75 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 b54650d4ff92b9451f39b2eb9891c9e797d17702 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 60646928bea95ae544d5db9c91a2abe505faf715 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 014d5c00983ceafad10282745d917cc4b98ee529 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 1d90ec83b6a4f48d6752b1b1b99b8dd44833ca04 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 eeed2a697bbdfc252ffbb8003be34ab0e0f7918d 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 7d255de6b51d67e63f04739cb7201f85ae9dd219 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 07c762e56f092915cb3ccb512554a15a3e96ad5f 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 1d82adaf19bed6abc9c8a21d45d301c4644d3c92 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 ab64955c3f9a77e26810e867b205aefc4d58e4fc 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 1708fb3978b8d5d548a957b53b3eae409993ce1d 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 dd1510f37a83a9a30303ca73ad26ac50e5ae2526 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 1ef024b2c577b21b550221d303dbe3502749a49a 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 680fa2f294195790cb6fa6fd584756092c44f485 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 852f672a8fa65e0b8f26da72e960f4c199d884f2 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 e460b3ee4e85..a93ca69af0c1 100644 --- a/srcpkgs/sqlmap/template +++ b/srcpkgs/sqlmap/template @@ -1,7 +1,7 @@ # Template file for 'sqlmap' pkgname=sqlmap version=1.6.10 -revision=1 +revision=2 pycompile_dirs="usr/libexec/sqlmap" depends="python3" short_desc="Automatic SQL injection and database takeover tool" From 1d0934e65272a08f2d435c93801eb16ebda480c5 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 de34cc2d4409256c29b156be847480ce870669e7 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 95a79fb628ddd1344f3f9969dc8355d7b1ff75f9 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 1b6e2e9f0b085e027d51e13bc73850275996f3e1 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 6f269860ebf246decf6d22a3a4bdbb3ad792f4fd 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 485bbeed7a568109709164e932a2af5867a0e1c7 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 276e0af9aa0b9b0d61fbed12fc707a88e0e9a97b 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 f2b69ed0190acd0bd628b475622def84f024dd2e 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 f1e24acb974bdb82df01e0122644cdc2f80698f7 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 24faf352c3b8d3f7f636608fbe3835147519ccb0 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 928771493439bb9ccfb6df9fff32f3aa4f5c56d4 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 0908b79bb7fdf9c69df57078168a66135de976ba 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 0f625d91d13b21d7c177b7d2342a7089b7238eea 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 47ade2804c61bd111c65f2e3bafb82cf93598ed7 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 32fc16d86049d5f9e4a3f1774e35ae0f314f79b8 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 fd81cbca9eb85f34e5c641fbc86d892b66bccd8f 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 18f51922ec0d56c23ee0c1ad43a9b15964d75a83 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 09c1b766ae6d2388ec6e3d5e78ce85d55844bf65 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 67b40e1cbddaee216331a0825a38f52a5b615cd4 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 953f84b9698aff6ec9a28ed687ea0f044102f5f1 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 c59b973565b1d0162b8225d98bddd71cc139ab81 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 7b263df2fe951e4494334692ba810a8b4f7f8f29 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 966e62ac91a99d567dbdc27d4fd9f121780885e9 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 f33ba76847dba06dc361190410ca00ef3ce93bb0 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 b06955b8dd96d36df045dce691936e571d6d0be1 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 e421114bf8923362373f4f202de5b827ff7fd1d8 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 ea170d8792b0f515c2180d8248e6047e43629c13 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 8ef80ef938ca86e87d01c54ecf03001443595f8e 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 b481c5c2c8e6ac47a88b11813d9e15f4636a3edc 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 e9e13315c5e3be977a4e56c768570cfd23ba701a 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 af685be407de98aa85a9befc26738904eb51eb68 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 578a3dfa9f25d13cf573136285d86e26cd45a189 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 ae7d5cec622f7103eff9ae7b2f9d7ed0a7c89681 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 9e69091c0abe36d02c505c9f4b5566158170e9b4 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 d13339b366e4f3b50144e77bc102eecd574a69ac 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 2a43d9d6d2094d6acb853de2ea40d4d41f0b04b8 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 6c81c562c1ffb32f3c970f8b9d95bfd853634d68 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 c60a725792ad00db0d8fbb977e9e11a7c8aac017 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 af44ac0a0d04ee576a94600ef5aeea2eed6c7f07 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 b02e840f47cf66027df3d0251d139d562da4aeb6 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 5679208d982046f09ac79a887c42d2e141f77480 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 4171754ce7195d8ac51aa0751442b2c9ce30d1db 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 3f62a903f81ce5c94be8ef22d2f86cbfb57f5c96 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 fe47f5b54006114f6c658a1078417c4feae06410 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 b580fb6ee7f23f56d1c9f5967217f1ad5fdfa52c 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 a117ff8e58d6dfcd3796cbf85dedabd8c25a9d92 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 54156c3359e627c9e033954b312550d7b2e23bad 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 2e7f44888e5f973ff70d65d6dd599d252fdd4631 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 3ca4d4cb0678d8d8fb6d5f999363537713eb8797 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 98eadd9769f145966f3974270e729a346fc8937d 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 f1fcb7ad5d4bb9a452ce0e873773339fe33dac6a 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 a0d66bb0e107dd7e67ffc769aa937afa203b4e54 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 8c1da7ba0c3e6cf30ad90e2da87970b5eeddaba2 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 4dbe717f31d90dc96543bb2922534c766f1745c1 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 72d8475fbc718f3b696181fd63f5f9e45465ba25 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 3335bfc2930c37fc9b94ed7019d5d04f114dee2c 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 4f1bbbe30c3c167b0f31f65acf9802d1cfd807d1 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 dd39342fd0c18f7ea86d36f1b181dff9ccd2854f 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 9ef0c824079fa42c89b47129db7b7b12d6adf18f 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 1f1e088f3c67d2c2b3fa7441d2a378b914ad879c 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 32bc6b03a9942f6aea345dcbb47006d57bfcf6c6 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 00ea66862cf1e92a79498aeab25d697098374795 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 407c437d10b81c074f1600e4d6e58fa29ab7caf0 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 66587a3ff1e4726c885556588a3fc9103a14c988 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 68d41c833f8040b3140964840661768cf0bad1b6 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 ec75c71709464e8c8e375a61834e122791481c46 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 622ed93cc93af7ca57ba2ae411c582f06793e280 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 9785929a28b744c7d7d40f2cb4e9bac612c6eacf 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 e4a3fbefe3535cfe59bdaf6c7ee7045aa7c1eac4 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 5eb5119cdc4eeefa40d8f4f9a5ec77f71321747f 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 1bfcb5422f8f53e00bba35b221af8e9b91f798f8 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 8fe800b5e499f3064e2ea5471ee688fe3a5ccf26 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 318da28b1612a9a430ee2780acaa12e86357c938 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 3d3ac8b3996d92712b9b7b9c10e0587de25e8b20 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 8d02ff0f33a0e621ec48aec2c183d96d9312d40a 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 ec1b6ef198650b8832b2aa6194551067078d57df 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 cda62d48c821ef985a40ca4cbcf3889c6f11eaf8 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 ae7f5b75f7cff282bcbb7edce6d14f13490ea1b5 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 e6469a812636c41fc1d0c3dc4287a8eebcad0828 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 aaeb54e315d6d57db6c26ce4f1cb2f1981250e50 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 fedda0a73c34e579daa826f1e5b389f67454fe31 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 f3b702222ba2e39c2a74ea73be9242cf4b7df4a2 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 dcffd99bc01f278697bba117b511497f028b0ac1 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 ca7e590daefe5a47210a868e9fd8363f954f5782 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 9aba334f27b061775bc67ec0328496c48e640b2b 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 a3f8f6750a17bde85abca25ef32b244dad37a457 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 c23d27d047e013c9363e82e6fd6f128315c9f75e 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 63bd0a9d1e1bb802f1af1b120b0cf5f8d2f0a3c3 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 8bc665f7cf8154ae1e6c1cc57bd1a4a90fc507f2 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 cf091eda3837664a19f36beedfeabcf9e5086c18 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 4afc42e3508b98069a74b7cc9f3f0c6d652ee189 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 a0836d99daf2cb789e4b32354bc0ccc09483e70b 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 eaa94532a5cd90cf964f3ab905379b5992d17f39 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: rebuild for Python 3.11 --- srcpkgs/python3-pytest-subtests/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-pytest-subtests/template b/srcpkgs/python3-pytest-subtests/template index 75cd86bb4f96..c5dd22326716 100644 --- a/srcpkgs/python3-pytest-subtests/template +++ b/srcpkgs/python3-pytest-subtests/template @@ -1,7 +1,7 @@ # Template file for 'python3-pytest-subtests' pkgname=python3-pytest-subtests version=0.8.0 -revision=1 +revision=2 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module hostmakedepends="python3-setuptools_scm" From 6ee67c28b1820bf55ea93cc9a715b29dd2239744 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 68a348b9b64b4793d4aef26f2f1277a57a1a5449 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 3346f18638a3f85a92a0ce2cbf2859a402ac4186 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 99e81efb9eb77cfebca2f608f9fcf3c55f2c6200 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 ecc5f212896956b9232cc9ea2705415d09e03daf 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 b0a97acd2e53ea798480ca4d1e41a3e3ff070ac9 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 f1a17dce0fa4f4eca3543e45b17742e82846e279 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 d5d194f280fb893c6b6e93a562632219b3ffca68 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 e98eeaf681d08034313d59450bd9d1c8a3ade376 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 54402fd975d65eff23717729f1971fa5b8158a26 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 7df7724a709a5c064156f054f3bf3ba5dfa36420 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 c6a98a04bfc8e4800cb6ef131d921adcfab6f1ac 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 bbcb68a40c8a5c49a6ac857eae0ee8cbfd17865d 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 52cba0af45f67c7193f35a1c6d0ec93759cc354b 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 b4be718974d952c7e164dfc4c3678cd3ea33b110 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 dadf37e4414f7c4409b44459c2884f2593842c4a 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 efe82eead10ae9666896be8ebbe55ca820d5108f 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 558c5eb0ab1e8eab0e043f53d69f5bb3fe34ea28 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 5304cba66b3554a0220b59915706c5a5eb9109f2 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 a209a5850c3dd292f9833daeb9194ad4d3188029 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 b27e3389ef3f..08bb71ec604a 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.1 -revision=1 +revision=2 wrksrc="pyinfra-${version}" build_style=python3-module hostmakedepends="python3-setuptools" From c2d6e607eb3fb6e7be658b7a58f7aa59ae830693 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 2dc579bf529e423e2e6d2172d8812f56bff6a024 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 858ff99e5cb7acbfeed3134fff88470ccf81ec0b 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 b4622ea337e277266c2866ed677ae8e69ca5a168 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 959803baab82ed620ac823bb937274c594953a9f 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 94f88be62f8b2429c69101313f9e6d4e0414f0f3 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 05aa86a45b0ff8bbc8eac43a62f1e323c6092a90 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 58cf353c2aa109ec1e3a2287a2229e8fa383e4b4 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 51ff4a3496b5234c9b76ad2e9f87d9d15c8f784c 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 fbea7e11ceb3961d14acee1809f2205d24931ad6 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 961f0f48c431da5dd53f79ad8af744581b532aa9 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 1be7e4a5b562b5ad08d561c01acd601e23c094b9 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 3f5fc1954df873a07c3fda4923de3a0fecf84a71 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 5255611943fa7c37565599834661afb0caa3cc5a 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 c406e6f10308e59c83ff3bdd14102fafba20955e 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 3acf994fdb5d..798ce9bb88b9 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.12 -revision=1 +revision=2 wrksrc="pipenv-${version}" build_style=python3-pep517 hostmakedepends="python3-wheel" From f7ba056a98a08a65726fe8b5ecddea8d17a5b870 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 4e14a5817fd982fbc1f578609e9405566b51b4ad 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 8db230d3a85a3fa8941121347f5b8163a842dad0 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 6bbe5ac6025f27f1193c332209bc53e3f5e926c3 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 6bff374152d4b651ae5cab6f6c54003c70eeb201 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 b8b9c5f38548b6b6a8d81467ec47aa3b93431de0 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 892e40309b63b536a09d878196e16162bb25e61b 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 4054a59ea2031c92faacbb2999cf9a43860617ad 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 efd5cd04fc4f9105b1f436289037910073f57558 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 c46b8de3cec1c1a518215a36d8b720807cce02b1 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 9968a9463a0a1656769f890d78cb35251ef3fb81 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 a34b9d6713ad23456d2879112f59133cc69ec607 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 a05110232c75ee9ea95ebed69c03cc8784d19d57 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 5bfca1baf8ac7d3b877169b34b24c8f34a3f66b1 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 fde91a0586a52b3f0238cb6579d12fd2ec843bd4 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 4eb68cf75bcd29d2deca4aab85495244ecbabfb0 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 c7512e4c4921013556d6c0b47543facbb2f4caac 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 f5bd93350230cf57ca02cb20b8cd3ef73cd9b2af 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 8b7d2e6d2b9643f08b6475b94b9e90cc92ac9a5f 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 36653f5bfffed7ac35f318fa6e2925e793fa3884 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 144213bffbe890cabe30aa5993aa2f55ae8ff233 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 307719c1037cdc6566d02018cc861f8ca59586b5 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 0deaa0634f6b018661a836a85e9b94612e12a221 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 322019521965a6a67de1e114f438154b51daa1c0 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 9f6ca156bb0ad8b686fde1a1e09a655ef6d45b39 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: rebuild for Python 3.11 --- srcpkgs/python3-mpi4py/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/python3-mpi4py/template b/srcpkgs/python3-mpi4py/template index 9950a8453d21..9753db4883c8 100644 --- a/srcpkgs/python3-mpi4py/template +++ b/srcpkgs/python3-mpi4py/template @@ -1,7 +1,7 @@ # Template file for 'python3-mpi4py' pkgname=python3-mpi4py version=3.1.3 -revision=1 +revision=2 wrksrc="mpi4py-${version}" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython gcc-fortran openmpi" From ec57dd716cc124288312e924f925e6c7422529ae 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 e408162727f11e17331d272167247a5ca05fc2d2 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 1d44c992dab2bc6db7a0f0898f4601cf8fd66eb7 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 bc833deeb19d34a22cf345f47de26d8e8237e165 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 fda58439d1c1d92ea3ad572432269c30ab922545 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 80a3c0854a5463c78489fd29d05b8623c8234ce8 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 4a7ec4625212fc06f67d09a32d2cbcb79206ad89 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 06317c20b3a4ee15e79b825223a3c228fdf8aaea 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 78335838d86179340dacd9b5964775a6aa861687 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 ee7635498eaa4904e0f5afe875bf231895436673 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 cb441c111ef08199cdb3a1b987cb9b17e4211695 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 cd3236e2d73104a2c1633452062ad75b3774a675 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 c469e9bfb103a8f70e1521245cd331dff802723f 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 cbc1199c9ad4b9d302645a17c75969ac770c29f9 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 fbf6bdd0e45b520fcb3db98a2e9c725ed15b2b80 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 e8dd7c3a61ce297161a099f9e283cd80b6d50566 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 24b77507267d15288f9f80c94dafab3ab3ee2540 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 da1546bfbfa011de7076dbfd996bddd708b25b49 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 1952e09f9bf170c5ff3ee300415f4314f42742a4 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 14a132e3b9b6f19dce1ad10d6e929457621ab741 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 ce9847284440f38208564167e1ec22e07d5cb6bd 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 4d59862217eb80b67d43a6f5cd1e4baa228f7b6e 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 54a70408a083180091564f78ada5514ad54ce861 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 3f66f237b8681baceefcf67521191ea7857b1170 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 ef4ebb7b02322f7cf3e6c81aa004e538de955c3c 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 ce7146c5f38952254539f09af6c771365806508e 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 d2b24f0918693ed2819df3552edb650dc9dc0016 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 b0752af219e8cc8f4306aecbb6a77afd0b85bdd9 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 505a68024a6e3ce7523d5344769020ae97a9cc9e 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 02eb3fcab6053cf9716334aa6ebd3eb190f2d43d 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 1d1b71f5269ca04cbef9fa5938927dab3e48d69d 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 0cefa8a3f0e60257716d01c436ebca1493bef462 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 7d142011bee2a0f0c5265bb96b70c55e221607e7 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 f226f0b7a095d28ef496398ca88412c0133fb125 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 b83da644c2e137c9292b9215c387d65a589a7411 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 f276a44dd454ba9bc2091af081a8a40e6c3861ec 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 6330423f3c2a03d8cd669be07c4f832c1203c577 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 f13d4275bb41ab8c880ce62a7589fc1f7390c14b 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 ae4c75e3e208e68d29973c88806dc2bf1839a500 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 17128d82c615496d749e49f0f30050808cdf4dbc 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 4ebe11f51550c2843f2b6906cf8618ccadc20540 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 b0f05bba78beffc0dbca8dbd86fa4db68c86955c 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 bac4c6c377ef8a697af5084da9abe0e777da40ec 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 2c50439c992f23b1c6d89431bada19065c336c48 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 b038daace8485b4b8da95a96ec87cf36b800332a 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 75ef1afd1155aba03f060ae0ff2099ef04a265e7 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 023066a33bbd8210e58d0d453aed7f72a748218b 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 4a629ac2b6f742f2878935d2bb37e369010d7d50 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 db18db5587628d9a70d56d349490503a7483c71b 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 65d02f54883aa490349bd8c475564ace90979fed 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 f8b1cf4544c39395d77189fe1ca51a7907822a53 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 8dd2849339d7ece373f2dae51941cb911923a873 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 62a07ff3a5bff115ae0127e775cc5db030f35422 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 93e8f738905acc8dc31252fd8cee31543e89e9a6 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 eb6a21cde31bd74d85fd64adee109c2ec340d599 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 78c1a7ebac197b30ca28214c23765c8bad30cf37 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 95217da943f7b8391f8b25de199c09b381ea61a6 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 5e6ba3a07977f41c80f7d452c1596f49dc5303d8 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 db1ed659f51088988b0f8df82da083dfa42606ce 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 dc49ff7da9587b06751a658e0b98a8714456b074 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 b1a1a8990411997946841996a98746b841b7b8d0 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 2902d65c2f122734917621ef9451df7ccbba33f4 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 0d47f590bfa43e8b672542e8c3523759066c810c 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 f3fc3e0b82a9b6bd5794dd5cbd115198346421fc 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 e62a70420089b9f80948e3c2ab14820ad36d313b 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 820819bdd860a6dc5b0e40861f6e194c5421a58c 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 cbcc1b8079fdde6add6f1f00bb0ea91bcb66eab0 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 08bcf855ce1d2ebdb015c6d5e7d66d755acb1a1c 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 5203b67b87b8e3948d17e327c6fe66a12db2b9ab 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 11d15635a95fa4dac45ce93697e44084cf42b482 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 e80e6fc7fe62c3ed694d9cfd17b35568c078f8f3 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 71740953f70aca49dd85f1548843d49f1fabc46c 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 90964e67e2974f0ae735244f4f87274b238f65da 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 e3f1a138b3b995a98bf207a680f2512f744af025 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 9d57da7af3fd47aa386b834d9d45623d6d904169 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 f5f00a1414da57192f2dcc5bb262394ecd66948f 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 ad031f5aa721d333e310d5fa428a75337c67a47a 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 6ef33f919b7d3cc32cd93defba25fdedc65650bb 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 f713804cc9164ae8bbf2964f30685c42b98a8440 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 9ee6956e59efe2e52535110d0d04f25d0e9d580f 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 785368a16d2fe8fcd485ca94498f07ff84130adc 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 f0e3b8a3a3d0b04389ddbe62cfbef91d8ad1b445 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 9fbf8fe56ccbef2e305c4a90f827253c93c58ab1 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 2151f9a77a7009ef4c14c50153b6f7d620700dd5 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 c2a52dec80c40c1b0a4cb23a354fa3ec8d8b25d3 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 9a7e43eda6e7fe658723685f0a0622a350e55429 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 cd73b39c863bd7620726b4ca633b4d88551cd53f 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 2b7e756d858d9fe3f2b7746c634ab99feef9ee91 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 f2cf88d1a2891883ece87b4a1001f443229c6154 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 82d503d8e30bb34fdff819338bfcd10f43c466e2 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 bab18f52a90e1c738ad0815aeacf88eed2b179c0 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 525b29407645657ef5b7375581d4d787f35a3971 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 152df087fe084b450c81b47f51b216f82d5f9f1a 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 c3fc01d26c7697c7e4a2d75a8fcad66c67fb7d8d 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 66f389ef82a8fa8fc7dd967581cda2ba26c8b790 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 bccce58b5e746f9a797ac90f1fb8c05b07fbcd0b 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 c6ae7532d67b328f91743ffc1460030921a28a9a 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 557b1bf5dfd6f5feacacf3bcd5ac19e7c8c6c85f 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 87b6daa51abd1a38381743a5887e89c96ca85d81 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 2c48df3e37ba990b115359a5b8a7df326bc7b772 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 69d9247090468f2fb2226cdf2dc70321bd5495e4 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 3ae2c4a646e5a6020d8577debc198fb3b10a2922 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 20e69cdb9e4400d1cb9d2d5c9f01c4ca1ccc36df 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 1e82951f377e821c38be4a1f257aaf9fd7f116ea 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 2e6fd530705558b994b8be2cf68f47b2f0edd680 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 216a84ee1883362a1df3c2978f863407469860f7 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 c0c32f9fd0fe94147a924f73ba1fd6acd78382aa 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 7e0930e2fcd3890334e36e56ecafe8fbbfee4d7f 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 4469becb377e50d924211f6f049ad6af7a71efbc 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 a93eb1135956187355c63dea4fcf2d66e519f438 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 354c7dc0fd152919858772a46305d99f36c34117 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 f309a1a8dd0cedf1186587a1b7626ee641dd0c6c 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 b3b1b738194e064a9cd4fe26c16bdcfaef15bef2 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 381ee1d9d4da65415849aaa706cbbb677f0621c8 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 04d5adb11c24fc89e12872ff2e1aca9dfa220414 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 8d17da77e55440718b1445db944d920d7a86f6ed 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 f495e0927fd7feb181083eba78295554dd429061 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 e59a686566e34b0147679b225b28163e5969f3c6 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 1065f985059ef009eabbf4264a312442f76b142f 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 6e1ad1dc4216567d21576cafc36cb88790944c95 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 49b49ed29d163b13ac377572ed5bfbe588c590d2 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 456354d21b1a5435011b1363fa2770e5447ab6a0 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 e1c65bea89b0154cb2ab95385e070515d4e5a2d4 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 ec12458609d1bb7158e4137a354f7992e364f7f3 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 672b3f3e5eb85e210a1800e8b5d98c59b1375a75 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 049f2c1917fb2615ee5214f9504a3dcb0875f047 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 339d3c8b8a3b3c10a37d91e7e3a095e1475ebb01 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 644fd6d72c328de8623545b8d1db8b5b3b3989a7 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 e0cd8835b0fa49a0996c540b3317337ed384800f 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 6ab02ce0f0a2b3bf910e2878e79cac279546a1ac 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 747653ab250adc0962c953cd74f770673654e94e 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 bfc1739024e247e8f05c61d7db56057007129a67 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 d4d1a1709b283b3a09ef6580a8c3b933ecdf6693 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 9590b815ba18b024cd4fc8ce5d3af4d80484156d 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 d9b67a43f44872e0429e157c57bb531c634f8335 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 d33116d5194a66297499e17ad54d8a71511b453b 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 ebeb8e7629ee5ea214d85a0ad2a175e5068904a6 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 8b3084569843d068de01a34e9eb95a5b9ae42190 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 059879150c71dd56f846082c7d53493d06b3756f 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 22be54979b248b5c9850ca43eb63cae426769ff7 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 9ed7cf238c6de27e5ca8a5f149933141972dce98 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 72d22dba1306ea250ec02badb6c5e775f933c916 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 a5894e910c851225f73e7d87634c6451033bf8af 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 89d974289aa966b9561ac47eff42029e8433c254 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 58baa63fc5df1da10c12ce0b248e1047a418ab07 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 3efabf1d02bc2dd4c3ef2a50ef8f1286b68fdc2e 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 193a3a9e97ae1cff5bbe7972a395f0386956c4e1 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 788e6edb17ecae6cf1f6598c16edd599e6a758f1 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 e2021379c13f65cfbe739f785fc95ab60df101f1 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 249ec642aa5a63c1b4ac1e9a3c5e4d4fff8cf893 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 4a2ae32a9d52..b6dff984e277 100644 --- a/srcpkgs/obs/template +++ b/srcpkgs/obs/template @@ -1,7 +1,7 @@ # Template file for 'obs' pkgname=obs version=28.0.3 -revision=1 +revision=2 archs="i686* x86_64* ppc64le* aarch64*" wrksrc="obs-studio-${version}" build_style=cmake From da84cf2884813ce3b20721a7dca5d3dcd96205e1 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 2e8aa3898e220a959400b25ea73683dbab266c2c 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 2e2c900c3352daedd1478f7e268df04499a75e0f 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 53474693001188e8565b7d17ad4a91a7e5ec5295 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 1c2a22359340c79e25654acf495ff59588a9bfe6 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 92973b6fd82560c135c79d430e87c77415bda776 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 bb79b288c5517205ad8800e2573e053b7a01ee09 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 88e2dedcf1f70a9cb3154a11157ca838eea8c0fe 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 0688138e9a2f4f06088c1c0beb101e1784f16960 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 3cfdb29f2ea803e1644596a95d42b75a2c1b14e4 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 e85fb92175d4509e19d39c744297fc972632cd12 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 3806171ec129c42fd5a3fbc7e73582b0ab2468aa 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 65f5fb0f2a06ce4695d0697b93ab922cddb9c0d8 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 21a6f9f06b4a8d54ac197ceff7d64616212c6bcd 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 bc8a0c8f5d403ac19e7bc4131cf4ee266b35cdd1 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 268a865f2f309b037b8327733cf9df117a9bf381 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 fa4ae47ae7b3028a0d26855022c49551acb43710 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 c87eeb8fe64692c39ec400cd1ab09efbf9ec2e81 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 398ea7139c4f12ebe2fdbab9613ff52a9fe43338 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 3c361f1a58832910b4ca6c5ead251616d9bace87 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 473a589e16cab3429b7de84524d4a9cfd495f53a 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 926396f368fcde3b9a2ec6b4896a43c515d596da 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 807f29ad3ee6b92c037e2d660bd1cb5920f21bd0 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 b83e1e3d2337a8a9bda3260f15cf32abc9ac21bb 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 3ae39d3e4285e347b022a49a32a186b90823e1b0 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 a9304bfa095de9cd4eec800294553a3cdf4daf18 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 f6d83109a36220ee5d2b1ae9b7e62e252e62cb59 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 e2091a418b79b2ca4bbce8e5c13afc990d53c520 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 b653ecfad0ee5b8fe26e6a22120295a9a461f479 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 1058faf5a94b257599ab0477702da0715cd516eb 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 7e750c9f2d5bacb5cd98b4ee53521aa7f4c02988 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 39ed9c825b4ca4b4cb262f8fd5d289ec2874e692 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 3f08674dce5333f0473afe6b86aac87e25c02c70 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 3f00dedd37d5cdef8da357657a9b425e4c6dffed 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 a391a6d6ae8abbd9d17b1a619eafb24e34370021 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 2365ac9f29f9b8176e55cf1316c76b09c968a61d 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 e54c37be5c39e753aebb24acc84a540873a0ef7f 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 89f92d54650ac8a4816dcc5242bda9d456d96fdb 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 82e59048620b2a6cde0a2d15498d512999c80bee 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 a3ca9ee408f9601ac4d038d0dc98c684311199dc 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 b2663d84b70d8ceb23aa96e8b18d26c4c8530d3f 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 02ee03b26ceb70339d0a2f0018fe8a7e1a02817b 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 ed3edb15a4056085ac447d80282802fdc6b4a218 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 f2c9fce10f709de6c07810c6952c16d6255470b3 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 465a6397355f4dd076bfb1502ac9f191f615e435 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 29b96339c137333809fe0b411190cfba0482a455 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 d83dff394caf907b95ab65f5010f9b51fff46ec1 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 43f60975565882736f011b1c4dbb27dbc6c68340 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 207b73b857a0e774de3f6baffd04417daf6833dd 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 653a8910fdcba356c063d0ad667c00facc96e307 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 746e5df341eeeddba31eb9e67516efc9c415b9cb 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 17ed311f49d0d8a4e378a39a7d3ab3b35bd7281c 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 01efd5a304394fd9d2272fd78476cb31b330fb02 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 59fb493a681d1e9f0cd6ce770797f0a5168a29f1 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 a2f2e75f32f864b6cb100cd1e2a92f1b772c27ec 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 cf28ae6ade29c06a426a3cc03269b7f6b497e6b0 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 4bc5f9e8c8e95a0df56727300b7a263b77d9279a 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 d7b8c3ab97c5f441e3f12934c351f311f3668c08 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 1eeda55d8f3dea866094938fbd936ca02a987e68 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 fce86965e86addcef7228327ffa93ca69ee1e55f 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 b09560f34f8e78a456b959ccc68658078a01fcc8 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 67e7a74430f88450eedb4c5bffef7963abd0c4b8 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 16c5fe74cc3290484aa0b659f1ac4f513aa6b05d 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 c9c0fe38cda2615ca49f3b40f0ed0552d12cdfb7 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 66d3b21723105c0024bd50ba9197aa73ba94f2e0 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 efb10f8ca6331d91ef7cb50b477aa938cd60ce68 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 360ebe38139b40fdb2c02278ac4d41cc3baa1e69 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 2ed5eb5c2bd2d628e5c70a57d421b2d9ba792b6c 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 950d710297bc825bd6773e57f896419d1981f777 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 b294887b46a435bd91b272e6d4c23eae8cf89441 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 0f6540ef752f1bc251562ce3bf1276d2b17902cf 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 0a4a36f67ea6e721eb950f42da89dadb749f352a 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 c5b0cc502fc4a1b44478179bd7c3806f806c16a4 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 e08a1e17d957..caf6b1fd18e9 100644 --- a/srcpkgs/kapidox/template +++ b/srcpkgs/kapidox/template @@ -1,7 +1,7 @@ # Template file for 'kapidox' pkgname=kapidox version=5.98.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3 python3-setuptools" makedepends="python3-Jinja2 python3-yaml" From 0b4180031a16b927855167e021d80ff4695b7d8a 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 ed6d815e764c9d3306da5ecc7f22ce930381b555 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 67073eef867464159034ad178ebdee75be9f6ff8 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 147c7603cdd8bcfacf8e6fc51625b132aaeb0120 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 4b8e2adc32f2671b0ffcd522fa8fe97afc088d75 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 5e7b0febfa636c222780ba6f750eb48616660b64 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 b2ebdfaf70ae3f9126093f1be0b1b3225fc897ff 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 583d3a4deca26f25d4629ae03dd029e9396a50c8 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 552d0da34a124d0063b04707711ba3ab6919dcea 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 f7269dbb3ef6c374d8be1d2d97e58ecc96b71e11 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 a4a8af19052a6e86f3a2cf063b857584e63a106f 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 a0c74cf8981aa632b850cfe7e239e1e5d50e8627 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 c7e24aef6bb8b92e2ddf8c2ac20eec37f8cfd16a 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 a9f5de9aa426255caeb95809ada090705757e3e4 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 7dd3b537f707e6d2362dfb8395cd69ece8a3781e 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 88c414317db7b5da280d68a95a99aaf9dc4fa75a 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 b76cc5fb22023610be0fdf7266a78950864088ab 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 7915ee06f913ed01e61276f09402eb1ff3bd88a4 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 27b00621fbbefb636e72721cdb3a0f9418d4723a 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 a56d3ed4b542ae574153b776b011b68c0b91129d 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 8a49562ca95c45b1c7aee1966ff6725af9e860d1 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 41aa287e17e208008f962188eed65bc24ce173e5 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 cc921e56684b9dcd24d44f1295ec4f73e691d1b5 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 3e9e84512853..138592e64a8f 100644 --- a/srcpkgs/hamlib/template +++ b/srcpkgs/hamlib/template @@ -1,7 +1,7 @@ # Template file for 'hamlib' pkgname=hamlib version=4.4 -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 8179302c4b04d528766b7b38395cae7ba509768f 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 fcb79cd73ce374918922f0d62f5d11e0530f4724 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 e364ac697b1d52871d4af2eb8f1fd9ccaefb376a 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 18f2209bc6f713012b68b68292bf7baa31c70a47 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 68b62151264e84a2d83775f6ea7a97db743d9a96 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 4656ce09ab9045f7c498ddf820a37f13ce61c81c 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 a050d775c798261d897463b5936fd313b173f611 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 979f907098a6709b4db18129e1e01c1b89a83ea6 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 77ad9da3c01b759aab5fd49c3cdfe6e5e8a849b0 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 8f7d32ad018014de1a651e9ede32b77345974bd8 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 c4e833c9be04b4ba9927033157f447bb6dccd6ac 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 4a6e0508cc2f2b4fb0f0cfd7892dbc202f3e967a 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 df34e020749a2fbad40fcad6cdb38f5eb3ceb313 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 371d2d69d06f19497ec93747dda720c0d3ce1b76 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 538fabbbc2a4639729661b861bfa3ae811955dc7 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 7d70767d790e906014e03d3c450e42b9fb2aa3d8 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 3b54f0900508be3345cafe0c9f4616dd70116933 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 a8f09aec225365597777b8fc3418fd230813ad3f 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 ae94ff5b45a0fed766301824c46009557189be30 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 4b4ad869617ecdba595b326968a21654abb83f59 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 30cd8e93b721..44f011aed316 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=3 +revision=4 _release_hash=5fea4e4fc19f1732d3a5270bc43eb8e9 wrksrc="passbook-${version}" build_style=meson From f9e527ee6386299a4c7936a721adfe3726f60375 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 901d546081e21653b99d0b3ca92c8dc92bc6a9a7 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 912bb24fb11beff5f2f56c1a22ca389f9688f7b7 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 b09c09829c521ada38b5d4535bb30973c33ed72a 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 ea28e284eb6b5172097c4d651e5e23a5cfeefde8 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 4fce5599d7968fae1e5d45e7f0cad170754399cc 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 cfbf22ad7152df820e63e7cc1302b70b59ace634 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 28d10c47d0aef94abcf11f5eb9792f6c14fdb52c 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 ac3a575b2b23e159a2581e4f5b08971eb79596d5 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 d8405ea543a136561e7ff896eea2ded143dadad1 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 d688927d6ebea6c93003cfb7f6a17118e18495c8 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 6949880063fc0ba5a61669e5b4a927cbddb29eaa 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 2720d0e2db9e127e463b50912d41dc5e85fd883a 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 aa4ef46a2b57699dec8ca3cd16cee863e4ca41da 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 4ff8d5edca2c5a997234727001ae2f74fa70b0ad 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 dc585c4f16ec52fb1915f7615e3036e50889bb68 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 ec2f9450a377b5e82a0d28b67636a93c57dea204 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 48de122cc09368c9e4132e92fbf8fe40c5e8b24f 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 5babdf1471132760042a0346d4515d1ad04f79b0 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 20c44687b89a509b9f0264fcdebbd6f5a33ba02b 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 79550f0b80e7b30f73c5750c6ae6382cf159b379 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 8f7661bdc3276137d9366408cd42f20ad10a920a 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 7054aa3754731f611d3ac2213aeb55b4e7ef3ad8 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 0803a43d19be150c8d55cb35816e7c4bf1f63645 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 5f8f60a80ff7ad48de37efd562bced6802b74258 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 7167b2a3b2dbf9eed4a935713be772cac75aecca 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 534d2f43637975caefe54dd0fcfafca3abaf609e 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 96c69ad22c20f9a80fe6fc5f62dcbe93927baab1 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 8e8181ebb4ddf21dede209fdcf49f5fd4c99e7e5 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 72cd8a3b52a02f9631dddcdbe01bbafaa8eda72a 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 452716f1c2c28ceae866f4f7c37129290a1c24f9 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 d924b9649049f79e46b2eae3ac4b319553aa888f 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 87e96c4f17f6947f4d17262b1174c1cd6cf75cb9 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 d709b2c7cfce..6287ae622683 100644 --- a/srcpkgs/eolie/template +++ b/srcpkgs/eolie/template @@ -1,7 +1,7 @@ # Template file for 'eolie' pkgname=eolie version=0.9.62 -revision=4 +revision=5 _eolie_hash=bb4aad19272cc636bd17f2f6602127fe build_style=meson pycompile_module="eolie" From ff76792d67a266c6208922419467833cc2f79280 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 b90e6d74f23bcc7fc78a1a7209b1c00ed1ed3e2b 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 75a58d6d93b59c99423137f8bf038f04356a93d7 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 51b45d437afb57b2003ab5e2151c65f9015becb4 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 8dd27a9d2d05aabf6df866eee93b2d3c9a743ad5 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 8372e46873b8e5997b9e0da9c8a258b287d6e37a 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 06801e59eef514adac567c973f18e85d62af9214 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 7a6c2483b575..200e79158224 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 --with-gtk" conf_files=" From 2de74167e9807c403119ed7a4c06bfb729a2e13f 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 6e6b084bde2e965c4e301118774ad3f33ff4aa91 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 48c4bf4617a8322fd04df8b9a3c1af50354a7de3 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 863b4353005995c720c3a20d0c7ce22a1cebf6cb 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 c0cdbb6e038b6ddd3f84c9861252c4f6abc95124 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 08d70775d74aa20f598a56359ed5b197a9556ad9 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 1f1a6fd4171f033ecd91e83424c6990991ac2da0 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 433916e20959251b46d38f5c7142db862de84432 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 4971f7c615ee4f4d6f244356eb1a95337926ab90 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 643c7beb290099178a0d4f3d7c3150f410839b18 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 22cf416843c39310e6dab2831ab66d4d6bcd1269 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 2b1d7b89e22cf124455cca26eadfe9549bc44301 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 703e9397711e8c389f3aac62702f99ed69d937bd 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 8f0063b87f1dd852ab0fc834ebfb11da5af7fa3d 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 0e34f2a043325c695f48af35521eb4f905109085 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 52820a41d6e00164ba0327a72b14690d00ef02a1 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 176e6e237e549dfd5a7f7d691c356d236a4d1b25 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 71b054d6a8b14cf876fecafb877377fef995c277 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 77b5d629914dfd1760e5deb56ecc09ba1ae82e2a 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 ca126468d9f72fe73c50b0eb70b0a32fc018b4cc 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 4fb86cccdd3156d77e0c99f381322976d6e19e92 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 5204686d778ce5de8524f8dce890304ef81a9ad4 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 1bb6a7a77e661e5aff8c99c82883f9aa135aaca3 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 760cf89a169cadfb8f602a0001d4a5ca605091a6 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 054b841df620cb6255ea0638423ffefc8c43ac57 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 65c6011440c023353fd7ba2263ee93659c71bc9d 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 99be923fe2b2283b3eeeee0b062c903c706ac8fd 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 37694d07792c7c6fda0a25fa8659f38a24ff63a6 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 5ebaa4c5ae16bb2d9a5a794896b955dbe013c029 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 ca2f54ab54db03e183fd56cdedeb9b2dbc0bc944 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 153bc7ca58bf04cebb66aaf55600a084cfec1073 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 8e069db35fee3a25aca7c21ea94737a7282a4fcc 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 25b786288f092a9b6f827eb96c4ce626d7b1ce03 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 8c08a7e49afaf5da1f23d076602ec9169e5f6bc7 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 c31abee0ae4cceb91a78947997014426408a1ad1 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 23bba4ca524cf622caa011cf526380d28c2d2408 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 299afe38e380caf10d1549a354869d7091fbd64d 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 743ae2c8672c94fdbeed540d038581065e4f1779 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 c37c3b1a992d..728193766f0f 100644 --- a/srcpkgs/blueman/template +++ b/srcpkgs/blueman/template @@ -1,7 +1,7 @@ # Template file for 'blueman' pkgname=blueman version=2.3.2 -revision=1 +revision=2 build_style=gnu-configure configure_args="--disable-static" hostmakedepends="intltool iproute2 pkg-config python3-Cython glib-devel From 683b7e427f1887f9de6b18464f409a558f8b2b83 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 35ecf4d7d75e1443fd98a3876c0921aedf5030be 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 64f8ea50088d63d73d70ad840df3488f562154e4 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 1c4ce8c8e1f84a2ca2b0517aac498ae5633ef211 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 d975ba3efd8625049b9c378daed129e1ad0f6483 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 a9ad2b301fe798f0db301288f1c4911eda1b6fe2 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 be61a2be0b048fa922c6193a327a6b7b44ffc1dc 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 3a96a864ec432ec3d2e2077f877e7c1bcafe38ee 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 522b024f6c8a8e542b3ce0517226def97c641658 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 9ec9301912ce5a5feffc54ac1751a47881803116 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 15d2d71b02fa00c925e4636fb17b2c4f6d1a4be1 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 8379a7a8125f0e4318501fa1c2e7af4b426a966e 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 988741607a1d3f1ff06808c069efbb4940d10328 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 fa34446e29310703a5163c71996ee36d2a3f991b 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 a65b1fd438469f2973e8e6aa64e09ed8ab7f62fd 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 21b8862d1fdbce2caea727d4cbf33f46fdc7d231 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 52daf51b4c30fb171567476475572fccc06356c8 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 e4003e5dd70fb657592ca828fcfa0e8289559eee 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 f7bb23b69a7c8db02f0e2754a09eff3e75caebf2 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 7f9d9fed26e0f4279695fbbc32b42abcbac3451c 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 7fd2703350f106219482d986ceb9b6cbf9b1a208 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 76ff3f7a4bcb4b8eeeeddbe5ff3d3cf6ebdcb690 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 b0046c97066867a2bd05202f6907e7a283298e1a 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 d561a0f2c1de7e2abe6655ad305f7b0adac2d4ce 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 3aabd8821996554f9045cf143c0638b64323fc30 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 72a05701660541e39abaea12f029efda5babb2b1 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 5750bd84c695b02b7c26435be22f50a8a9dfeadc 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 fe81495a670765b3ad16f31a0956ad93c127751f 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 9cd63d7b16bac21263041ff2fc9a2c76a9fa893c 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 9a152b299c3b62dd02eeb40a24c2b2d66b8e69cf 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 aa0ec25ba6e36ab4c6d79df8cdc2b802dd887d91 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 66bf281676aa0754aa95fbb1e1a2e4590236bd68 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 63a3bc8b1ab9775b56f58d5e39d638af15e88da1 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 de1594294716e32043959d088927e1b49410e127 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 d30f2b9d6c2511cb9a81e323c8376ef4d22db988 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 271cfe8a1f2a57460346f9c0967c48703491cc78 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 74222fbff2368aaa583de2ce213ddb8b1bb1ac3c 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 6ff9d7f1f04a69f71e5dc554083fe39a79bd69f3 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 e19cf85abc32c637bceef4b51f49b43b751c53a4 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 81b8836bffef962077b2df866d25e7909dde084d 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 a9014211108712d9ff0e121ef90dbdb608d28331 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 d8cf8e8724d86b2a9c821e2f84e3184932b50d94 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:04 -0400 Subject: [PATCH 1418/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" From 18ffcd3862f9521519de32a8d22965a9136372bd Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:04 -0400 Subject: [PATCH 1419/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 b5a76644745caf6c21faaa6581e610bc8072f88d Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Thu, 29 Sep 2022 15:22:17 -0400 Subject: [PATCH 1420/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