From d76e77e9fd5033ca604770bebae5c1a50a3e533b 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 095513f7a489..a88292933199 100644 --- a/common/shlibs +++ b/common/shlibs @@ -1747,7 +1747,7 @@ libportaudiocpp.so.0 portaudio-cpp-19.20140130_1 libdar.so.6000 libdar-2.6.6_1 libdar64.so.6000 libdar-2.6.6_1 libpython3.so python3-3.9.2_2 -libpython3.10.so.1.0 python3-3.10.0_1 +libpython3.11.so.1.0 python3-3.11.0_1 libbrscandec2.so.1 brother-brscan3-0.2.11_2 libpyglib-2.0-python.so.0 python-gobject2-2.28.6_11 libxmlrpc_server_abyss.so.3 xmlrpc-c-1.51.06_2 diff --git a/srcpkgs/python3/files/cross.patch b/srcpkgs/python3/files/cross.patch index 4e2498ca221f..48f1461c6025 100644 --- a/srcpkgs/python3/files/cross.patch +++ b/srcpkgs/python3/files/cross.patch @@ -1,6 +1,6 @@ ---- setup.py.orig +--- setup.py +++ setup.py -@@ -38,7 +38,7 @@ +@@ -77,7 +77,7 @@ return sys.platform @@ -9,7 +9,7 @@ HOST_PLATFORM = get_platform() MS_WINDOWS = (HOST_PLATFORM == 'win32') CYGWIN = (HOST_PLATFORM == 'cygwin') -@@ -700,6 +700,10 @@ +@@ -898,6 +898,10 @@ if HOST_PLATFORM == 'hp-ux11': self.lib_dirs += ['/usr/lib/hpux64', '/usr/lib/hpux32'] @@ -20,9 +20,9 @@ if MACOS: # This should work on any unixy platform ;-) # If the user has bothered specifying additional -I and -L flags ---- Makefile.pre.in.orig 2017-07-08 05:33:27.000000000 +0200 -+++ Makefile.pre.in 2017-08-27 19:49:11.114893045 +0200 -@@ -1055,8 +1055,6 @@ +--- Makefile.pre.in ++++ Makefile.pre.in +@@ -1743,8 +1743,6 @@ upgrade) ensurepip="--upgrade" ;; \ install|*) ensurepip="" ;; \ esac; \ @@ -31,7 +31,7 @@ fi altinstall: commoninstall -@@ -1065,8 +1063,6 @@ +@@ -1753,8 +1751,6 @@ upgrade) ensurepip="--altinstall --upgrade" ;; \ install|*) ensurepip="--altinstall" ;; \ esac; \ @@ -39,11 +39,11 @@ - $$ensurepip --root=$(DESTDIR)/ ; \ fi - commoninstall: @FRAMEWORKALTINSTALLFIRST@ \ -@@ -1434,11 +1430,12 @@ + commoninstall: check-clean-src @FRAMEWORKALTINSTALLFIRST@ \ +@@ -2226,11 +2222,12 @@ # Install the dynamically loadable modules # This goes into $(exec_prefix) - sharedinstall: sharedmods + sharedinstall: all + CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' \ $(RUNSHARED) $(PYTHON_FOR_BUILD) $(srcdir)/setup.py install \ --prefix=$(prefix) \ diff --git a/srcpkgs/python3/patches/musl-find_library.patch b/srcpkgs/python3/patches/musl-find_library.patch index 82f436b4072b..879f91246272 100644 --- a/srcpkgs/python3/patches/musl-find_library.patch +++ b/srcpkgs/python3/patches/musl-find_library.patch @@ -1,6 +1,6 @@ --- a/Lib/ctypes/util.py +++ b/Lib/ctypes/util.py -@@ -204,6 +204,41 @@ +@@ -265,6 +265,41 @@ def find_library(name, is64 = False): return _get_soname(_findLib_crle(name, is64) or _findLib_gcc(name)) diff --git a/srcpkgs/python3/patches/ppcle.patch b/srcpkgs/python3/patches/ppcle.patch index 9ed7b9cef4e8..f2a12596093c 100644 --- a/srcpkgs/python3/patches/ppcle.patch +++ b/srcpkgs/python3/patches/ppcle.patch @@ -8,11 +8,9 @@ Subject: [PATCH] add powerpcle triple configure.ac | 4 ++++ 2 files changed, 8 insertions(+) -diff --git configure configure -index 2d379fe..97d1f9b 100755 --- a/configure +++ b/configure -@@ -5302,7 +5302,11 @@ cat >> conftest.c <> conftest.c </dev/null) +@@ -5221,6 +5221,14 @@ + $as_echo "$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" +if test x$MULTIARCH = xpowerpc-linux-musl +then @@ -13,5 +13,5 @@ + MULTIARCH="powerpcle-linux-gnu" +fi - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5 - $as_echo_n "checking for the platform triplet based on compiler characteristics... " >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for CC compiler name" >&5 diff --git a/srcpkgs/python3/template b/srcpkgs/python3/template index e3db44e57670..49084b470337 100644 --- a/srcpkgs/python3/template +++ b/srcpkgs/python3/template @@ -3,7 +3,7 @@ # THIS PACKAGE MUST BE SYNCHRONIZED WITH "srcpkgs/python3-tkinter". # pkgname=python3 -version=3.10.8 +version=3.11.0 revision=1 wrksrc="Python-${version}" build_style="gnu-configure" @@ -21,8 +21,14 @@ short_desc="Python programming language (${version%.*} series)" maintainer="Andrew J. Hesford " license="Python-2.0" homepage="https://www.python.org" -distfiles="https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz" -checksum=6a30ecde59c47048013eb5a658c9b5dec277203d2793667f578df7671f7f03f3 +_bluez="bluez-5.64" +distfiles=" + https://www.python.org/ftp/python/${version}/Python-${version}.tar.xz + ${KERNEL_SITE}/bluetooth/${_bluez}.tar.xz +" +checksum="a57dc82d77358617ba65b9841cee1e3b441f386c3789ddc0676eca077f2951c3 + ae437e65b6b3070c198bc5b0109fe9cdeb9eaa387380e2072f9de65fe8a1de34" +skip_extraction="${_bluez}.tar.xz" alternatives=" python:idle:/usr/bin/idle${version%.*} @@ -33,12 +39,20 @@ alternatives=" if [ "$CROSS_BUILD" ]; then hostmakedepends+=" python3" + configure_args+=" --with-build-python=python3.11" fi post_extract() { # Ensure that internal copies of expat and libffi are not used rm -rf Modules/expat rm -rf Modules/_ctypes/{darwin,libffi}* + + # Extract Bluetooth headers + local _srcdistdir="${XBPS_SRCDISTDIR}/${sourcepkg}-${version}" + mkdir External + bsdtar -C External --strip-components=1 -x \ + -f "${_srcdistdir}/${_bluez}.tar.xz" "${_bluez}/lib/*.h" + mv External/lib External/bluetooth } post_patch() { @@ -52,6 +66,10 @@ do_configure() { # `-R` to the compiler for every compiled extension that sets an # rpath rather than the '-Wl,-R' argument that GCC requires unset GCC CC CXX CPP LD AR AS RANLIB + + # Make sure configure can find Bluetooth headers + CFLAGS+=" -I./External" + CPPFLAGS+=" -I./External" ./configure ${configure_args} } @@ -103,6 +121,11 @@ do_install() { sed -i -e "s,$XBPS_CROSS_BASE,,g" \ ${DESTDIR}/usr/bin/python${version%.*}-config fi + sed -i -e "s,-fdebug-prefix-map=[^[:space:]]*=[.],," \ + -e "s,-I./External,," \ + ${DESTDIR}/usr/bin/python${version%.*}-config \ + ${DESTDIR}/usr/lib/python${version%.*}/_sysconfigdata_*_*.py \ + ${DESTDIR}/usr/lib/python${version%.*}/config-${version%.*}*/Makefile } python3-devel_package() { From ca50ff5e803b99c89b633dba62e83bd7ca1a24b4 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 80b404673921679bbc5e066e8c7c02deb0db6af8 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 922c918a40cf5f552742d8bec9f1af86b9f2a58c 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 a5e8679cab1da6b7d8f7c90df0a09efcb97a8c7f 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 ac9b47f1b4e2ec564f0287a0dbb66d70c1342167 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 13592b63338537af041a4a7b15b81b239aa12a84 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 d6ac901f7b50ae0bd0fb87248dc8e8aef0cbd003 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 d25b75a968f71dd1f561acd29d35cdac3497c6d4 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 94fa55a8cc958820750ed7191eb2b849dc975bf2 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 300f1fffda6c0249fdcd4f64976467f626428e6a 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 761e60ad6fe952c4a1c0c4e9f47c275bd3060636 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 2748a53dfca11001e3a62ee9cdee012a3830bbd8 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 23d1763355715b28e0f44de2040914e3933ea968 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 69c02bab723d3664a808c5c3721a13f880bd920c 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 096c47f67cd670fea3336daa473ec6fba389f56f 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 8a94a101c15298193371e58541f74aff5e7beca2 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 b2e89bbd24e89db841c9372331aedfbf9e003092 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 de63572a8c046544b976d6e375ef4ea9077e6c65 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 c32d83a2755d7fa3593f534ea378eab1c580f132 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 4beebe65acb4e0f76a4a727302eabee64fdf508f 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 f2ea83afc9cf81aacf55697385cf46bea573d3dc 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 33e27fed4c025ecda13aaa80f9a0c1a3d8f959fb 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 620ecef800d4f7136d0abc0fea29796979c70999 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 db6a70dfedc3a716ecc4b568e8210fa62ae78b64 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 5685ad47aff3b2d190a7f2822b3376a9bd2562e7 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 810b12bb9ede0e2b91381bb479bb99bd0b6403a7 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:42 -0400 Subject: [PATCH 0027/1420] python3-pytz: update to 2022.6. --- srcpkgs/python3-pytz/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-pytz/template b/srcpkgs/python3-pytz/template index d8e7dae4084a..3be047448850 100644 --- a/srcpkgs/python3-pytz/template +++ b/srcpkgs/python3-pytz/template @@ -1,6 +1,6 @@ # Template file for 'python3-pytz' pkgname=python3-pytz -version=2022.4 +version=2022.6 revision=1 wrksrc="pytz-${version}" build_style=python3-module @@ -12,7 +12,7 @@ maintainer="Andrew J. Hesford " license="MIT" homepage="https://pythonhosted.org/pytz/" distfiles="${PYPI_SITE}/p/pytz/pytz-${version}.tar.gz" -checksum=48ce799d83b6f8aab2020e369b627446696619e79645419610b9facd909b3174 +checksum=e89512406b793ca39f5971bc999cc538ce125c0e51c27941bef4568b460095e2 post_install() { # use system tz database From 27332d9b62705db6ae483e9f5beea01f1a1ed42e 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 0c20c27392bb5f8f64e991f9e2ccccd5099762b4 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 a9b51fd0f184492d2441ee83d2b40115a609109b 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 ac210f9473542d57af9ab903bb2d0960ded2529b 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 420e463410794db31c8150b74c43a522241d5697 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 196639a3fc3db169712771bd361a6e778c9992ce 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 2309e2c64b4856e32a14dc7642a029bb42987564 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 1712b3efbf4495a1ad8d8450a1f20c64b31f8d57 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 869bde22cceb800ae8feacaf4a42cdce37a8eb5d 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 c938c4faadc66b1dbde5945891160c43815191e5 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 cde244afb7120de2919c99d3d0eb6a94caa08203 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 ced410040f5b36883fbc9b4251edeb1423290c1b 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 172ee12dc316cc75cd979fad825f001b104a97a0 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:43 -0400 Subject: [PATCH 0040/1420] python3-asttokens: update to 2.1.0. --- srcpkgs/python3-asttokens/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-asttokens/template b/srcpkgs/python3-asttokens/template index b3e4443811fa..b817ae3fea48 100644 --- a/srcpkgs/python3-asttokens/template +++ b/srcpkgs/python3-asttokens/template @@ -1,6 +1,6 @@ # Template file for 'python3-asttokens' pkgname=python3-asttokens -version=2.0.8 +version=2.1.0 revision=1 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module @@ -15,4 +15,4 @@ maintainer="Andrew J. Hesford " license="Apache-2.0" homepage="https://github.com/gristlabs/asttokens" distfiles="${PYPI_SITE}/a/asttokens/asttokens-${version}.tar.gz" -checksum=c61e16246ecfb2cde2958406b4c8ebc043c9e6d73aaa83c941673b35e5d3a76b +checksum=4aa76401a151c8cc572d906aad7aea2a841780834a19d780f4321c0fe1b54635 From 0a36e6c91474c548e7df1b5bf465ed61150d3c12 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:43 -0400 Subject: [PATCH 0041/1420] python3-executing: update to 1.2.0. --- srcpkgs/python3-executing/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-executing/template b/srcpkgs/python3-executing/template index 3cb8e53439a3..0ab85f2809f8 100644 --- a/srcpkgs/python3-executing/template +++ b/srcpkgs/python3-executing/template @@ -1,6 +1,6 @@ # Template file for 'python3-executing' pkgname=python3-executing -version=1.1.1 +version=1.2.0 revision=1 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module @@ -12,7 +12,7 @@ maintainer="Andrew J. Hesford " license="MIT" homepage="https://github.com/alexmojaki/executing" distfiles="${PYPI_SITE}/e/executing/executing-${version}.tar.gz" -checksum=b0d7f8dcc2bac47ce6e39374397e7acecea6fdc380a6d5323e26185d70f38ea8 +checksum=19da64c18d2d851112f09c287f8d3dbbdf725ab0e569077efb6cdcbd3497c107 do_check() { PYTHONPATH="$(cd build/lib* && pwd)" python3 tests/test_main.py From 0144f5aabc71ec08eefdb5e6e6ec8a2067369ae9 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 beb3458cfacebca8f0c1f48dbb9a3b6bfd8b9a8b 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 417834ba9db75fcd598ae9e277838b43a6cf93b1 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 b2625c2ab192d63157d8573dbf4338ac73d6de2d 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 7a804485da35ae5e9e60e6f0d5bcc77a8f24fea2 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 379f788c34f69da44ca0fea544998f23c48c863d 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 125de1b9b46447df5d0d7d5d4b1990569e98c2c4 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 99e4ba9f552677aac4bd0d5cc73cded19f2ff70f 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 a3ceefd45d3b40262516d529014ac7409e176275 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 b60a57b2f1333eb4c13f7ae9e2bdbb694d0ff519 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 3942c4939c99794105d6741a62f3598304033c3d 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 41340fb49dc4636c924c0a11a12ee8186e1d5e01 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 ad0534745ca7919c63eb69fe4c0fac2793430152 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 ae7927d1dc7a03cc5d35a2b5d0e865a7e345d946 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 bf3591b37325870ea549097725a4c848b820f5f5 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 c9fb734ec09ac0e8f4b90b4b17093e71b0aa75d3 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 b71e541fae3acbea9e9098f0a320a7343c483144 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 ff3f5e290ddaca898ee2616d1291e9d5ea7551b1 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 060d25c53ef8c4fa4b24b23d91a64d5a8d34af53 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 969effa5448195fd8474b9251b767702d0620bcd 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 28bd03e4f8484124c907ab047955963a0d718a51 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 080d888a3d79c1927b1ab00ffc9348a4b71c1599 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 eb6029f34e687c7323b976ddfd926047b45158df 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 defc2dbef1e3d0fed008e95e7332ff9aed843696 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 de00ef4bf5d9fc4d824edae63d11d5300d289cd2 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 9a7484e46f20e5a55d544fc481b3d279b4974e22 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 fd60a2d1e84ed5b1ad504be1fcb76e1de95a5041 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 2333b860a6333650246426929751860d57b91948 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 e1a1ccd324c809dad40f6eabf73ffd18d45222f3 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 ec02850e8408dfa0c8ab4e226236b3a35d54106b 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 8c3a5dbfafd2a038a4776aad1c0d687c610193b5 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:46 -0400 Subject: [PATCH 0072/1420] python3-stack_data: update to 0.6.0. --- srcpkgs/python3-stack_data/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-stack_data/template b/srcpkgs/python3-stack_data/template index 8ff71266a88f..7ecdd36226fd 100644 --- a/srcpkgs/python3-stack_data/template +++ b/srcpkgs/python3-stack_data/template @@ -1,6 +1,6 @@ # Template file for 'python3-stack_data' pkgname=python3-stack_data -version=0.5.1 +version=0.6.0 revision=1 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module @@ -11,7 +11,7 @@ maintainer="Andrew J. Hesford " license="MIT" homepage="https://github.com/alexmojaki/stack_data" distfiles="${PYPI_SITE}/s/stack_data/stack_data-${version}.tar.gz" -checksum=95eb784942e861a3d80efd549ff9af6cf847d88343a12eb681d7157cfcb6e32b +checksum=8e515439f818efaa251036af72d89e4026e2b03993f3453c000b200fb4f2d6aa # Tests require unpackaged dependencies make_check=no From 9b9cdd2893cdf4d42854e2c0cd471239b994d354 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 64a1bf249c7d39f901043d94521a55a110c95264 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 a57f0785da21fc4f6218952c0f160cde9030e5bb 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 b0c95f3dca6c51a9e7a0ea7feb06372e712e1393 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 76519537ce6e74a5e2f8928648240f26982141f3 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 cbb1ba8be13cfeedf8baaadee6728eb0221ba9dc 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 e8b944b77cd7c2b54da76b939835659d8062f23f 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 068b146d36cf94a498dd75e8398fda5470bab000 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 1d892e9662a5d221e6cc90249b1265224579d668 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 73466528373bd1aa35fe8800a54774decd1e893c 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 ce97047ef806108f1a616ac864ad1bbce39a7efb 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 1a9ce1c3a4a873d29c59d3d7c8ee425bc0aa0ff3 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 c076eee9f4386eefd9c156b8f17d8607aa499fe5 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 92397277a6495d6fdea3175c09a7de7b514f845c 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 31c83b38961cd31325bb3163d3827885eb1f28c1 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 c4eabf64a16118fb7187bdefe30a5c80cb984d10 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 337fdf861a319149790b52d07f33d9f466938e78 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 dcb38c6538114833bc34de6ecbd08ca8e564c825 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 c75d61fe7bce60f7f8399b6ea8e8de3a4a704dc7 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 1b50ead55f3420ca68e4889b777a70719eba4eaf 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 e1c96e04b2443463c6a3c0fe535b4be2fd564f7b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:48 -0400 Subject: [PATCH 0093/1420] python3-ipython: update to 8.6.0. --- srcpkgs/python3-ipython/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template index b391aa19d168..81753012bf18 100644 --- a/srcpkgs/python3-ipython/template +++ b/srcpkgs/python3-ipython/template @@ -1,6 +1,6 @@ # Template file for 'python3-ipython' pkgname=python3-ipython -version=8.5.0 +version=8.6.0 revision=1 wrksrc="ipython-${version}" build_style=python3-module @@ -16,7 +16,7 @@ maintainer="Andrew J. Hesford " license="BSD-3-Clause" homepage="https://ipython.org/" distfiles="${PYPI_SITE}/i/ipython/ipython-${version}.tar.gz" -checksum=097bdf5cd87576fd066179c9f7f208004f7a6864ee1b20f37d346c0bcb099f84 +checksum=7c959e3dedbf7ed81f9b9d8833df252c430610e2a4a6464ec13cd20975ce20a5 conflicts="python-ipython<=5.8.0_2" do_check() { From 09128dddbc907167601a431039f76b7a03774da2 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 ee4c2e205c8dce5cf4be79cd3884836b2e0310e0 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 28c9ca1b1653010e995482287f967711fb4bb679 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 231c008e3c6c3910115e1e00d70c5a52a0945519 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 2874cf168a83b23fe9dca72e71143310d95f87f8 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 c6699557856497a3d39644f5719ff1734647403e 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 4c04dd26d87cd76cb45922a2791ce1895183c13f 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 f84555cd46609db3a8f438e1aa838c6e18593da5 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 ece1027ab5c8be83c10285cc3db4b9e9f1ebc475 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 1a941c05028674e0e12a4f56d953286e03de2028 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 6d5e08f6499011067edfeca3389652372d059e6f 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 55bd6a87090c791c6a34e42babe67a12708fd403 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 87667f1efc49839cdd868a4d62c0a24352a999a2 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 2c1e5ab62ee33ccc3ff0449b3f953f2b139c4387 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 d0bdb29bd34fe56427ef7b0e46cbf24faf39bcce 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 12405238da6b9a5dcc9c8d95974545c84dd27441 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 39b2ef3c0b812a09b644b4931b80003a7c7ea19c 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 386f8ab981d2250108dc0219bad904ff7ec1db70 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 d9d567b9d443fc67322486f58ec0d3280c18e3b6 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 798020db572f87d5dda748138d97809ede5a614a 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 dc0a71c3d6cbf9e3539aac17fc609f456cc4b765 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 b55def70539c411f337884ba8979e7479a7988f3 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 e1df7f37b8bb58b5ef2f85a24f18c2c09ae2b90f 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 9dd2797d008a23ed144a76c9e63bf907500d02ad 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 bdca939e5e161ec2835d6c28fbdc8ad659f248ce Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 24 Oct 2022 23:12:35 -0400 Subject: [PATCH 0118/1420] python3-cryptography_vectors: update to 38.0.3. --- srcpkgs/python3-cryptography_vectors/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-cryptography_vectors/template b/srcpkgs/python3-cryptography_vectors/template index 976fc8832870..3736d38a35a3 100644 --- a/srcpkgs/python3-cryptography_vectors/template +++ b/srcpkgs/python3-cryptography_vectors/template @@ -1,6 +1,6 @@ # Template file for 'python3-cryptography_vectors' pkgname=python3-cryptography_vectors -version=38.0.1 +version=38.0.3 revision=1 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module @@ -11,7 +11,7 @@ maintainer="Andrew J. Hesford " license="BSD-3-Clause, Apache-2.0" homepage="https://github.com/pyca/cryptography" distfiles="${PYPI_SITE}/c/cryptography_vectors/cryptography_vectors-${version}.tar.gz" -checksum=0431fd107c1fbad0377704a7051945b3b391169fddc4f6fa0bd4edc6b6e235dd +checksum=1cdafd42f5348d77e4e7e4791aefd1f62b16bd552a0274afc9346533fe32e925 post_install() { vlicense LICENSE From 3ca56409ee776fe815e989a9486ed2989048edf9 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:50 -0400 Subject: [PATCH 0119/1420] python3-cryptography: update to 38.0.3. --- srcpkgs/python3-cryptography/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-cryptography/template b/srcpkgs/python3-cryptography/template index c2bc74734ca2..bf4e3303b0a5 100644 --- a/srcpkgs/python3-cryptography/template +++ b/srcpkgs/python3-cryptography/template @@ -1,6 +1,6 @@ # Template file for 'python3-cryptography' pkgname=python3-cryptography -version=38.0.1 +version=38.0.3 revision=1 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module @@ -18,7 +18,7 @@ license="BSD-3-Clause, Apache-2.0" homepage="https://github.com/pyca/cryptography" changelog="https://raw.githubusercontent.com/pyca/cryptography/master/CHANGELOG.rst" distfiles="${PYPI_SITE}/c/cryptography/cryptography-${version}.tar.gz" -checksum=1db3d807a14931fa317f96435695d9ec386be7b84b618cc61cfa5d08b0ae33d7 +checksum=bfbe6ee19615b07a98b1d2287d6a6073f734735b49ee45b11324d85efc4d5cbd if [ "$CROSS_BUILD" ]; then makedepends+=" rust-std" From 6f0500cf29c857194106342df4da619be2ce63a3 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 f06d3a0ec9bd9c33e641f41dd117f253ad1451f3 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 20cd267cee415131773f2d368721f6a6bef198f1 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 7cabb615e60099070e27d6dd569b91e5e9cca2f4 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 c8098530eb24d4e7a70bca04d18eda971943646d 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 b931e92f89ad50478d6699633b563d28eb7cb02e 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 183315c9e10bd0df8048b6da368279692c4bc2ca 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 7bc4def797710b5738c07906281582234fcf6ac1 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 9afb31deac280626c330e8cd2c7ca393df6f9ad6 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 d04ed6d116c49a33992ff5889a07bf4113d1208e 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 e8a345549f6590838ce18cf70f67fef001c3078a 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 2a701406541deb819a653d2bd163730307b68041 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 148b353ded1b03bfa0e1a069da5d325f1ea598c3 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 fb12cf659088884c84264436a8337d00b796b326 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 07582686e21d1dcb4e760e08643c1a4980a7af96 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 3814860d64932d1aed66c66a1421eec7c87336f6 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 b6d7e9b4e40066d3c39486e019f9a72135207903 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 7f8baa453881b67f90175e1252c2be6d8f563cff 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 3fdbb8f8a7483952975ebd66655358c84303d755 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 f0011eaf6150357665b3d6ce1a13733d6d193977 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 cc28621f130ab60e729dfd20c8d547a8b21ed99b 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 e64900dd5fd126f64156fd86173cf24e1878e567 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 d38591144fffbddd15fccf3b106fcf6862ebc8db 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 bc19870bf98349e9549e7ad0b6bb5b3d92f1721c 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 c9f16bc21bb0c890051d7f3ecc270ddf9eacaed6 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 dc4f4322fa09c11fb1f56f0488af854e36f8b30b 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 d6eb3b8d94043e18d76ff7e095a9543254935a81 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:59 -0400 Subject: [PATCH 0146/1420] python3-pybind11: update to 2.10.1. --- srcpkgs/python3-pybind11/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-pybind11/template b/srcpkgs/python3-pybind11/template index dd3640e5f375..28ed89910040 100644 --- a/srcpkgs/python3-pybind11/template +++ b/srcpkgs/python3-pybind11/template @@ -1,6 +1,6 @@ # Template file for 'python3-pybind11' pkgname=python3-pybind11 -version=2.10.0 +version=2.10.1 revision=1 wrksrc="pybind11-${version}" build_style=python3-module @@ -13,7 +13,7 @@ maintainer="Andrew J. Hesford " license="BSD-3-Clause" homepage="https://github.com/pybind/pybind11" distfiles="https://github.com/pybind/pybind11/archive/v${version}.tar.gz" -checksum=eacf582fa8f696227988d08cfc46121770823839fe9e301a20fbce67e7cd70ec +checksum=111014b516b625083bef701df7880f78c2243835abdb263065b6b59b960b6bad post_patch() { # These dependencies are not packaged and don't affect the man page From 4c5c6da89415f118c2e5af77f26098bd7bc8a6c5 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 56c9021e284277ef6457248c1ec7763bc6c848dc 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 28fd805618f4a29716b53bd394e2d38e88024d31 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 d4e84de490687cf6ded4ef3268b492c5e3bdbbb7 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 f7c90e61eb65eef0efaef2bd2dd130e7bcee2e80 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 dabfe73af64fba12dc674faf62b33f8ee4808efd 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 b8dd7d98c27c2094bc2015c485310b361aa835b2 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 d66d2d231dac0f3b5280a43640938d673c5f59e6 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 06c76a19ef6046732d95d1aa6a5f2144b6b2a2c0 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 de88fbb2ec4ce3866bcd01b9181beb3f15c55433 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 8afc38028f1739312710c3e67b093e7e44489fa2 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 6fe899cdaa19ca531a03e43392dd42b840c382df 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 048780969565049d9fabdcfd498fe82065e81aa7 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 b8be599acfee125a94d14ac2b6c53ec62497e006 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 bcff92ffcce9bda34fabb27ff4a34b048a69206d 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 b34de850e840ac009b72091e01b56469854b8b16 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 a0de08090a06c742da8e83ae230e6cb35f21bc93 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 84ec8114bdf1d77692da7c896e75c7bebda33883 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 e36f0cfcb77d4d0a4642ad96519332ec8ec00f64 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 8ce8ab3b200e122da75a7b226a4bac0af12c992a 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 cc482e3857577c7eb2dd633227ac1728f25b945c 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 fd7ba11cbe90cec803d31594344a6a19584808d1 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 6bc5be932d97018f61f520d61afdbe5eb1e2b932 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 388d218a3891b66baf75feda028dd166896f9441 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 a45eb26d9859b298f550712542e357aa49b61491 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 4271cfa23feb4ac490780dd57167daa793187659 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 0f1ec2c806296ee1c7215b5859b2cbcc47baa677 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 7e09831251a50ebe048e6489d84a241d65bfef12 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 b944afc6654b34b46a1467539fceed62bc331c05 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 0ee48a446ad3ececfc1c4a0bcf9a17cae8d46b54 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 3c2d772172a21115521f6648515314f40979e27a 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 4257447e971656bc1b6ebf28be8e7200bef25d61 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 32050df66ebd05f314621a79a1ff069f7e45d17f 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 5811b08edec922b2cd55834b5a2a3d5d7bd5b333 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 39bf6b08a931c5d42a8894f348458478f1035f76 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 2e2d831e12001301fe5d33c1876d4c71e14e03f7 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 b10f28cac6a7a24ddd18895cdb156e4b99cdcc5e 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 5e15dd92f7e767b00142d3da5475806c810eec8f 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 daee4ab5b9fd7ea8461f5cc167d4c86f921da960 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 8b86600138d6acb6140626d907f90af410fa9e60 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 11d9df1e34560fc9c3672e131b931fb1a43956b7 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 ad144d80f8505f8f96b1e6b9ab7a8a21c5066eae 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 9a1ce16f4c4ad421cf16c130f51bbaf646e0f391 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 7996ba160ae3c4622af04b1ed23c261a89621927 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 bfba734d87dda11421b0166fa69beb98eece3b36 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 70bd60f2b56e529a1dce9852b2c9c5e645a0195e 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 91d97ff8c1d3f70723a9441fffb5e2108e52b3c6 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 dfef6cfbdda46bfef97e573b93eb25f46b336a8f 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 9a1342fb16d2cb59de48da61af6767164ba302bb 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 b698873ab5b61fccf0b3aeb9176a7f668646a799 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 c0fa897f9827e794d98d438783263f8d0b262535 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 0a245d60095983cdb6e05dc5277502f8c13ebfe3 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 a80d1b7b381e6ccb75bfc7460fac6d8342c916bb 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 526686a733f232399e91816c7c72ab2c1cb2e2f6 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 d367a40ed58a89c0f9cf2b97d44d55c806373e50 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 91264507169cc73d7b6ee2cdc2f96823a95456a6 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 7dc0d02540d118de53bb6632caaa2114f3b31a86 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 4029fbfca33f2e3c042f49382f9a06142491e7b2 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 a1c4a00f560ed2c2e4a9a0fd64fb04fc664d24fd 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 a34a2afba6cf90248a017fea4c665eafcc513e58 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 a725426825eb7d9126dfc5db8391576e04c38565 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 a615f4adfee5a100c4c68bf02ea4a9e6832e7102 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 c43fc68b703092184c1193795effec3a5d7b68ed 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 a88292933199..7c427dc75c66 100644 --- a/common/shlibs +++ b/common/shlibs @@ -661,7 +661,7 @@ libboost_fiber.so.1.80.0 libboost_fiber1.80-1.80.0_1 libboost_stacktrace_noop.so.1.80.0 libboost_stacktrace_noop1.80-1.80.0_1 libboost_stacktrace_addr2line.so.1.80.0 libboost_stacktrace_addr2line1.80-1.80.0_1 libboost_stacktrace_basic.so.1.80.0 libboost_stacktrace_basic1.80-1.80.0_1 -libboost_python310.so.1.80.0 boost-python3-1.80-1.80.0_1 +libboost_python311.so.1.80.0 boost-python3-1.80-1.80.0_3 libexempi.so.8 exempi-2.5.0_1 libatasmart.so.4 libatasmart-0.17_1 libsgutils2-1.45.so.2 libsgutils-1.45_1 From 0efef92f6a23acdec34a92dcb5f5b70e6d5221db 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 d3e6ceebafcd8efc1eee8963a87f3232176c0d66 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:07:59 -0400 Subject: [PATCH 0211/1420] python3-Pillow: update to 9.3.0. --- srcpkgs/python3-Pillow/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-Pillow/template b/srcpkgs/python3-Pillow/template index 418cb33f2ad2..ab88454eeab0 100644 --- a/srcpkgs/python3-Pillow/template +++ b/srcpkgs/python3-Pillow/template @@ -1,6 +1,6 @@ # Template file for 'python3-Pillow' pkgname=python3-Pillow -version=9.2.0 +version=9.3.0 revision=1 wrksrc="Pillow-${version}" build_style=python3-module @@ -15,7 +15,7 @@ license="custom:PIL" homepage="https://python-pillow.org" changelog="https://raw.githubusercontent.com/python-pillow/Pillow/master/CHANGES.rst" distfiles="${PYPI_SITE}/P/Pillow/Pillow-${version}.tar.gz" -checksum=75e636fd3e0fb872693f23ccb8a5ff2cd578801251f3a4f6854c6a5d437d3c04 +checksum=c935a22a557a560108d780f9a0fc426dd7459940dc54faa49d83249c8d3e760f post_install() { vlicense LICENSE From a5773f92168b7e1317b840a4b75227388fcf20e8 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 0a7299b127851d2875256bae7bc816df95e1b977 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 0af233d4388411b929adfe4bae568f6f811e363b 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 26d5f2c605c3373a96531ab1dae10b8d94565550 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 b01a9936231a227c9cf174646a8842d7058673d8 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 1312e65ba3372fe7b5456f3c168ccfc4b3d5ecef 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 a93528557830ccbb446b1835f7514a3132cde0a6 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 190da13becf5bcddeb52412565661438611f547b 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 9a24eebbce7c32a67debb9264a1268a5c19c41ff 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 46df04ff94368693dc9d25970e6c059db0618cb3 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 1afcd9b2b8eb1b9490f710999857278ce2be5f00 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 8372aff1a35130a49959e0d5c8f6d39c0d42f134 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 67dc72605078e06e92fe83d9fb5ae0ae934b341b 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 413a644537ed6c9654845b96d7a538e95afa12d9 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 50d52323b6a689dc0bbaf0921e7fd45411c9ae21 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 495e68a292cdd6c35291bccf76a6ee8af0c55b0e 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 0935cb057863fab81a6051070c76847a0e875f78 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 7f8737ebb4db78f4cda6e16e69fc11346208e7a5 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 ff1231702bd9fb9e041c3d5636227617ba9fd1a7 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 9a6e2d2ef8586c21cef8b6f485a07537a509f8f5 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 2aca795abc05be6b1b5319585dc70a74e9a60e90 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 38f78bc7d5f0cf56b8c844eb9a9530da69a8cd6f 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 582e36ecee7aad1ca2939c2caed03d989be1ac7b 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 ee28689a9bb85b26dd09008017a5f46f476b0341 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 6ac0c43b614872ea7d7ea8c47e9f156e930b7e7e 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 ae8b76f54760d053c2dad07798976f45cc9e4e23 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 f456b04f1094c5358c38f7bfc21cc3530c305ed2 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 4bd557fbcd14bf60bdd979226eacd181bf7c8ccc 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 f508fd618caf79fd7cb3a996e46a503f419bb511 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 9023ae899f642aef0223c033e3c6621844a2bbf1 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 61c9438471cf31afe0e4ee22e4b8122501a3811b 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 3493a54ca49ab3a1482c85fa565086ec484ade85 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 eeb1e7795c43e5f97b10b8515e9e98c3e0e77ea0 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 47189c21c4eb17dffa186085f23efea42c546bc3 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 4b64c9ecb1fb81df3038cda3e60b9eb882a5d8ca 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 c88f0482cc018a7f49142b966d3250be6ea29391 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 c6b46a7f6fd5dc7d57aa7a5cd951116540db2429 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 dadfaf85452ba54481cf26ecb4a37e01e364167e 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 ae533e7006e8a4cbbc692f61f7289af70520953d 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 5cf5ac95dc221e363d4c4bb855e2208671eac99c 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 3b85b81b6b81cd28718936e933287c5cc78d1e5e 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 223c1811f0f6029346a9bc7ce49341691ca4b20e 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 eecb70a88a2e35e3e08274723000dcbcf3383028 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 e5bceb9da513517264a954a990a2ec3f6ccd1376 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 64ef23c0fb69b99900f17e85764509c80b62fa0a 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 f59dd79153121018f309b3a361cd0dee2e7bb0f8 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 04dbfc95b8a7a9f1ee2cfd9d037a1f3c321557e3 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 e96b6de8ba8e05d913ca9ea6d22a18d90470fa54 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 f5d9b502195cfa32b025c5bc91e92ec598fc1690 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 5a608beb44eb8028b7aabc3775946c01ac6e6977 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 04f732c8ca67fbd7764cad13518198b957734db2 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 0df9279394f76a7529f41e8fe850ee6f6a4121db 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 f132bcc72763079e4da00f05056769e693712996 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 e36c50d928a0c03231635ed07a42f825085c2df7 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 171c821ee58569b1aedf71486e9c1fa97ed9ef91 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 46a98eec3c50e0be4f23c8f63fccc3b074f9f92e 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 d1f96c064fd8968892feb801cbdc81f75f2bd186 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 d56d9f45b0888a9ac3586e5ab13f03ae086ecaf1 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 388a3cb79e2a15f826419402321e83e73fa23db5 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 b306c896431b2e748d7ad4a38b823dc7730752e2 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 1efe8ae5e38215ecb48b77d78497207cb147604b 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 1034a2c60867b73cdf466bc470328fc8cf971b2e 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 2fc0b3abd9d5dad252be7d1495f6b2d8b385e8c0 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 4ce550756344fb5bb899c02bc1c2c8826988ed0b 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 0ad8dc278f64234a4c6f8fcf1296724c6bfef965 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 d2ab3edb6b932c739f11ed14cb63ff1fb0e23fb7 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 1a6bd56b93f36247cc252b4a2c62ceea7a3bbf2a 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 ad76eab1a4a253e5c06eacebb14c2f5ce3ce8868 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 7e93cadbf22db97f879ac2180be9d53fe88baedd 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 bd22c350a14f7892734affca7ba8ae994d7490f4 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 3c47d5b11a0a4dc23e76eb6a78b66441e30566a2 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 5650c2f6f5f46f02ddc9b7152aa12422dca0ad03 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 a632de035cf7ea2580268b3c9a6475e4aaa45863 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 7cee9622653f91a8120a2d7695939919e2212330 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 0cd7df8a9a2ce822484dfc028eb1c356f3a11a66 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 779751c8b349f1fe21bc26f42640a0a9e07338b7 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 1c121a6b47972ba66c378c80903ee6b39cf17d98 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 26c91e8408ce39623b9c382d6be06e19155c6994 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 29771e93c2cc537bca2a28715c46dc7f539aab30 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 936ef3fef2ef4a6ec8f9bffe08862eb310a602f9 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 4a0817f84fa4e76e2b8c166765b37d269abff7ba 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 50a2a2a7fb8d4fd9d6b7b865a1c48f6fb00d2131 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 a823fca254a6c42800bffe3f4232bcacaba4325c 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 9de9c9ab331f6ffb0fe59d30dfb1a5a18b143c5c 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 bfd58325ad9ad105fb607e329de0664d3477ebf0 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 4caf92b1796aeef440a21e8d4ce0ea380ea71d33 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 2f230df6a9b0e71432be524b841ad23ae79c3e36 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 8269480b1d811ac838aa101e74bc9d9c86eb4463 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 0d02b08794b333b5385502b3e0b2846a1b1cb4ee 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 133b67fb561bc54cb9777fbff893fad020abbcf9 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 a5320ba484f9fbbdb89d729ec31508688c9cc600 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 50a68a110aa561593b3d4f9735ea9055ca4831c9 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 a036034ee5820c4a7ffedb3e4a2359c00e007d46 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 0565b3f2c1b0081a9f80d255320867ed29b6bf9c 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 47faf9780e7165d4434cb452d2279bac1da1fc8f 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 b0610350f2efd913a56f04f738751e355c1afdcd 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 9460507e4e84b9a96a0289e32b2c2e40ec3ded4b 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 c0746a7bd75f02ad3db325e393aaaca413f4cb41 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 66482545b0ad6c059b40205c4f3b275ce4f42913 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 2da3feb316882a59c5e700d4ee5dde4b8337ee3a 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 081dca5e861f3e21a45ac0e4ec135240b564a9ff 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 6abb4f4412026649c0c386ad900448075a1312ea 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 21d4b5f6315f31d7f3828ffbc59c04c79178b500 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 c976a370d109b138fea4b718971a4ffc01b8fd9f 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 da2cbcef60eb8930b752e4d221bbe3efb03d166a 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 84c5fa60325543d797d1817b2788afeef0c4d0f6 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 cc06f5224353b3d08496ffb53aed5009684bf06b 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 1c94d0cc42acebafcb48269b9b0df6cd0db492aa 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 f27a88bd831c93472a89fea3f006bea1b2644f81 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 e32d5e329a46f20f8f76334c71f3c2314b20e271 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 785ed8b55ef98c2c3d956a325e2ad57fb56788e5 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 d1a70006faa68d8b96d2b5d0420c4abfed9ab33b 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 b5795c58cd98641ffc8ea2991bf958122659b8cc 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 db6bbf159889c5aa92169e6632173d1c248cd89e 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 ff5b8a5b001f514fbf0050492fe556552a0dc135 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 3ba19805a12bff24bb1791c9eee48ca1e7db4af3 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 33fa06873d06a3d017db00add5d15e76bc569374 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 630a369a213c417cd8efc544ddf52f0d54a96b7b 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 b21383d530cc218b345f5f9b39eda2f98f302dc1 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 cb710e74e9d7ae5be03a986ecc6f041a87906419 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 89a6797d3e727c704c289e18a0d79c9b3a764c71 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 6b81c9991eb0032509c177dd99c785e4a1d6d8fb 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 ccf7ce201219e46b56a070321aaef6cd224fb6c8 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 9f5c4cd47292c1f4a94cd7e247f082e91f5428a2 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 c29f14abee57f220c94e72d21e5cfb351b726206 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 7ff6747dc3eb612fb359a0f93e2e6d199908807c 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 9eb10b42d001f43968f6ced3ca0959735553833c 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 98b0ca66a5bb1d3fc0abd2068f7f1bca8c00a333 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 af93c5f96658b296a1eddacf33da5ba62a787075 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 dc048dd43f9970502a6695f886132233747e4dd3 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 523d9daf43493ed7b0c742011bc01a9b472962eb 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 4dc34e4dc6014df863e5f102a72d013409441a41 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 a55cee294d670a3b14b525ae3cfe6588de5d7a54 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 7602ee3c9b846d3b4cbabb2644e296fd42d4a870 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 0c7db97c9c3f0c05878a89c584c21dfc7cce4d33 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 04e9373c06d30864719462ad30eeb9788de874e3 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 1d9de402c4e6e73baf28960ba86450961a6bad65 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 e9d36e0f34c022a721ce6219e163e014fff86185 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 428708ebe4120999331f9871009752892d0a3036 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 9b2e60994d6050f8d49cb4975f51dc021872f8b5 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 5fbf5b0ff15efb591293000c4ad7e958453e1b0d 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 fa4b8c03d10b096506e16e22df532146c0e26569 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 12ebab767a4c563e1074cfaddbdffd0d8beaf63e 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 eba0f44ea6ae20324d742a715afc5c22691d4e24 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 8e32b42cf458897ddb3b118a7f930fb044f28065 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 532ff6296c5cb53382ba0f020e3524c37f6758e1 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 bf7c0fe0fa3f158a272d174c26438a2b2fb301ca 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 dbdf5347448e09e2f82f62704d379259ccdb8b9e Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:13 -0400 Subject: [PATCH 0359/1420] python3-matplotlib: update to 3.6.2. --- srcpkgs/python3-matplotlib/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template index 752ef542b6a6..54ea9c669be5 100644 --- a/srcpkgs/python3-matplotlib/template +++ b/srcpkgs/python3-matplotlib/template @@ -1,6 +1,6 @@ # Template file for 'python3-matplotlib' pkgname=python3-matplotlib -version=3.6.1 +version=3.6.2 revision=1 wrksrc="matplotlib-${version}" build_style=python3-module @@ -15,7 +15,7 @@ maintainer="Andrew J. Hesford " license="custom:matplotlib, BSD-3-Clause, MIT" homepage="https://matplotlib.org/" distfiles="${PYPI_SITE}/m/matplotlib/matplotlib-${version}.tar.gz" -checksum=e2d1b7225666f7e1bcc94c0bc9c587a82e3e8691da4757e357e5c2515222ee37 +checksum=b03fd10a1709d0101c054883b550f7c4c5e974f751e2680318759af005964990 replaces="python3-matplotlib-data>=0" # Comparison of images is too frail for validation make_check="no" From 9b44f454b4c7b869231c0fffa27a32d10989c397 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 b7e8a90310e5e98afe1173099bd63f76f8f7fe3d 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 e5d96fc33cb5ede716f305f6b6e5b4cdce37ad90 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 eacd6aae8f14f571278db3100f9b94bdd5afd490 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:14 -0400 Subject: [PATCH 0363/1420] volk: rebuild for Python 3.11 --- srcpkgs/volk/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/volk/template b/srcpkgs/volk/template index 3de82331071b..9b526944cb7c 100644 --- a/srcpkgs/volk/template +++ b/srcpkgs/volk/template @@ -1,7 +1,7 @@ # Template file for 'volk' pkgname=volk version=2.5.2 -revision=1 +revision=2 _cpu_features_gitrev="188d0d3c383689cdb6bb70dc6da2469faec84f61" create_wrksrc=yes build_style=cmake From 304f691162972575c44dae7b7f51af72c18f5c55 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 8c00db4001bc64907fdd5009bec992a86a05e21d 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 291fcc7076493397b004391a7c1d79a03717eb9f 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 71257aad5ca6071ed76338bc4f331a3e82d4b1e9 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 5af013b23b22d47404379ec841d48e6d8975abcc 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 4e2a20ed5f5fbc6b10146cd2b63e7cdab6a0476e 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 577cc81afc3561c3dab5ac0503e2ce4353f664f8 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 be185a4a808d4bc3414aa6942e89b6a8e679ace6 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 e3bcf3f6e8c3dbd4b086014e7b0dd04305b1eb67 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 da7f2548f7f8d237b2a4a8daac768a00ff31e523 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 2139e91f55c7b3d82801207b4990e54c2c124f8b 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 277018100e50047032daca2630ed76c3fa13a50a 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 58fcc2a67e0e8e263b28ee998a70e8f7faedd489 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 f46195d7cf00b2e16164668a2bc8ac9c628e49e9 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 c44f8ee8ad65ed0779170da39b916c2956b86329 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 ca21429ecdf13e1b218d847b29b63335a7f9599b 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 09890776318a072bf08f02f84c6677b3de1b10c4 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 00bdab2791f65afe079d01d4311bb383cd49ff85 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 5995dba62db5c7a1ae0016711ba4113489eea9cc 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 aab83c5f8d0289e64353fc9c5ec6591c2993d1b9 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 e7d239373d75bffe00fe2438a7b025cefcb2d537 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 bb35f0f1d3d399583c8796f031249db21bfd7451 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 86ee1bf9732fa2dfdb70dd15b563850d5f946853 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 c126edcc2f8b50fb323a6576bcc3da63d32b4405 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 71c656539df9b2008ce793c082d3d63c0d5bc224 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 1bba878494d33ef04c921fd35d6cc3a601aa6a30 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 14cbd9ad0011571f826e978838fa98e8a17b2f35 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 eac54f6142fbc8ead770945edf240a9b305cbf5f 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 04c53517f15939cd504c67cc7df7ac42072425ea 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 8c8799ea1fe015b1b62f17d128701ec8f4eb64ea 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 a62fb7c1965ef082464e5570a37fd867928128dd 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 ff3e71bb7bc2e7b1bfe23a8d3bcf7f5ec6f6fc48 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 f9825caa0eef6b6338157da1bbc58b03f976c3de 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 28b62ef8f682bdca2b23ee1ffa626bf46112583e 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 eed1395ea1e9a0b87189c86352f7fea5af5e44ac 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 d8c0000a142901fe113933cc213f623e6b92f5de 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 268b5e450880c4bb6e8ea54bb646e9e991e2b705 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 3d899f1ebd2e3f472178fbf0dc9274369442d08f 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 56932934cb5b3e5fbfe3670dc9e698dbe72bc40a 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 6929e6cc6597a812e2779676a918cd43302aaf56 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 70b1e2ed65a75f3992e0e2a8dca7b7191909189a 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 4b3d281d719858f7c8b8fa64d60304da3daa6248 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 40fdf977a0958db3b0c853d2a9357ddae5c871cb 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 ec3aec0c6b1be7377fdf52cea511ff8713f30ff7 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 ea3b53a391b4a2b0074c208dbb2dc12b59be1ba9 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 6503c9b1458b7cd1853aa3fedac1243785028247 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 ec1e516dbbdd471bee82fb6f5a35cfb6a3278798 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 5c14382dd3e7c31d824dad974c730f51d12dde45 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 e6901b0e1e89254daed6a3b7ebec9df6f62e3d3a 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 9ffb40b9a0eeec2703a60b9605e92a696cd717c5 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 1f8d96169d5384c930c595e16e12939790cb5827 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 90e99cad713433e29b074b36accb1b12fff4230e 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 2e44e6ef056b86e341db80f05a19a741693b8028 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 8a834d99ae7a8e4c596f7a335f977e64c5205dce 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 5f9bc49a23c4666ce64a02155ce6543373d99bd3 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 119f9ae33ad0a723486e5ff9fab793e8a7110dd9 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 602f5c940c6743a225194b1706fac79cb5f66b79 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 a85e4d49a6e29d2538dbd81593b1d2c44735df39 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 0fcc8ef6f3ec8429bf6e5d4f5f2fc3ee5f2af1c7 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 2239462b5c39427d8aa77d545d642663e5625872 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 bda77624ea2bd7e5ce65f84a8c928e0d38094180 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 cd1978eb1db3fcb46c1b6b42c7e55b1e2f7567fd 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 b6c05d9dde24519202d8d21f5428bf562525824b 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 d569d025bcdda430404d5874cff28b6f18d24e2a 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 ab0bb5bcf96d98fbf6ee36055690d9ed9f8862a8 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 8b26c48d368c921ae9c843cbd9a40abe5f1f67a8 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 045b149f910ef197d57863421373ba4acacceb4b 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 ab03d17ecb11419d9dff226e93bab3bf2c9a8c0c 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 89a7533686810f653e4ed9d805d4eeefcba3f781 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 9bb8cf71cb8fac24df7404024b01218f3b3d1f35 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 5fa5607f04b0a599244acff917982ae94b6ef262 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 af36a2d761a4759e26aa80a5103651cb5c92a937 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 8bdda6703f79065d77be1955461e5f4c578c2deb 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 817e66dcfc838980a330036a22bebb312524969c 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 f04e3038fac80545e2175f0d5661546cc6f92d61 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 e8baad825850b35ec6d02cdc9874665495b70729 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 7ad55105cf438e382374819b03f833fa550c5910 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 43c3ac419eabadff4650de596c4a8aee52ff4a62 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 c8bccffb3374931dfc0f017853ab7089d1650110 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 963addb57b0b5ec60fa5d183ace5491d016eabc9 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 a60dd70201f55dc0fcfa785cc59aed7a7d865657 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 73e1eab3ad3451241af7b993c30b2ca107e46928 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 19ac201f0b6a44f0afb406957cd6162a19b5a006 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 491bd332edefd5ec99e1cb2d42183a8786b5681d 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 1098eab322e21e6f6d64b0ba3102cd2641862c85 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 9ce55eed286988b976cf81c5442a3e3dcda085ad 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 07c699c28802dea87113c930acb3d5613ac864dc 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 9f51e7c29171d4db77edb62a8e8afc07b911dfe3 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 59cce73968518495af86e5316a35984e7f2287d0 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 0c66041d2de706c03758eb50d0508cf69ea2ddc4 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 5b9a8dacab24a5b04d93e5ad39e5fc3e8919fa6f 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 9aca0200be713630c53fb5d267a01639480c9399 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 b3ba12d069d89bcb8af4f4fe5557c708e58a451a 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 3546dc3441583b81157802592446c43f05299d34 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 6686944f6b5a9638971e18572ce7f58d08074914 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 95e8d8ca020f999bf38e12f7f7365a8f045e162f 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 94c67da1d6413805e97eacb34f2e6c1fe26e9991 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 f8c232c7936689088dfbfe1356a55b6e0da43ed7 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 c013303a8efa181fa154d07ae50b0abf8fcd11f6 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 5e6f28f7e8fcd76e625245e9a2cdfe20de58f67e 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 5714a42a6ec5931e2b7c59311114846c675262ff 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 2717f6e7292d8ab6ad53902f6f935678fdeaa5ca 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 8e3aa74767d97a3e1ff98bfdc93eab8f6845eb3f 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 1802b4f01c36c73ce6773c0d768aadb3e17eb921 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 64490469c81963b3864f19306bf6cce96889d965 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 ed0d0d7c2759777261e1382b495353f6471d6a9f 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 a18aec91e5a50cdf6ad3b2291c758f0221af227e 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 003b55be148a83d4db8a070897593eb685930e4b 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 46c6478497103e3209ad40483cabbd7c085a84e6 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 163f34e8ca63f46fe85ef9cab6071cb660e18f2e 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 eced511902e1955b9b1d5a3c0f11dbb8dde6e7ce 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 f11353ce6a1fc62d4b6ef8c4ea5f615bbe173e85 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 3ad00211b64d23f8d50def7582f61b75362927d8 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 67a551ceda5028e78c4a416227931f60ebf541ec 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 68ec712f8ae92947f6be4e10bb241d16fe2ab706 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 2c227fd2ba95c1e156a489d594f896eb9fbbc477 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 7dca1fadf78805cd983581cd1b90918676da0a73 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 bd3609fae604dc7b66aa204640156b415e11e035 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 adca482a3302e70cadb58812e4181b77d159c9ba 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 47ce478e570696d7d8dcd625cef40ea7ce6ca2a9 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 ab8ab65375474205de51b7b16008f8d3ca8f66bb 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 2e31f56233626acb29898467e06b0a688dabbb55 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 d1023ebb9922776c685fd20c8d04671f6d29d1cc 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 867ccc0672eb936d0f47a7cfc9fb02b3d8b4d9f4 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 5b26a4d41bcedfa6ee551413e9ec0408f1c2f093 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 4454a2b64cdd5aa2be9af38b5016b5e196f067e0 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 f776240d3fc3a6de117d45c096417d88e09b49c0 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 82ba2d500a44a1c3101c45a34580fa662c0d72c1 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 b43b23714da5a4e9cba8ddcf772308c7365b1f5a 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 62a654a99d5533f8840975283c90ab21e39699e0 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 99301cc4325a131f047b20f95e98c7966e076ca3 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 12e5f529284fafe7ad8fbe3a7b01d9ccb53eda60 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 bb52793605b72c5175fcbe8f310696fc917e43de 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 798fe92345780a4026c5c1a14c9745722602afa1 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 a6351edc2c8c714d9d4bf3f046222754788bd356 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 ce74c77eba72979110854cc7d528f09cd841979a 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 1077d480b5de0a07636f2d3b5c0ec969c8130a26 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 810be39af7b73c45abbf7861218a87a3f5a9d695 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 a60544727ab0ef0b1ad5cf4b1acad422dcfe3d66 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 b3c07833138c7d7b75b7e64e6816eac876c5440e 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 ca67fcb03e316edf25554238f053291af2318acc 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 26418c1d2d0d954f109020b0875c00971fa2de54 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 e3e56d26efc58227909d68dba789b39b5257da7f 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 0560b8cd8a432694c5ea2cc2a7f06163467e6eee 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 45cd08f5e2e8c874b842b451a86909bc5619a574 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 2d4bee47160644376808f3f440fba059c8620588 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 0fe0cfe4fc408f83e26e2aabfbd5dbc826243ecb 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 44321b40f35479915c8f077cc568ad331760e4c1 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 7aec722f9f385a2c7b8fb158bf052f449bfff100 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 2155358c9c686e7785a3cc8a448a3e5cb5e70f95 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 5cd786d489f207002eb05b5d0d00d15e89866ee5 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 09cb64c40f2385a644dc5bd8b439999a94566152 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 a1f4f88a435963aa8f95bbfa4ca2c2727762f21d 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 f997e0c3e67df8ac1b0e438cf6bed646eb58b59c 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 93ae9b4572516677c64e01f4dce3a010d1583798 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 fdc0730050d8e5245042a86440e7a5431e1b2bf3 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 a43e2e8e043bed8439074968c572c5e1ba086e9f 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 41b5d4f5242038dde465032422dd1667e6a58528 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 4790ffe480ed5582658dbe3b88f728cc337df738 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 e43c78b87603d0dcec0b3440e172a766ae207656 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 dc52f0443552b961b6df01772c3cf44423d1cba5 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 9eed08f3394b0a9201c488511554ea96ded8cc3c 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 e91b20d070cd3267ad5ffabd748dfa615a13e560 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 c2c0f0ae7df53ec913661d5a8e3daeb242e2b0f0 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 06ea193a38cd164f41bd543240099044418a5b9d 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 8ea3303bee0c9675d81176be323cf277fbd482fd 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 4a7461c1bec2312affbd8cb21d45e1ec4aef2b97 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 b216626bb6234bcda4443e4547957ecc17995714 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 449531d55613c2babc75158041d7dd1be33863b7 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 361ae86b36e6256e529b763c75de60608fbbf9a7 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 7ed6b40ac7504eaac765204ab5d23d5ba770ff45 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 d85549972f1a742237dbf17b4da3ad0ae87be5cc 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 86bab9da3cec52f9c5b7da74803e6bedd1c6c551 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 bcb8182279a4a9a4fff6f59a6bffa302666a040e 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 9e771b29dae9fcf0b5375653ff5d2005a80c80ba 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 41a9ac002a12a14cb9b65e41df65c13d217c2d30 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 dfa13e5ad0f0fd797c350e4b4d9efdfbfd991680 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 1fe14e3e9816c4707388d761e248d7cda90ccbb1 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 544730e69d6c1f89befc03f30a615644f8d98c7e 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 6bc4d67bd1f37571343405870f8267f126f474fe 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 1915bca3719cc202e37e9998c2fcbc935312b498 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:32 -0400 Subject: [PATCH 0544/1420] python3-imageio: update to 2.22.3. --- srcpkgs/python3-imageio/template | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/srcpkgs/python3-imageio/template b/srcpkgs/python3-imageio/template index d701c2b0da50..7c98d9389f23 100644 --- a/srcpkgs/python3-imageio/template +++ b/srcpkgs/python3-imageio/template @@ -1,13 +1,13 @@ # Template file for 'python3-imageio' pkgname=python3-imageio -version=2.22.1 +version=2.22.3 revision=1 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module # Ignored tests have unpackaged dependencies or require missing data files make_check_args="--ignore=tests/test_pillow.py --ignore=tests/test_ffmpeg.py --ignore=tests/test_ffmpeg_info.py --ignore=tests/test_freeimage.py - -k not((test_format_manager)or(test_preferring_arbitrary))" + -k not((test_format_manager)or(test_preferring_arbitrary)or(test_missing_format))" hostmakedepends="python3-setuptools" depends="python3-numpy python3-Pillow" checkdepends="python3-pytest python3-tifffile python3-psutil @@ -17,7 +17,7 @@ maintainer="Andrew J. Hesford " license="BSD-2-Clause" homepage="https://github.com/imageio/imageio" distfiles="${homepage}/archive/v${version}.tar.gz" -checksum=c9a7a0a89d7fc43f4b1d1bcb4ce2ed53d10df2890fa0e6ae6cccdc85533c0c0d +checksum=8c44d683482e61f9c6b288d53f157a5362ba93639f1fc55000998d1c36446e03 post_install() { vlicense LICENSE From da2618aaf3cbf08206ce963a76a5299adc00d6b0 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 dfb2f7cefce887c311e66b454a5263509fff2610 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 81a81150d0fd542a2808c1b4cff6f4ce8f93e0f8 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 c804c3764d804a6d054376b4579ad99d26a9bb83 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 93bf180aa3010ab82517dc39457f4ff9cd815362 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 6c3ca1d0b2794a6611c033393a6ca72bc2a44f20 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 885108d898ce07c0921f2fe481d803d8d85cd10a 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 564d8a96d2add623fa8cbc9b8c76b9dd7de95f6d 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 2a0bffc8feed561d79574d592d818677a7e00c7f 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 7f4fed99e831e0d492cef7a1627d7d65d5f141e5 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 ae10c753e2be00136ec53d03e060c057bb5a3dbf 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 a3468b2cab50c9843acbe595a777ab92ab8b3ecb 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 6bfdb94fefa2148335ab121a79716ce6f0196761 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 e4026605d4707ccd5f67448d79bbd63797771eaa 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 90e543d8b61646be9ab61767057495056ff4f3af 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 cceb308a060846a96d4fca139021a47d19dab339 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 40ba57104c7500c641215546bda730af0c88d8a8 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 08e24df1c9c82204cd7d97ed28b8dab9bf05beb4 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 13281a0a1585427e8ce9980024f297aa21faeb85 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 c27f80459321c3d678d7f7f98296252877a1ab42 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 228c9550e1ea48d95b75dfcb765ea28ed47703ed 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 f862c22f690fef30c8c2848b4c90fc159c65ac44 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 f058fdb97efbcddbf285aaa1935c9bd814c8d38e 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 9aa18ef2910f6ae32d66f2147e1cc855f5f7275e 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 66b49e650bc29b993aeec0eee6f8c159b82cee0f 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 76ba14a70bb866956674e2b61352f48842fba533 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 8691d9e49f94e0df2e0c2772ecaf5c5efb2937cb 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 858a6fb0e6e60b26bd311675b1b8ebfaa9472811 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 255b661557feaab2f2f389a0570499b5af9abb55 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 f523a16a345ede8aa5a20eb3477112f7a39b573d 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 7cde7255a6271f7a480dffb5d3419579628195e0 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 7fec0ecd6354149194cd1c60ee38efe00cda5949 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 702f72513550d78cc2f092ba7433da901058a3ef 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 623bff9cec4595f46123f35f48212147b29bbfc3 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 0fd7ef9cc8a59f3fa39b499d2e524a06fd3015da 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 e8a8923037d4e39ef626e3ff58abccdd1961a209 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 1320f29a04fb09162d1d594abd0a198dd1768a53 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 3496f6284bec7e8988431f74ec47c6074ce13fd9 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 1b75fd4ccd1c3b05a99bb1a8338cc09c2482843a 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 3de75ae4a15fa1c546ae2ef277b247d3288f613e 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 ac29228b368d933ef34a6be3e591ec50f8529c9e 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 804158541ff1a351362921b281c31169fdc8d53f 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 fa3044b72621965ab28f61b926ac68ca9147439f 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 d11bacdd8034fc8cdb886af70fd5aaadd060dc7c 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 5a05db9e3d8c25d159eabc19d1cf45de2f1c4072 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 739298089b1a3d3c8321598fb7aee6ec0510f3d2 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 9d3be799abc885c53a54940c1202491c0f7f65d5 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 81ad99ffa4b7d8ee8230711acd3991e666aafb34 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 aad14250050719150892ea051579dff76fdd3205 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 7b6ef3f237b8149f547630a49c406e6b17284594 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 99aef5f2539a2bc4af8370f9bcb98149965e5f8b 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 6dea1b6fa0a304c43c154545c1fdb2e14e81533a 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 f613039b278aefc3a8400d2f420c72f2bbb92b03 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 0ca720279a932b397f5663de992b3f7e4a4f5eae 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 72dbd9171850b1f12b24b2a1987115d992fba778 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 776074b92bdb7e22b82f70016ca41e5ae1462e47 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 167920bf8f8031c33feadb30e3fce1ac96b53ddc 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 b979c6b51750a07a77364963e4aab58ecb4d517a Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:38 -0400 Subject: [PATCH 0602/1420] maturin: rebuild for Python 3.11 --- srcpkgs/maturin/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/maturin/template b/srcpkgs/maturin/template index 79aa1f62d9b8..d2aeea0281e2 100644 --- a/srcpkgs/maturin/template +++ b/srcpkgs/maturin/template @@ -1,7 +1,7 @@ # Template file for 'maturin' pkgname=maturin version=0.13.6 -revision=1 +revision=2 create_wrksrc=yes build_style=python3-module build_helper="qemu rust" From 1431ed12c48729cbe44dd09598c809151f84d54b 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 983b7850bc7448bcf96ed54e4a7ed2298d7f2235 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 a4ab261080b5dbc82304f42582f8fba433b2cdd1 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 d74828b5bdbde2728c586fe7dcc5213ddd89c571 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 d0835182263f37edbe04abadf6d4957f305778fc 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 8106993662be1c1d6d3b624fa171b481eece34cc 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 dca676268df12849e96c0ce76928addbc902a32f 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 0d15274154a98917d85da75663959a20045846d9 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 7b8e2492655daec5bdc711e4b17bf14415751311 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 462c46bba25e65ca45664ef2ac523ce19d2e7479 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 1bda737920b6f8cb4bc746efe3bb50006a5dd5a0 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 fe64ca1971c74502816da12ed364588dd42b9c98 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 807b4b11a73e26f0461df8a12e3704d05dbae836 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 1510d6d16163e400862e97ba89290984bbb6479b 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 ffa7a52aa54a6b3d3363c0505a80373bcc456f5f 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 0e6dc3670a8c1123f61dd518880bea495a1993c0 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 e60baa7958fe4c708012305604df32d3b742d6c2 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:08:40 -0400 Subject: [PATCH 0619/1420] python3-websockets: update to 10.4. --- srcpkgs/python3-websockets/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-websockets/template b/srcpkgs/python3-websockets/template index 7c02b7ec8ed7..2608546923ba 100644 --- a/srcpkgs/python3-websockets/template +++ b/srcpkgs/python3-websockets/template @@ -1,6 +1,6 @@ # Template file for 'python3-websockets' pkgname=python3-websockets -version=10.3 +version=10.4 revision=1 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module @@ -13,7 +13,7 @@ license="BSD-3-Clause" homepage="https://websockets.readthedocs.io/en/stable/" changelog="https://websockets.readthedocs.io/en/stable/project/changelog.html" distfiles="${PYPI_SITE}/w/websockets/websockets-${version}.tar.gz" -checksum=fc06cc8073c8e87072138ba1e431300e2d408f054b27047d047b549455066ff4 +checksum=eef610b23933c54d5d921c92578ae5f89813438fded840c2e9809d378dc765d3 # Package ships no tests make_check=no From bd1fd60e9f406566cf7412a0b666a27a653006b9 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 9418415af5cca986e67d1ae9f31fae3db734e8c6 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 80d003c1e1d9e3796ed754d05fdc26e277b1ccc9 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 7946468810fd9c758bdefb103f1fd92eae95da31 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 29b895caa9c89cfc64333f8fefd097aebe587d5d 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 d9692eb3f4911779d4d35348aca8c6ff8c6d6fcc 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 2edb17cb368c676d3d172ce3b829ba728a3c9ee6 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 5971e8e5a69161b340cfb4e050dcd222069838f4 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 89ff674c3a52221c77255f371f48e463493d7636 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 a3d992e5452f6a51438fbb0ea0dba94fd424efe9 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 9f4c358b2dae0e4f1f0b8bcbeb4b59b088ba3262 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 d82909f6ef77b3a55485f16c011f11cc41f0da9f 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 fa297fa24210cd4b533eff6567626a84460b6e4d 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 5b344be94334dabb447d255d3038414600a4f824 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 a708e5a0b945516999d4e8a8daa1c0478ad1f89a 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 5beb4110cb8fe29f361c136f7041f25701dbb9cc 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 35844e61e2361a3317581c41d8beaa4818175a44 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 c648f69b551321d232512f93dc7c346976e5cf7f 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 d5fc82021de0ff56cf1e061fb19b0a614a68de83 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 7c08a0e1c7abbe0aaf0043219e9294e0aa78c675 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 bc9e52627a0e2eefe1a9b005d99c1d9eb1e2b341 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 6cd72f489d7856b1c8db37497522e6666f284f10 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 cc613bd1eee494cc3c55f3bd14e3094290214ce4 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 acf7ccf7500337349781cf8c74166224eddc5df1 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 c09082465acee365e5a0d90f1376385bef47d755 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 c4c856358594c13a10441517cc39222bcecf5985 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 3cdc55efc877765f8251e823923893e9227c3230 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 1acd28ed5d45dec5ed483c86b0819d7b3de0fa78 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 7df60e1f9ad9cffa4cf9e4833e2c7fba867af411 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 8e925f2623272d5a145a0812132add77e105903c 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 be5f9a8a84ce3080e0812ba1d02ec1204cde271f 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 bd15ff64a4d8289a75d7a3b3845880f9ee861400 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 1b80a9c7805b1ec7434aea1d2c092a980de4b91d 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 011e29b69674adb4a33205025780171da624d8aa 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 35b8a7c9060d6d0040068f97f91dd0bc206a2c0c 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 fd851e05940e71f42762cbbbc7904b73caf5db8a 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 f2e6b7a4c004c54c54a4b1db22fb45df5019d285 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 2849f5c5a716a6115b170a6fd696c4fcc545bc47 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 92df397a26122189db6c5353874c547b34baf307 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 573df6867187583bc341a2a56fe8aabd9f820344 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 51f2720784e24c3e508539f8d38beae7be5df1a4 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 020e1c75741c764aba098da35e4422b9014c03d4 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 d03a611df00a6159b126366360f16c091ac0a37f 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 f1a94ea3a1d484b5ece2335a0b4a7e3d5e96a0f6 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 a93bf33f1cc4c8e5445544542f42757560c91a2c 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 9824372283d853648ada29e57842a291e3ef9424 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 d4f0db5f33737a7267f1b44807f1ff2d3d4e6a35 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 181e251c1061aaea150e7556216c5e2a3169b10a 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 576116ada207bda57e784796eff99d537159b6c2 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 814e46df9852e9b27dffc704c6f22f69574da90c 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 0aa00fcd2661c6e5a6b30e29a8af5f9b8c853e68 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 c046828e7b34d01a3251ac50e1ebc735421bd3d5 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 50084780b49497bcc2908aed59f83a43ddb65ca0 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 28f5255b9e114b7dd3bebd7679c1c5ac5242b933 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 e2b15e7b5d45270fe94b36c9e2c48362647bbdae 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 6565ed14e480c37764c8c7d6267e2302ad7e531c 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 f3137700abff2203bbd0ef08ab9e226eb39314d3 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 6770004f65a7b125296916bf0c9242f70b12ac58 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 5332c6dc4c55d9de4ba2e33a30369cfdedbb6a67 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 b9badd3bfab16dd61a4341633aa46684a8b1eb34 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 621f435be25194ed7c05c15effb658f868f5db0d 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 1571b2c82567cae0de80b4ada17c5f338b54bb77 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 7d635ed694c364a24e29c6832b8c967d5a492308 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 ecd66acd7d014f23b1080f3905462543aebeed2a 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 0610356f2a4b1a7addd6cb4ae4bd477051c1bb53 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 39e8f24e7eade0091b1c73aa15acc79bb4ab55dd 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 206ba2eb496ea896e572b3ab31ef0ae85b9f038d 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 886fe99862ff1d4a4c8a443283b59c0d299526cc 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 5267148fd21e754cdc0e94cc8cb60b354dacf4f7 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 ec657d72ea6cfbe26f4018f782dc29167b43104a 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 efdb1b8666741c9fdb4e37afe2b74558df222b3d 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 6d733e3b7a257cd93ac2a1869464b262df6db00c 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 58453f43f134d029708981096c8b65dadfa88dc1 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 599437a021795a1c6120973068013bbaf622f12d 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 bc3d3b2ba8642e957fadc4f937ed72de489c4060 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 70abf8ef948a6864660f2132d1e4ee42a79b2edf 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 e8c8d45031922347403aeacddfcd92d242fa5825 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 1fd4b5cc4f96af3d3f5b90c6aa9717d95d39da55 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 2c0fd6f82bb142d9f1cd1fe37b137b460761ca28 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 1901e73155191a6f40eb14da22731bba06377d36 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 03ae0ac39c9257efef2a3ff65ecbd702559b7363 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 83a743d69ede3a1f53e448373e45a1a0d316422f 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 35097fd14ef6f979004950ece52da9c0b7a2f815 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 f4ad31b8ee49b0e67e57691fac42ecf73e686993 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 1383ae3afdbe80196a1e51d22ecb4d012e665e27 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 65fe111c53e8968b2071486c3f9dcca01c8f87fd 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 95d31c751f76064f2e397f31b74c57f6077c01d9 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 9733a275effcec76ecc612fee84e86d449f02e83 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 820440523258ed2fb44d3708accb3bd7cfd6055e 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 07756378c3a0939963410d0b55c2751bd70bedcb 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 fa0ccd5168c37e1f0a9bcae273af8da01c343dfb 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 0c388185ec81c97486c7ac3543f027e60ab11bbd 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 1caf6383b356c59210a8d4e03ca536691c6ad320 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 d6a54330be7a01fecc3671caa9d1988127416382 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 083c9bb89e3a4998972b1fd183f29a84a09ef6b1 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 0521672aec600fd483a9ac487ed6b0142b5c121f 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 550af15f2278206dde6f53a9ce1c22c7e516dd31 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 603105185ff038d19274aa9a632102849c751f5c 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 35a67d58f343acb1d9eaa6b73b09234172624949 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 ae4f901e6fa8fb9671c3775d3e73ef6c2c11021a 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 73158de1cf34e807c54c9ace41673d6a4ce3b5fb 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 e5daa3d220163f4beff4a0b45d711b5bc80fa083 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 c0bb9d7519b0f2bee780f9f7943aafef48c9da42 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 a98f36c5e26109bcf1c2394815c4ccadf26244ec 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 bcb4c9c6a3debaf792ab465763869c329dec376a 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 3e3c59ad40cd65680df5ec7c8145984b947ab5eb 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 d07d7c0c74200f7969dcc2c807104fbb8eaf46b0 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 9f6217ec43eb450105c012acf32b71e7cee06677 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 6add63ac2da45388dc73523052637d6c0d5bcdee 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 ce7baf6b180967aab4d998c468099d6832c38ae4 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 bded4d28e8b26ab811d0d952f7b981c0b5c752cd 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 d58dbdc03975123dbfad8089ea69906c6421ec5a 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 77844e3800f59c4f0632eb44e3f5bff4359c440b 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 cb1079bf1d8108f099effa6f472074ea792ab930 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 de5e32b872ed99b97056c92aae8c212b9158a062 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 c91991c2a98dbfb3dbd7a7302544b9c60fa1d84f 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 3410c376883dda710b22d4d0e6e2369444e2d479 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 6fb1a4237b4bfce7949526313bb0e438be49e217 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 01ca8939d1ac1ae782de185edc45d2b3c4a7c5fc 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 9827e7a5df4261f6401ede2f7ec1685a24422f99 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 cf6ff63e898a001cc39bcdf381f2fd04239b80b5 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 c9b3e261df2c4a84be871017f9bec826a47bb857 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 704f5bc6e2e557bbf26318d8424154a802dc3011 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 1b7fa0492abbde75c08aadd0e0b32a9b40044099 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 ce9b79145ade5b6fbe4eb25115e9f7e42181b33c 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 9c89214e305077f273931cdb9ce2e5ba2174b4d0 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 15e582ca97539056af1fb3c6e57ae9770c6bee9e 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 77e53269ffe1027894a0f1e5e5f872111d014a8b 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 dadd1788f3e2863a2ae12c3cb59f325b0961d626 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 8969128d1d45d1c517e9eed61160659db84c85b4 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 6b2367fe37fb22f1c247bd2614281356d22ff63a 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 3cd2568b886c3dfd22bc53dc71e1d28597c7141e 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 b6e3eeeb05cfd012e3a5774e10bb1269912e7ae5 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 8a801a9f99be8c97316e795d8e1d941863a64996 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 a4f2e9f412d7a3e164467f9d3fdfd8d8fefa9b0f 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 3b612969b45ed6d1b377dc7479a323e5a5c9ead2 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 ad1dc4be468cd8fd0bbe8c196c752594e4f07e40 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 fcf825310e24ed091cedc01db6f9fbc39bd4486a 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 ea644e221159bfe1b877eeebd0b015e4c9decd05 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 dafecb1d42703e2d104aacbf00a68d3fb8e88c38 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 d34a0e4bd079b75857c841693d976d422f1bb348 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 54db2bc3f97f11fba791e39b02009e7bbf4980e8 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 4b6935830def173ccc3d7d003df12bc468cfc36a 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 c98841b10e6911fcba727b72c7123494f1e63d6f 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 885238bc8dc268c0d620cd703afbd8b5cf9eae7b 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 985f589b2bd5f552c4de0daf72014305d2af1b38 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 4a220b122cbd6d7589b1407bd11470b42f017008 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 4fe600dad297df6024394cc3a575d5a219e1ef33 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 2a3991a7bac5a0b6f780d7805b24b95922fb905a 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 bba534837325b2a706e98fbdcbb44f05795b48de 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 b847dcba1ed7c6e8fba999c06dc7cbc4f05d286c 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 9d6b3b60198e4f266bf93981f7560b672fbb1055 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 a6ce1c51644e82472c1c99d919ddc748b4c80cbf 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 bc319583a4055cb71cd0b159c1f952c319d7f2bd 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 a5e147fa49684065949cbe2d4e81868e3b250988 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 1564c0be56b860601dbc9f9e09a480ca219f2ddd 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 a70c7d3b1e6984b581d6e23deb276a8742c5367e 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 b2c65d7e9dfb2fb721f633fa4d3d3257762aa4e2 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 1712115393d8ec09650f3acc695259c748e7cafe 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 2eca1816ccca36391f8e9cb3df7441b264c79824 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 d4e1a588d43439eb2b0d1854bc336a1c0bf9c6b0 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 1426c89276393e3dd1515f51b8c93694e52fb179 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 550d79a142f51d43e96d057b102e395e326905f5 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 5f8766333a89bb518f148f4af0248acfd8bd6d95 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 aee358014d6f1e0ed364f43d1b1d0c296171bbb9 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 eed2868f22771f65e9291c8b4c42c990206180d4 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 821ecec7c11dfa53a925e11c40f3542742274ae7 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 dfa1021b6f40a3644061058c0bfb24e08e54e275 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 272239da37d555a6b9c5048fb0c07c50e8da1439 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 01ac4e7f4fc81946efe0083f8396b4287a98d59c 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 79ac00107905603291fa8a94f6af396f5da1d1d4 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 223f5de228f98676a069c7b197e646c131f420da 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 e21a77eae1bd6dd416be2460a7d768b12417fbf7 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 0d0337aadfe8eb193e9af1304293fb029e5b9185 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 a6aecd8fb344f731d7305f05cec177aedd401b86 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 9146be86f0551e67bff8a1290a53e7a2c0834b10 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 cb10b9c349c65e2ea7182575c9c25aa01b9fcaa8 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 afb98d26ba76dfe0e56a784b50bb65abbacac507 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 b02fe3b2b3e657a9326f14e1a15329a13c060f8e 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 d8612079b5b90be942fa802d37943fe34b128e7a 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 fbd8b81e4b102d7d33ef76af741f343eda073e75 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 a6ba305c8cbf77772a060524633056c34b6d608c 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 fd1518c93091b13784dbf1e56fba788d52a27335 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 0b57705f685956356e537dc630c7733e25ed5f31 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 e12a8f618be709bcca1653d5a51363284f594736 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 da541444dbeb5f892723a72e00c1bfc38e44b35d 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 d70de41bda8670bb4ecbd3c48c01d957d5a713ad 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 ae3bc1fa8fff71a5e781301db019829615e06b39 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 34d0f861f7180a2362fd54e16ac712bff2c68d92 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 fde1ebb3add1ccdf8493b849b52012f0c81e6fa6 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 7760b29dc8226372d665a8e61ffb5beae9f14ed3 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 c455f2eeabab1465209394c0a3befb0928eb2347 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 0fbbca2c0757408f296d4721e0509b0a0ca531ca 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 2345602ad92173777c6415ffc68d43ba361a2166 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 b08bc80f005d3e130e32aaf9ad9f967df4253956 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 ac170ce65785b95b8b1bee0a154f2570bb77a4f2 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 7d65ab7fbc7da429ca80f86b46b556b77e6e0425 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 49d7538d74418d40b7ac6b237255a2e5598cdf84 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 1166d5fdfd9c66aa7bead556265223fb490a6b54 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 061bf0c173894e32c2645efb396c1b23bafbbf31 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 7cbae68ae8761be57d6ecfe17980e1cee952acc1 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 05b47ad1c7cdd9c6e9a9f0d3919fb916c6752d3f 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 c984bbf88685a1137a47ee8e293574400c1c3904 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 7240e825974d0b03bee1093d7772ecb6453b5abc 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 c593cb4abfa9d779e6c8b21423d000738b99b65e 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 4223ea4863839f14bb38f7f9f326c18212c9fed9 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 6f6b433d646c4e27a0936b9b6de05f0548b4d22d 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 4faf8934fb841bc63c6005001eea9c33ec7ee7dc 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 bf22cc514a3b9cf3f87325827c1e967fd2cc917d 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 8450dc541415ea15e77bc2dedf5be6a0558a9d13 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 4366587c0275b5e066a41a3385ded706997189ae 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 59d1c5ae804158fd7dbdf6b95114fb1692177752 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 3af24e22afa6d441c7ff8e3c0be4f1fb745bfd77 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 2ab3065ec5a2c4fd2e40a2ec51cb39fabf3c4893 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 2b2627f82c52bd161eae718d2c7ea4e7b568d962 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 b3f1df7fb84569d976b6eb088607c8fe53f8557e 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 8d4013723f26998c35866fce1df6c06db9728783 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 279af3cd6dd6b73aed540bc2c58f42b65df90eff 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 65cdb2e39bbe7a7639f8354e691c494965bb7607 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 fe9c84621cc70c847471b983005489db7506b0d6 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 5ba586e5803b2279f7323efdd3ac2012260826fd 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 790bb3669d563fe36b5f38ec5454e41d30b9147e 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 8b9c49a505f689b6431a9d34cfa68ccd53ca191a 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 7d8ff689c4b76e44e865521bc7569e169a782d19 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 dfe2027884538be2b5c1ef7f71df8a92735b7eec 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 887f31d5ba13d390f0b7e4d335fffabb0c04371c 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 ac16d67a88cc80785310d6cbef1f76656e2b5a72 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 521db5fd650029978fda00d30c4c959351d5ef37 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 0277d30d71684246e6b2f6148e39abda74743259 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 6f9d4104da9caaf32a31a64a042355dd7dc7d747 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 1094e1f0e60e29ba19998e7db182ed6f852f088a 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 3bcba7793f57dd9f872aff2d2a3a8ab0476abc5b 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 20326b6373e485da63f8034e4639a03ec3a684f5 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 1640269559c3597907f1e84c22cf25cbef6c7448 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 9066b030e9322f2f15e95c133bdcbee06a9bc712 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 7abbf825c16caaf374fa44348047c844d058d9bf 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 b63f335ebcd4b5516ce6af2d59ed642ea2205546 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 c3e7b60d4e2093fb8e63eb9c20671f1f464ab0f8 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 c3e05525c7b80655928edacb943107d55fd601fd 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 a0b784f6680b03f2743aa82a76e6ed4b970ff2c5 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 c545f7ce77dba698fd785d8f1f6f69e9644b7624 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 a80e596ec47b3adb7c37248cfeecf381e61e71fa 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 397b550147c34ccdd3de7e42ec8422d9e81a7e5b 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 99b292a6a69369f1bd57dcc89c6660e04197c0af 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 06d7b968e4e575925fb56ef0404002cf2546d9f6 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 8170a4acceee6404f165400a0dac425705f8a638 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 c135f53cb9f1b21a43b203552e067247a65ebe14 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 387921ad74469db452736c8047fe6cdf68d879a7 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 3b2b7731006d06f23130b2247a93a9e22006bec7 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 d03e91b11edd4161e63088dfcd9237210d4985bd 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 bc121aa7dac4b2b26d13dcfbfecd60bbc31b7e91 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 1b716343e4d4b9230d6792ad22dfbf57df19097f 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 2111e6b8643348d6ebaa0874ee79ab9421676006 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 d82cc51436bbcd113acbc551488b9486e44e3743 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 cb3b89a25f7e24e28397a661dd1768fbae311750 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 1e4cf855ecd2bd35a61a0a550f19e0239175036f 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 f0df8b77f7afd85573e0e3c6c92ab334a3bed5e7 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 631f96b8756ff828153435a7bdaec3f3e071b5ce 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 8096653185de672ea8b7131eb1a8f67d9b119087 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 497702bfe257c2f67547056db90052cc8668e724 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:06 -0400 Subject: [PATCH 0879/1420] sqlmap: rebuild for Python 3.11 --- srcpkgs/sqlmap/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/sqlmap/template b/srcpkgs/sqlmap/template index 0011b7d1f74d..c8f2a0aff6ab 100644 --- a/srcpkgs/sqlmap/template +++ b/srcpkgs/sqlmap/template @@ -1,7 +1,7 @@ # Template file for 'sqlmap' pkgname=sqlmap version=1.6.11 -revision=1 +revision=2 pycompile_dirs="usr/libexec/sqlmap" depends="python3" short_desc="Automatic SQL injection and database takeover tool" From df3d6b5e167935ceb3793de70971401bab1b1f25 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 d65ba936736d82a55a8c51d8045fd9baa3af0d05 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 c6974b459a1bbd2034817ecdf6ea32dede61f092 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 791f4a52f7e665cc2f00ba7664e202d42a816890 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 ab07d44d2618b907505a8262571470e2c73bf0ee 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 282be9bde9dbfa5b9733b2cd173bc03d6fbf8c6e 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 8713796abf0caf2b74a9444d791d0b7901cfafca 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 572f6669ccc1d11d6008489796c292ece30bd52d 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 92db24f05972836f6da75e53ce44fef70f7d12f7 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 28b053be56fd5a461e30a62fd30c445af6ef3c93 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 a67e2f2c7ae57abd18c8da16207c04cdcd8f70a2 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 c96bfd8a198ec013baf288b48833d5a6ba00faa3 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 ba2bb25669dedd7e91c277eb48f1e89d1bc8d9b9 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 7bad7e7e258549635af9f9e48dc782be2f120ce5 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 a9a5471e4193dcdf17accc9550b95efcf3ca0d1c 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 ed4dcca5e0ce7ad31ff50ea509ebf37571d0c915 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 aa0f5e008e18e98a2fa50dd41452deebb72ef7bf 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 edddeab48344232466c7ff8a0981e86eac4b5601 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 10babc50ad8a90db8f61f1054da03748ff780258 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 54016f0cc2d106266c13738aadac9e98b648fa16 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 ac867231c366ff46bd9db28f4890f6e9f9e0538f 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 6eca91fa918fad4bdd292f4e54f9e3361ac924b9 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 b40ba4e1f74819ec1f0737511a456e9287767a08 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 72d8d80f17c5d5744e96a58e385f4ef4ebf529e1 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 05ef11a7b9d4936580ce2af6f9b341b698464d79 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 6de3c7ed8c052ff8a23545a56f38cb309632b2da 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 0b02fc219b77693499d19de002f69fbe82f76e64 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 e4349036357c9c51c2f564e61ac3771641d91214 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 bd8cdb3f45168032ff183c3ed25052b5fa338491 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 7bacae04914d210673e6de00f71c6b5ecefa6d55 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 f00520a28d26652d4f03137c0be3ac22f179fced 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 0ee9632e6a44cc2d2525f809a9dd7545b1a21ffb 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 a84e7b6a22d9e5f632c97d2d9bbef13ebcbbc866 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 dfbf7d83d0c8827b64e10c70b9b7dff42ecdedcf 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 ff58d8c6c25691bb247cda4cba7f325fc538c27e 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 9b206112bf0a723623bf9d7844f34332a90bbbed 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 5a650937e1f4089f53841488ae5f3b8a8bb36eb1 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 a742ea6b26d662b38b51166edd95f06ca0ee2edb 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 9f49d690a00ff8ecb52f0c00a436c1ca290c2528 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 c84707f8d40236c4d1612bdc5758b3c95cc022e6 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 6700b27e4ab84ddfd3affa6fef3cfe75527ada79 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 2361d0ea39264418743a357c778ec68e7774b9a1 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 b8942771caf2039829fba05f81fdda4303a058d5 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 f7c668dbb07965a1083e5e033023b2d7af0bab49 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 c0313b22e4df3b26d515d6796ea8365ed49db5db 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 5814fa1e0c859820aa7a65960b024717f4ca9505 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 8e9379fdc8c8397754a19ed4af19359b412da0be 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 7b8eb4878bc7eed4747c119b3faa967cbd4d7d5b 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 fa68f82b036a40b04c16fe5a22c01d0fe8106fa8 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 63d3ff35366f04eb5345383147c1e2c6b7118ab1 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 f6188c2edc849f8121daf68498840230fa3462ac 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 13e7b91caa11bb85b5e40c90ec548fdb4c71fb03 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 08cbefc6332e907c8a550e58cc9fe486e0ec1877 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 eac2f0fcfade7d91172a5619a4540170a09a7f9d 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 491eabd669e88048feba3dce8cca163132d99c80 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 ffb25ba32612e38fb4b047f07b8bbc51de4e9fbe 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 8f2b0dc3c333f60e69d706c9d515d518943d8124 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 7c53bef1bdb95fca03ebdc12c9c3d8aa57872f67 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 ee91538cffe9b790eb9bc6e85cef0139bb2aa5c3 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 a17ee2f733c0bdccf6008b20e9c3cbc0e2119870 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 d6e2402540a4baecfa7da1d84ebe3f9bc1057275 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 0b10b0a5ddf595962928200b00552fe5b733610d 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 68237d4cbae033709c2f0c7a8de501ee77e33261 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 2c841cd84e7e09adf612d90f5aa861393cf7efd9 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 d3b58610f4fd11369e5b44613d3361be6b175112 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 88031808d442a388a18f4cce184923f412e87749 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 b7370aee7bf8b446c6037f43d378da65c30f30f4 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 725aec677f1e54237df34612687b3051deb994c9 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 13440f37c628f77d779f8bdfd9386df960676a98 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 57d44996b32ce795e29926a4fd2c0115fea118ba 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 265acd0b0b05486d53843dbe7e6b12aca49263c4 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 507b65335e85004fed2f2afe56d011a36e49de45 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 e9e318079b5980d5c9954d58b83600ce14528d22 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 4e6c6b811b14ef511797cb512db420014d8b3c54 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 2b93c0f9e64d48c179e4296e67cadb1141f47a20 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 2cc5ccd7a0ef42c6328c748cae0d9d2e62669a13 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 8611a64087667886790be1a43d8cec59a2b29743 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 b8fb2b29231cfc8d692120afd547901c1cfb81dd 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 1a0ad165063aefadb18be2e5c70b36149f9f0257 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 397114b512e52748b8ddfe0325454dc281482466 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 1083e29c728e9e4809a342dc394b575929b78a9d 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 aec2e1b692f87228698b29120e4df65d92f7825f 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 20e93e07a8c4fef3c4678556349d3ba451106228 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 09b5e70f42eae48628f07aa75cd8526790965923 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 894d10f8605808df66331b83d14f3e28ff02c6f2 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 20e3c9c18168350e7f3b389802268137366cce9e 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 759cbbcd010a7ad11dceb4eb36580b3cd2bc88bb 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 9f69668edbda4564a9ace1dcc5d0327a211ea820 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 fecbefc6b5af3f0f6954f3c9bf0318b8bd6184fc 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 ce50a781da8bce88f6f0bcd91a555f0670bbd674 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 305190b1dc9037e416a0b39378e3007dc8193beb 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 40aaa0a334c0408e05d5f155dca964e71aeebc63 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 7f25e569cf1cf81a2cc4b76ebde7c0a0259b7518 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:16 -0400 Subject: [PATCH 0972/1420] python3-pytest-subtests: update to 0.9.0. --- srcpkgs/python3-pytest-subtests/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-pytest-subtests/template b/srcpkgs/python3-pytest-subtests/template index 75cd86bb4f96..6c46c4264c6e 100644 --- a/srcpkgs/python3-pytest-subtests/template +++ b/srcpkgs/python3-pytest-subtests/template @@ -1,6 +1,6 @@ # Template file for 'python3-pytest-subtests' pkgname=python3-pytest-subtests -version=0.8.0 +version=0.9.0 revision=1 wrksrc="${pkgname#python3-}-${version}" build_style=python3-module @@ -12,7 +12,7 @@ maintainer="Andrew J. Hesford " license="MIT" homepage="https://github.com/pytest-dev/pytest-subtests" distfiles="${PYPI_SITE}/p/pytest-subtests/pytest-subtests-${version}.tar.gz" -checksum=46eb376022e926950816ccc23502de3277adcc1396652ddb3328ce0289052c4d +checksum=c0317cd5f6a5eb3e957e89dbe4fc3322a9afddba2db8414355ed2a2cb91a844e post_install() { vlicense LICENSE From 92f2c299cdb0d78721b4ed6f73b1bc3439c4372f 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 728ace1075900b8b3e1a4e0520bca5340e620c87 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 ce8ca4c4638b4bcb06f8cb499d0d5cf3b550c630 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 76a4526b97d72acbbcafd151b6cfc189b131eb38 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 0dd0f29d0aba0921f9e994c9e7d6538302dc9551 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 23ca08ef13505bd6aea56614d127b87094aa07aa 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 ef306d8b49fa20bf58fda5ddd06fc2d016502199 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 b946e5217cf97c548b59a3ecb403275b3bd461e7 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 ce56d4a0bf4b1689d1cb254248eee11d50e436cc 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 63528de1425e9546e6549f45c256052159ef456f 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 3b2b36eb4ebc663aae83982e0f86c611c0e6e0d0 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 243680e64d71cca51288bfc19d5254c9d096116e 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 113fc91c5d058b27c6ddd4d4d04458059372eff7 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 d90b5a4dcdc85a054f13ab8f7fd93cf6151b8731 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 3fd3f8f805dd97979a996099c2bb3f14a2d1735a 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 2e062ff5ca8e8f479b2639294c495fdc9ebe8141 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 795784a8b27d20e4a53cebc4771204748e408895 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 f2bda738543f0efb3881b97cab637053fc36c5d2 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 d5dc687793ec2ffaf7cb00ceebbb2817980b4b2b 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 c950322b564dd73596c6df98b49d047a196d33b0 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 1a35002178b67b321619b56b0ed255b1ca858bc6 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 f3de2d1bc97333401e93124b3f9f608b85edfbfa 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 281233c8c5b1a4c10227914959d6e6a02fc5db47 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 050204166d6fc3d8a12ccb9a34f1ca1aa10e674e 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 062ca28229dfc25605b898afd496f9f4e15cb7ab 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 672ed4dd8c1a40168c23ca7ea4c357ab2c1091e1 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 755bfb52082fe773637b40791ddae2645ec7c36b 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 9ef89a2c23ecfb77dc1ed213fff971e5e48642d5 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 bcc3a4519ce5a4c5f69f33105accd8660a2d16d5 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 f4a91d70bf08aee1e53c68cfc5ac8c0751a23f5d 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 57e7fdb906985d53f891f2aebd7068c26b77deed 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 036b88ca40d14ca8a918067b63046f64e9536cc7 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 277311400f3b0a9f57fb384fb167568f45e04e2a 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 dc929e3f241670d09444a0145afacceed435c2f2 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 f0a51f46ac5a6732c5476a86c2c67f2e4680afd1 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 6c059608c4cbfceda7b5eb003132b4a5ba096429 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 9772dcad62877de8c035ea36aeb4a0f100962a2f 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 a849379e4642f3a4746174edf92384b5e2d17fd0 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 cbaa598c2193323c756b5cd349d7b1509bc38543 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 220e2d57a5e2c5842cc57a89f117a9d14f0580bb 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 7535e05e98bb4fdadeb5668efe9645e8747c4f65 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 0c31487a958bbd9c8b7dbfa800bfa49345e835a6 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 d5908fb0abf435a2f45222223a984af9acfed926 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 c98d2db06b87d9293810cd469bd3abdf55f0b77b 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 76f831291fa55137fef87f4d1e904c370f07ff1e 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 cf444a13ae8336b37343eb2b77b00352fe4eb203 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 f1427a42590e7667702e37283dfec1b6241699a8 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 b030d355307ea96d736b9ef54c7bd95c4fab749b 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 fb482adfa8606ee5d3d7e6ba8a31584dc36b45dd 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 db08b70499e67444ac2a02d4d72d6dd8a16239d1 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 0ad2a8cfe26407974e7fbd85161c565e2bae4faf 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 8212bed764e7c73bf856e88a053fe5794d0df4f8 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 117fb6a63443a67b55900e76a7e0e3d23a048f13 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 72fa1675cf4fef111c8a91777da2ed2d1889a9a8 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 5c463c2488a7cb1434ca80a0cf5aae9afd70748a 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 d3bd4191775f129d517255f1181c4906790977d2 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 06ad46d4816415efc4d81f70434a0c8cbae819a6 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 7421a09bd3697df11952ff27c05df15598d8369f 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 6523e26c75aa7811349b0b9572e4447bc51d7e5e 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 9f5017aa53e8fe87073232a136fdb8d7d62eb255 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:22 -0400 Subject: [PATCH 1032/1420] python3-mpi4py: update to 3.1.4. --- srcpkgs/python3-mpi4py/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/python3-mpi4py/template b/srcpkgs/python3-mpi4py/template index 9950a8453d21..680f79c9611e 100644 --- a/srcpkgs/python3-mpi4py/template +++ b/srcpkgs/python3-mpi4py/template @@ -1,6 +1,6 @@ # Template file for 'python3-mpi4py' pkgname=python3-mpi4py -version=3.1.3 +version=3.1.4 revision=1 wrksrc="mpi4py-${version}" build_style=python3-module @@ -13,7 +13,7 @@ license="BSD-2-Clause" homepage="https://github.com/mpi4py/mpi4py" changelog="https://raw.githubusercontent.com/mpi4py/mpi4py/master/CHANGES.rst" distfiles="$PYPI_SITE/m/mpi4py/mpi4py-${version}.tar.gz" -checksum=f1e9fae1079f43eafdd9f817cdb3fd30d709edc093b5d5dada57a461b2db3008 +checksum=17858f2ebc623220d0120d1fa8d428d033dde749c4bc35b33d81a66ad7f93480 # Tests require a sensible MPI environment make_check=no From bd38fc9ad5f08cea3fa201cedc26e0999a4fd50f 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 91f238bbac247e8898ab0897c83736b49dabe858 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 ba4888d848fcafc869c3be4121c75fd2d5c888d5 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 8db83d4beb990a86b23347e6f83135238387c30b 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 511e78208e2bc9270d5c48967080c15c7625f361 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 accfc641aae5d4a86b63bfa78a4d8a07ee335c51 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 530eb61038caa7123fe9ee5367e0d68eb8984e37 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 1df66d9b63f6a5f3fa546b8b20968601483d4499 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 9b4fc60a5a43e35ff8927d76f1027c4e32e1d95f 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 b4abf32ff3e0b8eb3f3a72fdbdb2a555bac3b32b 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 c0b6dcf559328bf0b4188efa69ab3bd00e73b499 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 235c5f1d5a12b29e689ca4bca210aeae3eaae5a4 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 e0d09f1ad58a3f42c22758d50d9f3dc61d7448fe 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 6be116968ffcb53fcd8016c616bf6ade755ea580 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 9da8bf0065eb0de5b15082f8602be6d3ec73bd76 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 1b2fd4a7dfc03bda4992afd37115657a8ce55371 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 cebc108f6461e8590fdafd4103e892dbef4c672a 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 4b9dbe928b49fa1a7c939d00054b6ce7fab8d4ac 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 dadd37f64d4ddc6c9475fe897a967b0fbd38af23 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 c9e5005034f95fa908e5a0f788ed2b06f3c4f277 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 6c456c45b8da878987412ab59b8ff09f0934313b 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 603cdec13794df79457580d85d86ce40f9816835 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 1d6ceb1cc3dadc48e348a524887baa5951fe281b 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 a5a4b4bfe6026a4a4f9c4ce28ac5690b94ae6261 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 d72529b0e0cf0f99ee5ebd63ba497493dd22d606 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 7a3f37bd9dc5c1ed5473348825a715679040c578 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 916c7aa11a2538aeb772a485bdbf7f83f6b4a01c 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 0b787130cf93cca2cea81804120efb3ff0c75fa9 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 b82dbd606df04d9a1216effc5d188aa491a6ee64 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 111808c2ad6c77476dcbf243005c1b21fea4334e 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 728fbd91144c0ed3c94c863cadce823039747c49 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 792c6c46fb891a1de5ebba466a948aad9364abe7 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 595b9ebab8a52e4c1b1f08cb614cf224bc582e5a 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 70bc6079fe697af422cb733e5bc509e78cce7b53 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 c8ae075ed8289eb1f44a36e0461b1f7c675caffe 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 a524c3d4b2c5aef3aef1cf3f8f1e666b54f4b7a5 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 b65043119dc6e6c6b66eed7c0552de2e450eb3c0 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 00b3caea45b3a2f90df3b5fd4d36b2f56a66c15d 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 43e6dd756b21e80001fd8263938def83bd32ae3e 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 192d6935d16caf92616ff9f818a6c55c9ba7a38a 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 91b6567337b88b383a4e24a20c1947747ec66da0 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 448a2b28df369dc0944fd7a01a3d221aab40dde4 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 97c44638d63ba9b43f932e767c12af788e7622e4 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 d7405896c9e05df2df5c2fff8522fb2f2bc4452c 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 d6f899b40eea391733dd32370fcb8223c39cbc45 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 8630489066a0ffe22acdf84efc272027d0de0aef 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 3a1413c762766b2245cc96c1f1441de4c5f229a9 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 9eff9039500f270c3df25b81c80c90f7e3cda1f7 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 021b2eb5f3e5b46579cbf08851322ed2ee950855 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 65aa7dc2218a23c1d570fd13bc24d20c25ddd1e0 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 cb2e7426f89c10d5ffae235791c6542278240e2c 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 555aa1056cd410308d58a061697ee3fa61ae1dd9 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 2114d4defa111e8b140108a315df0f71e82c850d 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 9510c5f70a1c4b7b7cb609c95e652015b9f2d349 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 8f78b594ae7a5d9f11af490ab78d0aa688f66b20 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 c61f1bda119bdf9273abe1d69262682230979430 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 c577b2545b32800433663c82fbb0bee3fe1dc011 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 2160e32753009ff31834e822da2966f5c5314a32 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 814956bf7c351f6cc941c61606cbc3f7b0e62174 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 2dfa1548ea6d4957e92638baf89e9fc63d9f4018 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 969019813998a04283f2dfc494de313817710e1a 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 3fadcc2808f39d7d7505b325b26a2ba8aaa82d1d 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 9bb3f04f580c444f38bb0fd4259251fcbc71b842 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 e58ac4a7db59831af93a0d0e7482b5f850b7eb78 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 8322371a68461d6a7bed58774d9299a7916a8c33 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 00a46f151c4d1517f5047b44a4cd53f015bdd0da 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 0d99045c59635fe764daa8d31f0e08f4360c4a90 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 bfa132d698b9db423cf69f48eec9a0b72923c456 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 13de12eaaadd546d6843d77ced24372f79b13949 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 7032590e99f313a767459fae5c949214d76ebb87 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 1130c46bac19610a987eb89e415805db785a2c6b 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 307e8c7f0ed5e478e838087ec7fe955c52694888 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 ea9ec7e88ebe42bef17edcb94259f59f2cd47928 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 89f67c0e42d7ccc32d963ad9fa6afff4c4df10e3 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 8ae13d51d957014e8911138e1c75f84bcf57b9f5 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 e725ad96056137db529220a7f8bf8679408ac7e2 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 55357a324e2ecb2302cfc724156207cb58432044 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 8b7889bca3e2233725f87663623703b996c21729 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 a81cd38f2f106a6568177601d6fe4c438fd98753 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 7830abf1d1aa431f0c6a861ed35385e7c1840334 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 f95af712fbfa8ee0568ea536e678c978f36f7bc3 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 26dd79e24bd45d782bca3905c399fe239b7db6c9 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 5a0021e37421a9c853bf5447f2929f76e401bc11 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 41fb8fc2d120bc4c60826c1183b8094e2ebb7d94 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 c9b02f2e644576cfcc1f4f3a2e9dbaa7468a03ee 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 de67b383ab37911fe80fd82251acc23930deea63 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 ce31f8f3ac2a13e38c66b4b37f15e631044e4de6 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 e89eda869a4524586a1ec78af090e43d615a7778 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 d6f6cf8cd83a8e9a3843508d4df3325209df5917 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 011eccbf352ff73f0fa5f5c648ec799bc514383d 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 d74e89fb9468bb1bae2488137536d1c2f0ac7cc4 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 7b40975e84e04d8c8b15813b9794897a4dbd8650 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 bfe94e5a3a2955a0b96b099c71582f871402b300 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 ad94d6e79cd8aeb15c22b87470f73c6d9000cf5a 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 ac8d63a5d75e4138f13560ac0c6392fad5030ffe 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 1ef37f5bc6caea62a034b0605c6e1211017d0a24 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 af5213f601eb69b8b0f057cf046c82377eaa962d 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 d1ebf245093cc32dde2c620c0d40951380951cbf 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 d0ead8b0e31d7bcdfb04ff8353fdf0eda08734db 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 d63a6c9a46860abf878c3839af8cd3ad73d78190 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 067881430066e285e55a04e29a6ae092fe319fe5 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 72aae2ca3cff8363d2f5b14e07e0f099addfc7be 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 d0540b4da84aac7541f684e36c0c128b28bd01cb 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 46c8d2c777258b70564e0f1d5fa4a941e096fcdf 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 34bb33cca901aa3298569132e89c414a26ef76d6 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 f424bf7a8858db0d5dadd0ef797f5fe7f7273e4c 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 bd63ef391931c1b2a72ada883d72d5e408c5980b 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 837f345dd1b625271f31a6ec29696980cbe4dacc 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 1dae311ae31c2d9a4810fdaf681daf05cb372b12 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 896526b495da5dcc3eee5129b38920a0cdd66453 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 5104596e7ebc4140f6a019b7c10be4f89bbee654 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 7e835997507c81951ef1cca27d00c0ff34e59e55 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 fab1232c7395ec7d8122e04d13cb301d674a833d 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 a3f5938c80142e22487cc08daaab4ef3f38b5f99 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 2f86ad6786dcecee603e3f7db06cc71353947987 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 5cc2bc6340e5cdf0062f4daa91c2538e8ff1305d 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 403821c7b1fc1dbde28d4a43500787492c020a04 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 ef1532a02bd3a94b74d1598adacc278121834def 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 b09ac6502d8be835643481b5657d54993368765c 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 859e02ca62b148e36606d438cd174cea74206ab9 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 c908995b3ca217163f21804cdff8a353c9527f94 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 cf951256a0d797b9e0c181df703670d10812255b 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 b1b572ecc5affc9ad4253cb2e4989a076138fea3 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 b6c00254af3c5ee2b9fb1b217a933d60b58e03df 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 4fc80557c1494cbc7a7ecb214e91ab63ccfa759e 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 4ebdf6dd43b696f93bfad670b15f123e5a15ec81 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 6d181f9da314ba487db528b5127ec7b5ed624c1c 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 8cca5fff4a457348fee25b14ad9d6b2119998ed4 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 089f9a4d74f12092d486b6544ba45349aceb4f9a 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 228fd7f483b985d3731ac0b0de719b75c6cfb368 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 1ac323c4f6b659cc9c6955f703a34558957d38e0 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 b3f30131f50c9a2325bb21aea1990a22f808fa99 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 b4bfcd3bc22328614821dd7bc97f2b54411c7648 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 ea8d88c40a7d50449417e0e744c9a315416cf371 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 5c1f8f32cff68ce26c3d169bf7db73e587e17cb9 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 b05e6d485e05a2142c3eb6a29c38ccc4dd17baa1 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 7f33cb5e7788455cafdc80c8f3a38eedacc93b61 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 2393d8f7941986975e4cedadcddd332d8443a860 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 fd2546ee8dc9b598de3fd74dc76532b14e7d4d54 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 f1b836ee1bb108f910ae9fbaf02f0123378854cc 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 12bf080b4f454f528174236464766c46fe16c042 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 1b772a393c5cf0ad4f8a3e0e19584f591949b9fb 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 5a118dc8ae975987f48bbdefd22be180fd2891f1 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 280d6763a003be39bf9856dac84a86a33a086614 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 56922b38fcafca796776b6cb2143fdf44cfb2ce9 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 cd53ad2ba4c173606149c9e11ace45285ae806c6 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 72e4eb299298f1f4bc1693e4d27f794a6a361819 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 4490647a514366a39454d4da508aaab6b9f802ac 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 9ce5c2274eeee51020d595f41adb10d5e3b1ce64 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 931427f001a5f80d761ee5ef04716fe9ed0b027b Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:39 -0400 Subject: [PATCH 1182/1420] obs: rebuild for Python 3.11 --- srcpkgs/obs/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/obs/template b/srcpkgs/obs/template index 2504b3692539..5f320dcb90fe 100644 --- a/srcpkgs/obs/template +++ b/srcpkgs/obs/template @@ -1,7 +1,7 @@ # Template file for 'obs' pkgname=obs version=28.1.1 -revision=1 +revision=2 archs="i686* x86_64* ppc64le* aarch64*" wrksrc="obs-studio-${version}" build_style=cmake From 8bc5aaf8f4a7a1657d2a054059407efed9a61216 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 51ae86d55dc37b92d84233c4ab26ba29050d5c86 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 f17d9bc5fe66f091239bbca7cba613d72deb5a5b 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 7fde830b912dcddfafec5acd5406799168420239 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 e4d23876c35d280fae7e976adc9ee9bb1be6490e 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 d0224b6814ec0426840a206c795a5e78337b2ef1 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 7bb87de277c0dc782243b09273fecc480eede24a 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 1529374b4c445cc0f628554e9805a914ea4d09fc 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 38497a5162870d9304ac7bbd03216b09fcac57d2 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 0877915e94c731a59e746db659fca87d542374f6 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 4b037464bfcb58b2dbcf7eba31fa389a981e54a2 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 632392de4f326cd61113cd358464c73cc3836ff1 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 36510b4220eb9900d940170f0e031fc79ea54b46 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 f4365c4e0831d0244091f3a90f3a503bad36b54f 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 1cd4b7b3a41a02710467356839a3173c48e97b90 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 efdce47bfa00d6c93f0fad92f5577966ff6391a6 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 e92da17f1f715be8d671d2c7406b63542514e372 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 7977f0aef8d3a8f876bc13d03b96ea9ea4cefc49 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 bbc29cd15b0da80eeffadb4ad752ac28d7d57398 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 59ec8aa6412fedaefcec73c6750e0b6ad0ef8783 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 33491181a278d23e212f287a3f2e617604557eb0 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 0808c7143565a566c3b90dbb1ea7a208089d3d12 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 2c133bd381f6a6116a5bb0014e245b1c8bf1c2b2 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 1b844e9901e9b70dcc58e67668dff5bed990f537 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 199f7444d21c79176174a4b8bfea955f0271d6a7 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 eb91c110b5b7be34194fad9bfac22209fc1e6dba 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 6a1568f66436e81786c22bf7ac4419c0bfd06e89 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 d3193a8eb78f8d019c8c776cc3e09f4c0d9abba2 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 440093bd2f7691abcf0221207ffe5a1e077c3394 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 c43c4f9e471c543cdd66af7091ff13b7a898971a 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 77a143cd473c1f747a401bcc6558d0d5d5727822 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 3fc4c3ac9678fec777f6cb8c5498d839297d766e 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 b37a98bc59ccb7d4943786dfc8229c071fef467b 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 97a8732b4c728d1e93e55d569bcf09a0106cdee5 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 a909aebf1edebba7cfbe513927bae979014299a0 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 f646d4316c2c36081f527c6d5bdb14fa5ba0d292 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 fce5c4440969403d16945922b9b9cfbda6bc606c 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 aa96810ed298b4489639470a3a82919b31feca26 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 f9e7c0628d80791bac3824615a6a12beef7677f2 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 27b5cf00ddf7ef1dadd1e91a8083bce6cb1ab31b 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 bc588c1731c4bf2c50d7414fb1073af8bbe18c7f 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 c2480f9835f973a2b4ff4a76a2784bb670b9cb9a 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 3371ad4e75bab2706d998173093f44e3dcfccd3b 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 c9f59e1151ed016a3e007f1827ed61c8e855a47d 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 4a56b87c3d5c366d79ed491ef66c38231cd85bcf 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 0091ea21b577596e742a59eb76aafcd06d9ab876 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 977e610aa53e3fcd9835caed9fb4bb1717832702 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 d924e390aae15a5f52343abcdafa65bf0439f1d5 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 884fbc79c7f691a46df7e7a8ffcac63c363a0ee8 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 8ba27c3fc6247a4b18c788f75d355d090788ea5e 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 7dfda0de88810143851a93e24cc035881a448440 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 f028a46af6a90fa94ce72ff2c2496ac7681a3295 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 00efedbbe163450d96658cb7fdee1d65d862ee27 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 a2596cbd395a5a2f7da60278740472692147819d 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 3413773f9034ddc63227900e9beb7308096ce5e1 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 1f04e65ead00fd70e8a2c99bc63270a22b83d56e 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 a5ccd619a1f26ba8adc59a1097c2bdcbc6c41f5d 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 e86544583790ba46b64e8f2dcf40f32d4d54b194 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 7d15ff053b8e8298a1ddc6422b54b2616f9f2daf 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 8c001f8bcedf75fb8d4a39eea3d9fd21d63f16f4 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 e346a2234fa2cf6ab09dd67681dad2da7134bce1 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 36ddc926b07b0fd50ba14b3488b91ae9517b0fe4 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 d8edc30a8a8ef720fa7b1d31e5957883d1115812 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 446b9ac9d913240a6c6930fdc85f2194d301e0b3 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 894c991383acb3372ff36f14bc4552c2cace9c59 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 f70ee4ce20b0506499c62be048e4efcd4a172654 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 26c2c84d61cddf0500a0959a0d2bc9686b881496 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 27817019392b80b907f4daf526cf851996f59b1a 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 d5805449190fcc67eceb4819721cc78b28348862 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 f300034be39404713ef576445ba0231f05ded43e 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 84220a4a8f149ff55267a8356f20bedb53f981d1 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 66dc211ebc3c35ea945e73045263f7c7395f6302 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 acfd80ae24f997cb5d2318c46164cf5032cf46ca Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:47 -0400 Subject: [PATCH 1255/1420] kapidox: rebuild for Python 3.11 --- srcpkgs/kapidox/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/kapidox/template b/srcpkgs/kapidox/template index af19c80c86f4..5300b1945bd9 100644 --- a/srcpkgs/kapidox/template +++ b/srcpkgs/kapidox/template @@ -1,7 +1,7 @@ # Template file for 'kapidox' pkgname=kapidox version=5.99.0 -revision=1 +revision=2 build_style=python3-module hostmakedepends="python3 python3-setuptools" makedepends="python3-Jinja2 python3-yaml" From 8dc3db4832fe89932fb52dd6d9179a967928d646 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 d4dcf3249037d10ee00cf65563577889f25582df 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 3b9519d3dffec2f8c24db6f554a7be97a5f0fef9 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 c45f27bf29b305eb828c49a16abcc5a66d2a3eaf 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 c08f12c2a9a3edbc9bef40d469a2d7fb0873dcf8 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 8d413aaaccefc83c643e112bee0f8a3f095690a0 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 ad6ee50daac366f2b0e20e1c8ad8b323d135989e 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 9adf395cab19478648bdc21c0121d102f3da2080 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 bf8ccad08986219d9f50de365c8a5d805ffcb580 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 50368c192318b4873336213f76bd68b1cb05e705 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 facab9cc99096c6106c68f27e50955f9103a3ced 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 13e0c79e2d215b92a1247d7cafb9c12fb5a2b4de 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 d1f7b96103914cae775c6e9ebc873db3e80a832d 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 802eab3305393c19df048ab5d8df9acb604a6de4 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 f49c0821f9ef3159b53e2aff3a7e577f4fa5c335 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 958dbdc4ad1509231307c600d530c2dd022a322f 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 e125f1f56f1396857ddd1ce0398e24f0d9e0719d 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 e3e767113e5f6b6a6bbaa83e6e0408b0f0f02c08 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 bf1564e40047a66a746353ce66d95dda3cfd27f5 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 d7016790cd11ffe48b71d198e300c27528079b11 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 fbc0e5c65b6606864e76e982887595c14e4895dc 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 48b08706245f01af450a2556a6815ca2954156d3 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 b6c11393cf89431d643bdfb57176ecef818d2ec1 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 795d2f5a4a354e7ce12e064d65a0bbda4d8e1778 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 f91ab2fb0dd6d637cc01f2398a7a856a351c3cb6 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 c52fbb162fc3c528bd1de19e0f32758004cf7141 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 498d8a0961afb90afd19e74b901a16d6d032f79e 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 d8710acb0eae4b09fb74be4efb78ce9886b24102 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 1d8676e09982014199ca965c3c883d6cb54089a9 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 68b2409386a460fa92341e9900963a667d7cdd29 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 955bb8eb424a334b45a1f4da8f0b9777bdee7aaf 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 b0d484489b27c1838bd19488713eff482aa272dd 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 3849f653908f40555580f71ce4bdcd82570c3b99 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 282e311f7d2e5c39d1bd12a195548fc8c6b35f74 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 5938ba6b28f728f18583911a9b121ac617ef3b56 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 4ff89af2b0597515053a50e6ab61d29779765b4b 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 01cf9ea7d59e986506f406164995e011faf19a9e 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 1870766c06e6c24a16ea0f476cfa012e95b6f032 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 3f4bbccbf323e3c70fb624588b694b70522b7e15 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 533d7d5638fe0b1890d5455eaacc079a6dab19d4 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 3463da50f9be738c221e5711a081391fb9f3874f 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 0647470743b3073eb9f5e94858d78b1d8f3514bc 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 ed996404cf2530141eb3f941d97380e61595f4cc Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:51 -0400 Subject: [PATCH 1298/1420] gnome-passbook: rebuild for Python 3.11 --- srcpkgs/gnome-passbook/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/gnome-passbook/template b/srcpkgs/gnome-passbook/template index 44f011aed316..7ae4f3653102 100644 --- a/srcpkgs/gnome-passbook/template +++ b/srcpkgs/gnome-passbook/template @@ -1,7 +1,7 @@ # Template file for 'gnome-passbook' pkgname=gnome-passbook version=0.8 -revision=4 +revision=5 _release_hash=5fea4e4fc19f1732d3a5270bc43eb8e9 wrksrc="passbook-${version}" build_style=meson From d0adaa7025b8c9e5f0274c361aaf8b3af0fab9fa 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 43832bdf6bd6e336bc0938c82f4a54be02c21593 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 72118f8068025ba8a24e5f203410c0e0400ba553 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 2d9424942681cb9c9001a63888af3e9f4924e54b 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 e1acecea4e7d842223eecd0a4ef5dab7f4ddd91e 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 f341ce6a26ccc3bef4a0b69db9a9b9714c6c76b7 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 9562153bdb24bd1ab84de32ccab899d6cfa242ae 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 97fa63a024d607916b93e31f7db7130501cc0c34 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 c43fcf175ac662954c70ae4f12ff2c0a9ed61920 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 493b9b3a299f044617ba58ef75580a448e020d2f 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 157350182cf66438c1d64876e0f76beaa0cedc69 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 0e24a103efc1e4ebd017d1b792fdf2da1715a280 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 ef6372463bc4f27a7b56f18e060f0bcb605549b9 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 830fe977b57184944066e79cbb507899fe106e47 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 264065229905eff09b6e4de586dad83fa3c70bf8 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 6a1f3325223b5dffd47b03936df816ca1ad66571 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 59db40ed144d101fac2ddf77db9a18426c023673 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 27495af550a64b468a363616651693f7a7845082 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 4241d40027a2ad8bc2a3442022daac697cc75af7 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 69c1bd9736c45d9cf3d94fdec419a9d9950f4472 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 4e0f7a5a3b564fd566b94b3763d31c5ca7f0f214 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 52cc5d34bd566aa6e0f66f576d3891a91dc75edf 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 ed825e8f494e586fcab509ee9cf7211b66747847 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 1ea3ca01ee4188415878b96238da0249c4d2c91a 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 1435695e01177ba7c5588b65d7e0144598b1c987 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 f0005be21ba313f3b44ea8533d14411cb94c6427 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 229ae5c37e3ca0cb2a845f7ccc3184dcea3670c6 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 46d4962563b83f5a7a12953510f6300a5e9125c1 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 21d0af4855d8d5ba0c61933892b56b0c19a715ae 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 5b9c5a89f2bd8717b5672b6eec42491532314953 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 985aee2c09b57f44b525e9dc9e482ba66aa03605 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 21e6a2b161be7adfd3023ec42486d6b86c9abf64 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 7a3aa648dbd4e00b8f3e41b68e9e2282bb139442 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:55 -0400 Subject: [PATCH 1331/1420] eolie: rebuild for Python 3.11 --- srcpkgs/eolie/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/eolie/template b/srcpkgs/eolie/template index 6287ae622683..82e0f49b2533 100644 --- a/srcpkgs/eolie/template +++ b/srcpkgs/eolie/template @@ -1,7 +1,7 @@ # Template file for 'eolie' pkgname=eolie version=0.9.62 -revision=5 +revision=6 _eolie_hash=bb4aad19272cc636bd17f2f6602127fe build_style=meson pycompile_module="eolie" From 736fd4cd71c5af21d3b92683836bf5d37fff37be 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 d5c499bb7d6a583de128545eac6802de680f47a2 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 1da536b9ee029687fd4e5b5391607ab3421514d8 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 b88bafedd1ae7eb4565107752236e83821a58327 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 ec1c51799fd8728f34dc1459641ab5192d1a3d0d 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 038e56a7f4cbb1da6e508d8dea75b827ada8941f 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 ea86e6b6ea57d334c096f98910075eaa66d050ec Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:09:56 -0400 Subject: [PATCH 1338/1420] distcc: rebuild for Python 3.11 --- srcpkgs/distcc/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/distcc/template b/srcpkgs/distcc/template index cc7c733399a0..de16773fc33b 100644 --- a/srcpkgs/distcc/template +++ b/srcpkgs/distcc/template @@ -1,7 +1,7 @@ # Template file for 'distcc' pkgname=distcc version=3.3.3 -revision=6 +revision=7 build_style=gnu-configure configure_args="--disable-Werror" conf_files=" From 807b4d9a8efb033e93f21ccbfb5c539f5ff8c146 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 47439b9555ac1eece7cabb7c286757cc6b245254 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 a53f75252e3856f6f89c2b9dedd5ce8d23ea82d7 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 480185d21494e6d4fedf6e99a43c43472a59a756 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 9c3a4fbae8729870f7083706dbca78658d09bfde 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 9ab8096b5c2d1051f1e894cdc6346328537128a6 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 9ffb8f5e52c06d6b0442adc9017c2ec6485494a5 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 36d48cf32bf120200edb34d413b78b81a8e461ea 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 f9633ae9deefd7f57de52034af8599507f72b34b 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 e818361a00bb0cd304a9a048617891b01c2915ee 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 745769a469fe7f92e426689c1fb6264e8bce9fb2 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 915e5bbde31da62e48fb67997be4b322c11a7320 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 0e1465ea50d551af783c35380eea4d33aa447800 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 66865b3fafa82fcd95890db3b954b5e395196fb2 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 067e16ba286dd4ace833c03af292c8dfe4cf7736 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 6ab7a45b15b0e27a74e484a22878b6508a0c771f 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 c87db83b597368faf34fcdea491d5a74ada0d2b4 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 ad410ac3ce6859c5af7ae3adcb77c5b7ec2c9d26 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 dc10079baf79fbbf419ed1818a24a7be179ca75a 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 6f0353e300bbabd3abf5b4471ed9b9c0f8059889 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 4b66e3db1491be89c258dcce88f76307f74b2863 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 8e00d51aacaef689386c8473147ae5a6313770ef 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 b06f41ec450c9f4a8b706cf7ffc16596e4f460c6 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 275f9eda5f2ad66fdc2ece72ee07e673e04b84ec 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 67e1db9199b18461f7aae7b632f13673c3c026a1 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 fd8c5175b583f387cd7886a8af94f91e54b009cd 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 566876c022e0ffe5aabb775fecc5f0606604ff2a 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 27e4cb66775a9cc8fcdbe261574ceb9b882e2119 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 869a80154a7fd1fb54ab64270189fb65a72d6daf 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 b8850b37f6435c7a0a5f6e845dff101869606252 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 9c8e1466784c3795e2658d084d6bf274695b5960 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 c24469c5b890f5182e2040c678ce8999dae82a1f 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 1cd90f1655bade73ff7ff1d120abc6b9f05a97ae 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 1c0fd8eff2e8124c5bd09d8527ef09870380e408 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 44299f92b8b89b9f807614626de9c0e29bf0306c 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 a9448bef32df7098a597c9ce7939dcd498e07f5d 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 f1fba5618b24e0e7a1b77bcdff9ddf50bf8431d2 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 74e1cd6532e91e4480ccb665d9f8a5bf5b0e4481 Mon Sep 17 00:00:00 2001 From: "Andrew J. Hesford" Date: Mon, 19 Sep 2022 21:10:00 -0400 Subject: [PATCH 1376/1420] blueman: rebuild for Python 3.11 --- srcpkgs/blueman/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/blueman/template b/srcpkgs/blueman/template index d2e6b46957ce..936ddfce8248 100644 --- a/srcpkgs/blueman/template +++ b/srcpkgs/blueman/template @@ -1,7 +1,7 @@ # Template file for 'blueman' pkgname=blueman version=2.3.4 -revision=1 +revision=2 build_style=gnu-configure configure_args="--disable-static" hostmakedepends="intltool iproute2 pkg-config python3-Cython glib-devel From f62eb15a4dc729a5a90fa0bb09e17e6f12e16b02 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 b5f8bd1d72da095eb45cb8bc0a7606318a25b295 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 b8e913147a9479daed4da874ae98ea7287fd31e7 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 34da807e4dca7a73f2f6981d2f737b0cec3e7812 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 b8695dba46567d8d6eb3c1ea650ed08814bd67f7 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 1e10dfef68e31cd471d47835a5e3d34b56598bd2 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 bb39a0b94dd8cbc7538458fc6cbeacf1a86ab906 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 57e25bf7402d274d0689fdd185014a179d52bac7 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 2781380506d8e44cb80c41b821f876a22092102b 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 eb25a2c9658c3e03fcf7f36ee2625b558845d049 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 4a2f77af4a59ff9fcf6a59afcd7b87a1dafbb052 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 ac2975cd4539a9e73460595e4938d179bd11df3a 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 1cb30a6cb19381b288f7cf2e790a8cd2b2f3d706 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 79cdecea34e1652baed0b5186ae3cb147a2c24b5 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 79efb98057168eca9e1be7a4303800d90fc60bf6 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 1efe60560822a5abd9d9854d0b366a1ed328d428 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 832e5e7b5fa29709e41962e8362fb32c27e8e95f 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 33c9aebaa576d1d28aa9c30eb2736564fc31d8f7 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 1d0cc7443218dd4c256716e6ad7ca2036878dbc2 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 7f39ef27b270d036b6c585efdc7be6f44472b4b5 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 b3c13d3ba1387a7ab9dd93f76b0b05f20344673d 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 35cf6d5aff4973cbbabf9f898466ba8274ea17cd 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 bc98e659893e6917fb827b2d01760f7f936c78ea 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 50a4f57d38eb62f954b36a811bb810ac76d4e1de 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 3159f2df4ef15aec28ad3d64b2c78797b96c7e5c 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 f2c97e8b0a7eb131e1a4b99cdf87eacaa347345d 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 3b64cf8c6b1190b4935721ecba9b2c4156872482 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 f1c31413828dfa807837b9f42d55c4ea5fac8154 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 fc714c3200094954f97fc22bc60ae1e568c428e6 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 3b998ae33512d9e8aca4cfb2747e91b6de3227b6 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 a83c90b23f4af9a76b46b1c1853d13655cf3f8d1 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 181c76a3dad40d69676b9c40723da2d2e5972305 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 7ea58621ab6a92911d34ea5f091d5ec1785767a3 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 841fa6123b8569de7acb290da8e08899b5c55964 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 dfc824ec6e6dba9c4c75fb6ab1871998c49be282 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 31419dafcd3e5d07a61979da0578f7776e916d8f 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 ec127a35c6a08e21a3a7fab118544423283c5a29 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 d5f164e98d10387d112793774d7d61dae1d46632 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 8a59110d1b52e3e9a63f0b7b8ebfe2a69ae6c52c 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 7ccb382925eade7e21d036c6413ceaad1ec867e0 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 77c5c5760cac749610aafb89532afd750e24e6b9 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 2d6d311c24e440e73e81f827ea853fbb4731a6a7 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 fccb33ce89c0add719b929bc53dd88ae7212420f 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 76f9a8e937fab49ed11daf66cfd0b90afaa02241 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